I want to fill the UITextField
after viewDidLoad
, but after viewDidLoad
I assign the UITextField
does not appear in any appreciable way.
I do this in viewDidLoad
UITextField
process;
_TextField.delegate = self;
Idle (after viewDidLoad)
_TextField.text = [listArray objectAtIndex:0]; // listarray is full
[_TextField setText:@"aaa"]; // The second way : not working
Need some guidance on what could be going wrong here.
Thanks.
_TextField.delegate = self;
.@property(strong, nonatomic) IBOutlet UITextField * TextField;