我将如何放置单元格标签。这是我的 cell.detailTextLabel.text
cell.detailTextLabel.text = [[[placesOutputArray objectAtIndex:indexPath.row] childAtIndex:1] stringValue];
我在想一些事情:
detailsLb = [[[UILabel alloc] initWithFrame:CGRectMake(40, 45, 250, 20)] autorelease];
我坚持以某种方式将两者合并在一起,以便将 cell.detailTextLabel.text 放置在我想要的位置。
谢谢你的帮助