gpt4 book ai didi

iphone - 如何自定义uitableview

转载 作者:行者123 更新时间:2023-12-03 19:15:22 26 4
gpt4 key购买 nike

如何自定义 UITableView 中的每个单元格(就像每个单元格都有 UITextfieldUIButton)?

最佳答案

UITableView 单元格响应选择 - 它在 tableView:didSelectRowAtIndexPath 中处理,也许这满足您的 UIButton 要求。如果您需要 UIButton,那应该不难 - 它只是另一个 UIView 组件。

Easy custom UITableView drawing是一篇关于自定义 UITableView 的详细文章。它超出了您想要的,但您可能会发现有用的细节。查看 contentView 中的布局部分,了解如何向单元格添加 View - 该示例添加图像和文本(正在进行大量自定义背景内容)。

讨论的示例代码 here :

UIView* container = [[UIView alloc] initWithFrame:goodRect];
UITableView* tv = [[UITableView alloc] initWithFrame:tableRect];
UIButton* btn = [[UIButton alloc] initWithFrame:btnFrame];

[container addSubview:tv];
[container addSubview:btn];

myController.view = container;

也许看看问题UIButton in a UITableView header ignores most touches .

关于iphone - 如何自定义uitableview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/890645/

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