溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

target-action設(shè)計模式--主要為Button的方法重寫

發(fā)布時間:2020-07-03 18:51:43 來源:網(wǎng)絡(luò) 閱讀:809 作者:Im劉亞芳 欄目:開發(fā)技術(shù)

新建兩個類MainViewController/ButtonView

ButtonView.h

#import <UIKit/UIKit.h>
@interface ButtonView : UIView
//實現(xiàn)target-action設(shè)計模式
//點擊的時候讓誰去執(zhí)行方法
@property (nonatomic , assign) id target;
//要執(zhí)行的方法
@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類似 作用;點擊能夠響應(yīng)事件
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    //點擊時候就有反應(yīng)
    
    
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
    NSLog(@"摸完了,可口可樂,冒泡");
    
    //每當(dāng)view被點擊的時候,就讓target執(zhí)行action方法
    //target\action設(shè)計模式核心
    [_target performSelectorInBackground:self.action withObject:self];
}
//利用方法給view設(shè)置對象和對象要執(zhí)行的方法
- (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添加一個觸發(fā)方法
    [button addTarget:self action:@selector(buttonClicked:)];
    
    [self.view addSubview:button];
    [button release];
    
    //UIImageView  
    //是一個顯示圖片的view
    UIImageView *p_w_picpathView = [[UIImageView alloc] initWithFrame:CGRectMake(100, 100, 50, 50)];
    [self.view addSubview:p_w_picpathView];
    [p_w_picpathView release];
    //給p_w_picpathView設(shè)置一個顯示的圖片
    UIImage *p_w_picpath = [UIImage p_w_picpathNamed:@"1.png"];
    p_w_picpathView.p_w_picpath = p_w_picpath;
    //如果在p_w_picpathView 上添加按鈕等視圖,需要打開p_w_picpathView的用戶交互屬性
    [p_w_picpathView setUserInteractionEnabled:YES];
    
    UIImageView *p_w_picpathView1 = [[UIImageView alloc] initWithFrame:CGRectMake(160, 100, 50, 50)];
    [self.view addSubview:p_w_picpathView1];
    [p_w_picpathView1 release];
    UIImage *p_w_picpath2 = [UIImage p_w_picpathNamed:@"2.png"];
    p_w_picpathView1.p_w_picpath = p_w_picpath2;
    
}
- (void)buttonClicked:(ButtonView *)button
{
    NSLog(@"button觸發(fā)后的方法");
}
- (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



向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI