UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath: Exception

后端 未结 9 2199
悲&欢浪女
悲&欢浪女 2021-01-03 19:15

i actually dont see my error:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  static NSString *Cel         


        
9条回答
  •  佛祖请我去吃肉
    2021-01-03 20:01

    Make sure your reuse identifier in your NIB / Storyboard file for your prototype cell matches whatever you called CellIdentifier

     static NSString *CellIdentifier = @"Cell";
    

提交回复
热议问题