我使用 Master Detail 模板 (iPhone) 在 Xcode 的 Storyboard builder 中制作了一个带有按钮和标签的简单原型单元格。现在我需要知道如何以编程方式在单元格中添加其他标签或其他 UI 元素。请指教...谢谢。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
TSTest *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell2" forIndexPath:indexPath];
NSDate *object = _objects[indexPath.row];
cell.textLabel1.text = [object description];
return cell;
}