码迷,mamicode.com
首页 > 其他好文 > 详细

UI_Target/action 设计模式

时间:2015-07-04 11:13:20      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:ui   设计模式   button   target   

RootView.m 中

    UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
    button.frame = CGRectMake(100, 100, 100, 40);
    [button setTitle:@"Target" forState:UIControlStateNormal];
    [self addSubview:button];

    // addTarget:self.controller 原来是 self
    // 方法 RootViewButtonDidClicked 在 ViewController.m 里面实现
    [button addTarget:self.controller action:@selector(RootViewButtonDidClicked:) forControlEvents:UIControlEventTouchUpInside];

RootView.h 中

设置属性

@property (nonatomic, assign)UIViewController *controller;

ViewController.m

// 点击事件
- (void)RootViewButtonDidClicked:(UIButton *)sender
{
    NSLog(@"hello");
}

- (void)viewDidLoad {
    [super viewDidLoad];

    // 设置控制器
    self.rootView.controller = self;

}

版权声明:本文为博主原创文章,未经博主允许不得转载。

UI_Target/action 设计模式

标签:ui   设计模式   button   target   

原文地址:http://blog.csdn.net/yadong_zhao/article/details/46753779

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!