フォームを作成するために UITableViewCell 内に UITextField があります。UITextField が UITableViewCell で自動的にサイズ変更されるようにしたいと思います (iPhone と iPad では、縦向きと横向き)。しかし、その幅はわずか 9 です。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [[UITableViewCell alloc] init];
UITextField *field = [[UITextField alloc] init];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.accessoryView = field;
[field sizeToFit];
return cell;
}