到了这一点,我有自定义单元格,里面有 2 个标签和 1 个文本字段。标签和文本字段都从用户那里得到输入。我还有其他包含 uitableview 的视图。我的问题是如何在 uitableview 中填充单元格?请帮忙。
这是我在 tableviewcontroller 中的代码。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1; // i want to populate this using 'count' but i dont know how.
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
CustomCell *cell = (CustomCell *)[tableView dequeueReusableCellWithIdentifier:[CustomCell reuseIdentifier]];
if (cell == nil)
{
[[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
cell = _customCell;
_customCell = nil;
}
cell.titleLabel.text = [NSString stringWithFormat:@"%@",titleTextString];
cell.timerLabel.text = [NSString stringWithFormat:@"%@",timerString];
cell.statusLabel.text = [NSString stringWithFormat:@"%@",statusString];
return cell;
}
如果在用户完成输入后按下添加按钮,我如何填充我的表格视图?如果你不介意帮我写代码,请。我是初学者,我很难通过使用意见来理解。