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

target-action设计模式--主要为Button的方法重写

时间:2014-09-03 11:25:27      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:interface   property   action   frame   target   

新建两个类MainViewController/ButtonView

ButtonView.h

#import <UIKit/UIKit.h>
@interface ButtonView : UIView
//实现target-action设计模式
//点击的时候让谁去执行方法
@property (nonatomic , assign) id target;
//要执行的方法
@property (nonatomic , assign) SEL action;
//模拟一个UIButton的一个方法
- (void)addTarget:(id)target action:(SEL)action;
@end

ButtonView.m

#import "ButtonView.h"
@implementation ButtonView
- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
    }
    return self;
}
//建立一个view,让这个view的作用和UIButton类似 作用;点击能够响应事件
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    //点击时候就有反应
    
    
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
    NSLog(@"摸完了,可口可乐,冒泡");
    
    //每当view被点击的时候,就让target执行action方法
    //target\action设计模式核心
    [_target performSelectorInBackground:self.action withObject:self];
}
//利用方法给view设置对象和对象要执行的方法
- (void)addTarget:(id)target action:(SEL)action
{
    self.target = target;
    self.action = action;
}
/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect
{
    // Drawing code
}
*/
@end

MainViewController.h

#import <UIKit/UIKit.h>
@interface MainViewController : UIViewController
@end

MainViewController.m

#import "MainViewController.h"
#import "ButtonView.h"
@interface MainViewController ()
@end
@implementation MainViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}
- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    ButtonView *button = [[ButtonView alloc] initWithFrame:CGRectMake(120, 50, 80, 30)];
    button.backgroundColor = [UIColor purpleColor];
    button.alpha = 0.3;
    button.layer.cornerRadius = 10;
    //给view添加一个触发方法
    [button addTarget:self action:@selector(buttonClicked:)];
    
    [self.view addSubview:button];
    [button release];
    
    //UIImageView  
    //是一个显示图片的view
    UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(100, 100, 50, 50)];
    [self.view addSubview:imageView];
    [imageView release];
    //给imageView设置一个显示的图片
    UIImage *image = [UIImage imageNamed:@"1.png"];
    imageView.image = image;
    //如果在imageView 上添加按钮等视图,需要打开imageView的用户交互属性
    [imageView setUserInteractionEnabled:YES];
    
    UIImageView *imageView1 = [[UIImageView alloc] initWithFrame:CGRectMake(160, 100, 50, 50)];
    [self.view addSubview:imageView1];
    [imageView1 release];
    UIImage *image1 = [UIImage imageNamed:@"2.png"];
    imageView1.image = image1;
    
}
- (void)buttonClicked:(ButtonView *)button
{
    NSLog(@"button触发后的方法");
}
- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
/*
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/
@end


AppDelegate.h

#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end

AppDelegate.m

#import "AppDelegate.h"
#import "MainViewController.h"
@implementation AppDelegate
- (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];
    //初始化视图控制器
    MainViewController *mainVC = [[MainViewController alloc] init];
    self.window.rootViewController = mainVC;
    [mainVC release];
    
    
    [self.window makeKeyAndVisible];
    
    
    [_window release];
    return YES;
}
- (void)dealloc
{
    [_window release];
    [super dealloc];
}
- (void)applicationWillResignActive:(UIApplication *)application
{
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}
- (void)applicationDidEnterBackground:(UIApplication *)application
{
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}
- (void)applicationWillEnterForeground:(UIApplication *)application
{
    // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}
- (void)applicationDidBecomeActive:(UIApplication *)application
{
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
- (void)applicationWillTerminate:(UIApplication *)application
{
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
@end



本文出自 “小刘_Blog” 博客,请务必保留此出处http://liuyafang.blog.51cto.com/8837978/1548166

target-action设计模式--主要为Button的方法重写

标签:interface   property   action   frame   target   

原文地址:http://liuyafang.blog.51cto.com/8837978/1548166

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