Я хочу разместить метку слева и поле справа в моей пользовательской ячейке.
Текстовое поле отображается слева прямо сейчас. Вот мой код.
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"Name"] autorelease];
textField = [[UITextField alloc] initWithFrame:cell.frame];
textField.placeholder = @"Name";
textField.bounds = cell.bounds;
textField.borderStyle=
[cell.contentView addSubview:textField];
как получить шаблон [label: textfield]?