我已经将UIControl子类化以创建我的自定义控件,但我使用Interface Builder进行了设计。现在我想“导出”它并将它用于另一个应用程序,我不知道我应该做什么才能重用它。它使用initWithCoder加载。
我在互联网上搜索了很多,但我找不到正确的答案。
谢谢。
答案 0 :(得分:0)
也许您需要在ViewController方法的viewDidLoad中使用以下代码:
CustomControl *control = [[[NSBundle mainBundle] loadNibNamed:@"CustomControl" owner:nil options:nil] objectAtIndex:0];
control.frame = CGRectMake(5.0f, 0.0f, 310.0f, 180.0f);
[self.view addSubview:control];