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

UI 04 代理设计模式

时间:2015-08-04 22:53:20      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

delegate 也是用来解耦的, 他不再是简简单单让目标去执行一个动作了,而是让delegate去处理一些事件.
这跟在OC中学习的协议是一样的, 分为6步.
还是创建一个继承于UIView 的 MyButton类.
MyButton.h代码如下:

#import <UIKit/UIKit.h>
// 1.声明一份协议
@protocol MyButtonDelegate <NSObject>
// 协议内容,即代理人需要做的事情:改颜色.
- (void)changeColor;
@end

@interface Mybutton : UIView
//2.设置代理人属性
@property (nonatomic,assign)id<MyButtonDelegate>delegate;
@end

MyButton.m代码如下:

#import "Mybutton.h"

@implementation Mybutton

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    //3.设置代理人执行的方法.
    [self.delegate changeColor];
}

@end

根视图.m文件中代码:

#import "MainViewController.h"
#import "Mybutton.h"
// 4. 引头文件,签协议
@interface MainViewController ()<MyButtonDelegate>


@end

@implementation MainViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.

    Mybutton *mybutton = [[Mybutton alloc] initWithFrame:CGRectMake(270, 450, 50, 50)];
    mybutton.backgroundColor = [UIColor orangeColor];
    [self.view addSubview:mybutton];
    [mybutton release];
    //5.设置代理人
    mybutton.delegate = self;
}

    // 6.实现协议中的方法.
- (void)changeColor{
    self.view.backgroundColor = [UIColor colorWithRed:arc4random() % 256 / 255.0 green:arc4random() % 256 / 255.0 blue:arc4random() % 256 / 255.0 alpha:0.8];
}

效果如下图显示:
技术分享
技术分享

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

UI 04 代理设计模式

标签:

原文地址:http://blog.csdn.net/gao_zi/article/details/47284013

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