1

我有一个单独的 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)?

将其全部包含在页脚子视图中并传入所需的目标是否会更容易,如果是这样,那将如何完成。

4

1 回答 1

1

这是您应该做什么的粗略概述。这就是你的 UIView 的头文件的样子

@protocol myViewControllerDelegate <NSObject>
@optional
- (void)didPushButton:(id)sender;
@end

@interface UIViewController : UITableViewController
{
    __unsafe_unretained id <myViewControllerDelegate> delegate;
}

@property (nonatomic, assign) id <myViewControllerDelegate> delegate;

@end

请记住@synthesize delegate;在您的主文件中。

最后在您的主文件中,您将拥有一个接收 UIButton 操作的 IBAction。假设该动作名为 buttonPushed。

将该操作设置为:

- (IBAction)buttonPushed:(id)sender
{
    if (delegate)
        [delegate didPushButton:sender];
}

最后请记住,您需要将委托设置给您正在使用此视图控制器的每个视图控制器。

UIView *newFooter = [[theFooter alloc] init];
[self.view addSubview:newFooter];
newFooter.delegate = self;
于 2012-10-18T09:45:40.163 回答