首先,我是 iOS 开发的新手,所以这可能是一个简单的问题,
我有以下代码
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] ;
cell.textLabel.text = @"Hello!";
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
NSLog(@"Creating cell for %i:%i", indexPath.section, indexPath.row );
return cell;
}
现在表格显示,但所有行都是空白的。并且正在创建细胞。不确定这是否重要,但我没有使用 xib 或故事板,所以我不知道它是否是样式问题。
我真的对我在做什么一无所知。我尝试过一些教程,但每次我都在同一个地方找到一张空白表。
谢谢大家的帮助!我对想法和可能的教程等持开放态度。