如何从嵌入它的另一个控制器访问自定义视图的出口?

时间:2019-06-10 12:12:05

标签: ios objective-c

我有一个自定义视图(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?

0 个答案:

没有答案