答案 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"];