2
テーブルセルにテキストフィールドを追加しようとしています。誰もがこの例では、このコードテーブルセルにテキストフィールドを追加する
aCell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"UserIDCell"] autorelease];
aCell.textLabel.text = @"User Name";
aCell.selectionStyle = UITableViewCellSelectionStyleNone;
UITextField *user_ID_TextField1 = [[UITextField alloc] initWithFrame:CGRectZero];
aCell.accessoryView = user_ID_TextField1;
[user_ID_TextField1 release];
おかげ
ありがとうございました。 – pa12