我最近更新到 Xcode 5,当我运行我的应用程序时 UITableView 似乎是空的:
这是代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Notes";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
id obj = [matchedObjects objectAtIndex:indexPath.row];
if ([obj isKindOfClass:[Notes class]]) {
Notes *note = obj;
cell.textLabel.text = note.topic;
cell.detailTextLabel.text = note.subject;
cell.imageView.image = nil;
}
else
{
Picture *picture = obj;
UIImage *image = [UIImage imageWithData:picture.image];
cell.textLabel.text = NSLocalizedString(@"Image", nil);
cell.imageView.image = image;
cell.detailTextLabel.text = picture.subject;
}
NSLog(@"Cell Text %@",cell.textLabel.text);
return cell;
}
我已经实现了:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 10;
}
上面的空白区域似乎是单元格。我认为这与 iOS 7 有关。这在 xcode 4.5 中有效。任何帮助表示赞赏...