gpt4 book ai didi

ios - 为每个 UITableViewCell 创建一个按钮

转载 作者:行者123 更新时间:2023-11-29 03:02:44 24 4
gpt4 key购买 nike

我正在尝试创建好友请求功能。所有好友请求都会显示在表格中,玩家可以点击接受或拒绝。我想要做的是在这个 UITableView 旁边创建一个接受按钮,其中包含所有玩家的好友请求。

这是我的代码。

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *notificationCell = [tableView dequeuREusableCellWithIdentifier@"notificationCell" for IndexPath:indexPath];

NSArray *friendRequests = [self fetchAllFriendRequestsInArray];
NSManagedObject *friendRequestingRelationship = [friendRequests objectAtIndex:indexPath.row];
notificationCell.textLabel.text = [friendRequestingRelationship valueForKey:@"name"];

UIButton *acceptButton = [UiButton buttonWithType:UIButtonTypeSystem];

[acceptButton.frame = CGRectMake(notificationCell.frame.origin.x + 150, notificationcell.frame.origin.y -20, 80, 40);
[acceptButton setTitle:@"Accept" forState:UIControlStateNormal];
acceptButton.backgroundColor = [UIColor clearColor];
[acceptButton addTarget:self action:@selector(acceptButtonPressed) forControlEvents:UIControlEventTouchUpInside];

[notificationCell.contentView addSubview:acceptButton];

return notificationCell;
}

只有第一个 notificationCell 显示了好友请求者的姓名和接受按钮。其他 notificationCells 仅显示其他好友请求者的姓名而没有按钮。我可以知道我的代码有什么问题,以便我可以允许按钮显示在每个单元格上吗?

提前致谢!

最佳答案

按钮在那里,但是它们从 View 中被剪掉了。这行是罪魁祸首:

acceptButton.frame = CGRectMake(notificationCell.frame.origin.x + 150, notificationcell.frame.origin.y -20, 80, 40);

您不应将 notificationCell 的原点添加到按钮,因为 subview 位置是相对于其 super View 的位置的。

这应该会给您正确的外观,但您的代码还有其他潜在问题。

  • 获取所有好友请求的行可能太慢,无法针对 View 中的每个单元格执行。确保结果已缓存
  • TableView 单元格被回收。当其中一个回收单元进入您的代码时,您的代码似乎在第一个按钮之上添加了第二个按钮
  • 同样,如果为不需要按钮的单元格返回带按钮的回收单元格,则旧按钮将保持可见。

您最好使用已经带有按钮的原型(prototype)单元格。您可以根据上下文使现有按钮可见或不可见,而不是添加和删除该按钮。

关于ios - 为每个 UITableViewCell 创建一个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23136746/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com