2

そのため、UIViewController (テーブル ビュー コントローラーではない) 内にある UITableView のセルに一連のテキスト フィールドがあります。テキスト フィールドを編集できますが、(BOOL)textFieldShouldBeginEditing:(UITextField *)textField のようなデリゲート メソッドが呼び出されません。

ビュー コントローラーにはデリゲート セットがあります。

@interface NRSignUpViewController : UIViewController<UITextFieldDelegate, UIPickerViewDelegate, UIPickerViewDataSource, UITableViewDelegate, UITableViewDataSource>

フィールドは次のように宣言されています。

@property (nonatomic, strong) UITextField *firstName;
@property (nonatomic, strong) UITextField *lastName;
@property (nonatomic, strong) UITextField *email;

デリゲートは viewDidLoad で設定されます。

_firstName.delegate = self;
_lastName.delegate = self;
_email.delegate = self;

cellForRowAtIndexPath は次のとおりです。

- (UITableViewCell *)tableView:(UITableView *)table cellForRowAtIndexPath:(NSIndexPath     *)indexPath {
    UITableViewCell *cell = [table dequeueReusableCellWithIdentifier:@"Cell"];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
                                      reuseIdentifier:@"Cell"];
        cell.accessoryType = UITableViewCellAccessoryNone;
    }

   UITextField *tf = [[UITextField alloc] initWithFrame:CGRectMake(10, 10, table.frame.size.width-20, 30)];
   tf.textColor = [UIColor blackColor];
   tf.returnKeyType = UIReturnKeyNext;
   switch (indexPath.row) {
       case 0:
           tf.placeholder = @"First name";
           tf.autocapitalizationType = UITextAutocapitalizationTypeWords;
           _firstName = tf;
           break;
       case 1:
           tf.placeholder = @"Last name";
           tf.autocapitalizationType = UITextAutocapitalizationTypeWords;
           _lastName = tf;
           break;
       case 2:
            tf.placeholder = @"Email address";
            tf.autocapitalizationType = UITextAutocapitalizationTypeNone;
           tf.keyboardType = UIKeyboardTypeEmailAddress;
           _email = tf;
           break;
       default:
           break;
    }

    [cell.contentView addSubview:tf];
    return cell;
}

何が欠けている可能性がありますか?

4

3 に答える 3