English 中文(简体)
1. 表格单位标签错误
原标题:iPhone table cell label misaligned

。 UITableViewCell s with the UITableViewCellStyleValue1作风,针对OS 3.1。 我倾向于比先前的问题答案更简单的解决办法,特别是因为我不使用习俗小组。 我也想知道问题是什么?

这里指的是模拟者:

在装置上:

Device http://www.shaggyfrog.com/junk/table-cell-label-misalignment-device.png

Edit:根据要求增加一些法典。 (一) 在“ForRowAtIndexPath”牢房外修建我的桌子。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return [cells objectAtIndex:[indexPath row]];
}

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];

    [self loadCells];
    [table reloadData];

    [self.navigationController setNavigationBarHidden:NO animated:YES];
}

- (void)loadCells
{
    cells = [[NSArray alloc] initWithObjects:[self aCell], [self bCell], nil];
}

- (UITableViewCell*)aCell
{
    UITableViewCell* cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"Foo"] autorelease];
    cell.textLabel.text = @"A";
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    return cell;
}

- (UITableViewCell*)bCell
{
    UITableViewCell* cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"Foo"] autorelease];
    cell.textLabel.text = @"B";
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    return cell;
}
最佳回答

我知道你的密码,你正在使用手机字典<>UITableViewCellStyleValue1,但装置屏幕图象真像是<编码>可调用的电文CellStyleSubtitle。

您应为<代码>cell.detailTextLabel.text设定价值,以确保你获得预期的细胞风格。

在该说明中,如果您有使用detailTextLabel 的财产,你或许应当使用UITableViewCellStyleDefault

问题回答

暂无回答




相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签