首页 > 其他 > 详细

自定义target - action 方法

时间:2015-10-31 23:01:54      阅读:295      评论:0      收藏:0      [点我收藏+]

HomeViewController.m

#import "HomeViewController.h"

#import "TouchViewPro.h"

 

@interface HomeViewController (){

    TouchViewPro *touchViewPro;

}

 

@end

 

@implementation HomeViewController

 

- (void)viewDidLoad {

    [super viewDidLoad];

    touchViewPro = [[TouchViewPro alloc] initWithFrame:CGRectMake(65, 65, 100, 100)];

    touchViewPro.backgroundColor = [UIColor blackColor];

    [self.view addSubview:touchViewPro];

    [touchViewPro addTarget:self action:@selector(change)];

    [touchViewPro release];

}

 

- (void)change {

    touchViewPro.frame = CGRectMake(arc4random() % (325 - 50 + 1) + 50, arc4random() % (325 - 50 + 1) + 50, arc4random() % 51, arc4random() % 70);

}

 

 

- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

@end

 -----------------------------------------------<TouchViewPro.h>-----------------------------------

#import <UIKit/UIKit.h>

 

@interface TouchViewPro : UIView

- (void)addTarget:(id)target action:(SEL)action;

@end

 --------------------------------------------------<TouchViewPro.m>-------------------------------------------------

#import "TouchViewPro.h"

 

@interface TouchViewPro(){

    id _target;

    SEL _action;

}

 

@end

 

@implementation TouchViewPro

 

- (void)addTarget:(id)target action:(SEL)action {

    _action = action;

    _target = target;

}

-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {

    [_target performSelector:_action withObject:self];

    

//    self.frame = CGRectMake(arc4random() % (325 - 50 + 1) + 50, arc4random() % (325 - 50 + 1) + 50, arc4random() % 51, arc4random() % 70);

}

@end

 

自定义target - action 方法

原文:http://www.cnblogs.com/hsxblog/p/4926234.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!