我想在表格视图中连续显示下面和主要内容的信息,这可能吗?
有点像......看截图。
由于
答案 0 :(得分:1)
创建一个UITableViewCell的子类,它执行此操作并公开正确的插座。
像这样的东西
@interface MyCustomUITableViewCell < UITableViewCell
@property (nonatomic, readonly, weak) UILabel *title;
@property (nonatomic, readonly, weak) UILabel *subtitle;
@property (nonatomic, readonly, weak) UILabel *title;
- (id) initWithReuseIdentifier:(NSString*)identifier;
@end
您可以以编程方式创建UI,也可以将单元格构建为笔尖并连接插座。
注意:任何新的UI都应该添加到UITableViewCell的contentView属性中。
以下是一些类似的问题