我想把标签放在左边和左边。在我的自定义单元格中的uitextfield。
Textfield现在显示在左侧。这是我的代码。
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]模式?
答案 0 :(得分:2)
cell.accessoryView = textField;
答案 1 :(得分:0)
首先,initWithFrame是不推荐使用的方法。你应该使用initWithStyle。看看可用的样式。也许你会找到你需要的东西。