静态tableview数据不会出现在设备和模拟器上

时间:2016-11-16 04:21:09

标签: ios xcode uitableview tableview tableviewcell

任何人都可以遇到这个,

enter image description here

设置静态tableview和标签但是一旦我运行它,就不会出现所有空白中的单词。

这是基本的,但我无法弄清楚原因。

提前谢谢你:)

1 个答案:

答案 0 :(得分:1)

您必须实施tableview delegate and datasource

[self.tableView setDatasSource:self];
[self.tableView setDelegate:self];

您可以在viewDidLoad中对其进行编码,然后实施以下数据源。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;

您也不需要再次使用类似的单元格,您只需使用标识符重复使用一个单元格即可。

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"reuseIdentifier"];