gpt4 book ai didi

objective-c - 如何在表格 View 的单元格中创建按钮?

转载 作者:行者123 更新时间:2023-12-04 06:26:46 25 4
gpt4 key购买 nike

我有一个表 View ,表 View 的数据已添加到数组中。该数组有 5 个数据。我想在第五行之后创建一个单元格并在该单元格中创建一个按钮。
(比如在应用商店应用列表中加载更多选项)

提前致谢。

最佳答案

尝试这个

if(indexpath.row == 5) {
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake( 0 , 0, 50, 20 );
[button addTarget:self action:@selector(deletePostMethod) forControlEvents:UIControlEventTouchUpInside];

// add some other button properties here
[cell.contentView addSubView:button];
[button release];
}

你也应该在 numberOfRowsInSection 中返回 6
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
return 6;
}

关于objective-c - 如何在表格 View 的单元格中创建按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5949221/

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