我在 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;
}