私は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;
}