我有一个单独的 UIView 类,它构造一个包含 UIButton 的简单页脚栏。
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:CGRectMake(0, 410, 320, 50)];
if (self) {
int buttonHeight = self.frame.size.height;
int buttonWidth = 70;
int nextBtnPosX =0;
int nextBtnPosY =0;
self.backgroundColor =[UIColor colorWithRed:254.0/255.0 green:193.0/255.0 blue:32.0/255.0 alpha:1.0];
[self sendSubviewToBack:self];
UIButton *nextBtn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[nextBtn setTitle:@"Next" forState:UIControlStateNormal];
nextBtn.frame = CGRectMake(nextBtnPosX, nextBtnPosY, buttonWidth, buttonHeight);
[nextBtn addTarget:self.superview action:@selector(GoToNextPage) forControlEvents:UIControlEventTouchUpInside];
[self addSubview:nextBtn];
}
return self;
}
我有几个 ViewController,然后将上面的页脚视图类作为子视图添加到每个视图中。
UIView *newFooter = [[theFooter alloc] init];
[self.view addSubview:newFooter];
现在,页脚视图中的实际 UIButton 需要为其添加到的每个 viewController 设置不同的标记。
所以我认为最好将 IBAction 添加到实际的视图控制器,然后通过页脚视图调用它。
但这是我遇到问题的地方。如何调用父控制器从 addTarget 的页脚子视图中初始化 IBAction(GoToNextPage)?
将其全部包含在页脚子视图中并传入所需的目标是否会更容易,如果是这样,那将如何完成。