我试图让UITableViewController
看起来像下面。(它有图片和几行供某人识别。)
我想知道如何以编程方式跟随。
如何调整UITableViewCell
origin.x 和宽度?如何在左上角添加图片?
请帮助我..我会感谢你的。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell;
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:SimpleTableIdentifier];
cell.frame = CGRectMake(50, 0, 250, 44) <--- ?????? I think this is wrong way.
return cell;
}