我有一个 UIViewController,它在某些时候会增长一个 UITableView,当它发生时,我只需初始化 TableView 实例变量并将其添加到视图中,但我不确定如何处理单元格的出列以添加到视图中;我需要一个重用标识符,但我不知道如何设置它。
我在这个方法中做什么?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellIdentifier = @"wot";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath];
return cell;
}