我有一个自定义视图(CustomView1)类。它有一些出口。
我有另一个viewController在其xib文件中使用此视图:
我添加了一个空视图并将其类设置为“ CustomView1”
@interface CustomView : UIView
{
IBOutlet ExtendedTextField *t1;
IBOutlet ExtendedTextField *t2;
IBOutlet ExtendedTextField *t3;
}
在viewController xib文件中,我添加了带有CustomView类的空视图
@interface ViewController1 : UIViewController {
IBOutlet CardNumberViewController *customView;
}
@implementation ViewController1
- (void)viewDidLoad
{
// Here I can access customView. Is it possible to access t1, t2 and t3?
}
是否可以在ViewController1中访问t1,t2和t3?