答案 0 :(得分:0)
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"SimpleTableCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
UILabel *lbl;
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:simpleTableIdentifier];
}
UILabel * lbl = [[UILabel alloc]initWithFrame:CGRectMake(0, 0,200 ,40 )];
[cell.contentView addSubview:lbl];
return cell;
}
答案 1 :(得分:0)
如果您想将文字添加到Apple的联系人应用程序中,则不能。您可以向其应用访问的数据添加联系人,但无法更改Apple的用户界面。
如果你想推出类似于Apple的自己的联系人应用程序,请使用UITableView和UITableViewCellStyleSubtitle。