English 中文(简体)
UITableView背景视图无法处理文本区域
原标题:UITableView backgroundview not working on text area

我正试图通过使用UIImageView设置backgroundView来自定义我的UITableView的外观,但正如您在图像中看到的那样,它无法正常工作。(仅适用于accessoryType和文本前一行的开头。)

有人能帮我吗?

我的代码:

// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    cell.accessoryType  = UITableViewCellAccessoryDisclosureIndicator;

}

    // Configure the cell.
    NSDictionary *lineaAutobus = [buscamionService objectAtIndex:indexPath.row];

    NSString *lineaAutobusNombre = [lineaAutobus objectForKey:@"nombre_lineaAutobus"];

    [cell setBackgroundView:[[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"tableViewCellBg.png"]] autorelease]];
    cell.textLabel.text = lineaAutobusNombre;


return cell;
}

https://www.dropbox.com/s/ubok76ipshei931/Screen%20shot%202011-05-20%20at%206.25.29%20PM.png

最佳回答

也许您需要将textLabel的backgroundColor设置为[UIColor clearColor]?

问题回答

暂无回答




相关问题
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风格的解决办法,只是一个简单的袖珍流程......

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

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

热门标签