0
我想在左側& uitextfield右側放置自定義單元格中的標籤。如何在uitableview自定義單元格中將文本框對齊到右邊
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];
如何實現[標籤:textfield]模式?