我正在制作一个应用程序,其中我在 childView 上添加了四个类
[self addChildViewController:homeScreenViewController];
[self addChildViewController:portFolioViewController];
[self addChildViewController:watchListViewController];
[self addChildViewController:marketingViewController];
比我将 pageControl 上的 childView 称为分页。现在在 homeScreenViewController 类上,我添加了一个按钮,但该按钮不执行任何操作。
我在 HomeScreenViewController 类中声明了这样的按钮。这是代码
btn_Trade = [UIButton buttonWithType:UIButtonTypeCustom];
btn_Trade.frame = CGRectMake(0.0, 150.0, 142.0, 40.0);
[btn_Trade setTitle:@"TRADE" forState:UIControlStateNormal];
[btn_Trade setBackgroundColor:[UIColor redColor]];
btn_Trade.titleLabel.font = [UIFont fontWithName:@"SegoeUI-Light" size:20.0];
[btn_Trade setContentHorizontalAlignment:UIControlContentHorizontalAlignmentCenter];
[btn_Trade setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[btn_Trade addTarget:self action:@selector(pushToTradeListViewController) forControlEvents:UIControlEventTouchUpInside];
[btn_Trade setEnabled:YES];
[self.view addSubview:btn_Trade];
请给我建议。