是否可以在同一行中显示UITableViewCellStyleValue1和UITableViewCellStyleSubtitle

时间:2013-05-18 18:58:09

标签: ios uitableview

我想在表格视图中连续显示下面和主要内容的信息,这可能吗?

有点像......看截图。

https://www.evernote.com/shard/s157/sh/b5527a4b-c079-4ca6-9dc8-f9fdc8760816/0d83416b09e8e52ee341bc171a34ad5b

由于

1 个答案:

答案 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属性中。

以下是一些类似的问题