UI04_Target-Action

AppDelegate.h

#import <UIKit/UIKit.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;


@end

AppDelegate.m

#import "AppDelegate.h"
#import "RootViewController.h"

@interface AppDelegate ()

@end

@implementation AppDelegate
- (void)dealloc
{
    [_window release];
    [super dealloc];
}

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    [_window release];

    RootViewController *rootVC = [[RootViewController alloc] init];
    self.window.rootViewController = rootVC;
    [rootVC release];

    return YES;
}

RootViewController.h

#import <UIKit/UIKit.h>

@interface RootViewController : UIViewController

@end

RootViewController.m

#import "RootViewController.h"
#import "MyButton.h"

@interface RootViewController ()

@end

@implementation RootViewController

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

    self.view.backgroundColor = [UIColor whiteColor];

    UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
    [self.view addSubview:button];
    button.frame = CGRectMake(100, 100, 150, 50);
    button.layer.borderWidth = 1;
    //  给按钮边框加上颜色
    button.layer.borderColor = [UIColor purpleColor].CGColor;
    [button addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];


    //  创建MyButton
    MyButton *myButton = [[MyButton alloc] initWithFrame:CGRectMake(100, 200, 150, 50)];
    [self.view addSubview:myButton];
    [myButton release];
    myButton.layer.borderWidth = 1;

    //  第六步: 调用addNewTarget: action:方法
    [myButton addNewTarget:self action:@selector(test)];

}
- (void)test {
    NSLog(@"测试");
}

- (void)click:(UIButton *)button {

}

MyButton.h

#import <UIKit/UIKit.h>

@interface MyButton : UIView

//  1. 写一个自定义的方法
- (void)addNewTarget:(id)target action:(SEL)action;

//  2. 用两条属性保存事件的委托者是谁, 委托的事是什么
@property(nonatomic, assign)id target;
@property(nonatomic, assign)SEL action;

@end

MyButton.m

#import "MyButton.h"

@implementation MyButton

- (void)addNewTarget:(id)target action:(SEL)action {
    //  3. 用属性来保存两个参数的内容
    self.target = target;
    self.action = action;
}
//  4. 触发的方法
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    //  5. 让myButton执行相应的方法
    [self.target performSelector:self.action withObject:self];
}

@end
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值