如何在ios中的名字和姓氏下面的地址簿中添加自定义标签

时间:2016-03-21 11:16:22

标签: ios objective-c

如何在ios enter image description here

中的名字和姓氏下面的地址簿中添加自定义标签

2 个答案:

答案 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。