我正在使用标准UITableViewController
,当我运行模拟器(Xcode 6,Objective-C)作为iPhone 4s,5,5s或iPad Air时,它工作得很好。但是,如果我将模拟器更改为iPhone 6,6 +,iPad Retina它不起作用,表格中没有数据显示......我对此感到非常困惑。在任何地方都没有错误。
有什么想法吗?
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [self.tableData count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"CaseCell" forIndexPath:indexPath];
// Configure the cell
cell.textLabel.text = [self.tableData objectAtIndex:indexPath.row];
return cell;
}