我的故事板中有一个 UITextField,我将其绑定到 ViewController.h
@property (weak, nonatomic) IBOutlet UITextField *username;
在 ViewController.m 我想改变这个 UITextField 用户名的大小和位置
[_username setFrame:CGRectMake(10.0, 10.0, 300.0, 200.0)];
我没有收到任何错误,但 UITextField 用户名没有任何反应。它仍然像在IB中一样。
怎么了?
谢谢