我使用HMSegmented Controller示例创建了一个标签栏应用程序,如分段控制器。它是从Github下载的,然后我将自己的xib视图插入到这个段中,所以我为此编写了一个代码。
ContactusViewController *contactus=[[ContactusViewController alloc]initWithNibName:@"ContactusViewController" bundle:nil];
[contactus.view setFrame:CGRectMake(320, 0, 320, 480)];
[self.scrollView insertSubview:contactus.view belowSubview:self.segmentedControl4];
现在我使用ContactusViewController xib上的按钮,当我点击它时,应用程序崩溃了。返回的错误是"无法识别的选择器发送到实例"。
请给我解决方案......
答案 0 :(得分:0)
首先使用按钮检查方法的映射。
在视图控制器中,将联系人添加为childViewController
。
[self addChildViewController:contactus];