0

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

像......见截图。

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

谢谢

4

1 回答 1

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

这里有几个类似的问题

于 2013-05-18T19:12:40.940 回答