gpt4 book ai didi

iphone - 如何更改 UITableViewCells 内的 UIButtons

转载 作者:行者123 更新时间:2023-12-03 21:23:22 24 4
gpt4 key购买 nike

好吧,我在 UITableView 的每一行都有一个 UIButton,我想在开始编辑时将其淡入 alpha 0。当恢复正常时则相反。我该怎么做?

我知道要使用什么方法,但如何从 tableViewcellForRowAtIndex 外部访问按钮:?

最佳答案

好吧,实际上,您可以调用 cellForRowAtIndexPath: 传入您获得的索引路径,并获取单元格,然后获取单元格内的按钮,瞧!

- (void)tableView:(UITableView *)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [ tableView cellForRowAtIndexPath: indexPath ];
UIButton *button = [ cell.contentView.subviews objectAtIndex: ... ];
...
}

关于iphone - 如何更改 UITableViewCells 内的 UIButtons,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2796505/

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