gpt4 book ai didi

ios - 如何在 UITableView 的附件 View 中添加多个按钮?

转载 作者:可可西里 更新时间:2023-11-01 04:35:03 25 4
gpt4 key购买 nike

我想在 UITableView 的附属 View 中添加两个相邻的自定义按钮。

我试着做 cell.accessoryView = customButton; 然后cell.accessoryView = customButton2 。很明显,这取代了之前的按钮。

感谢您的帮助!

最佳答案

您可以添加一个包含两个按钮的 UIView 作为自定义 accessoryView。

UIView *buttonsView = [...];
// add buttons to buttonsView
cell.accessoryView = buttonsView;

或者您可以子类化 UITableViewCell 并在其中添加两个按钮。

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];

if (self) {
UIButton *buttonA = ....
UIButton *buttonB = ....
[self.contentView addSubview:buttonA];
[self.contentView addSubview:buttonB];
}

return self;
}

如果您在这篇文章之前没有做过自定义 UITableViewCell,可能会对您有所帮助。

http://code.tutsplus.com/tutorials/ios-sdk-crafting-custom-uitableview-cells--mobile-15702

关于ios - 如何在 UITableView 的附件 View 中添加多个按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22065623/

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