中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

發布時間:2020-07-03 18:51:43 來源:網絡 閱讀:815 作者:Im劉亞芳 欄目:開發技術

新建兩個類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 *p_w_picpathView = [[UIImageView alloc] initWithFrame:CGRectMake(100, 100, 50, 50)];
    [self.view addSubview:p_w_picpathView];
    [p_w_picpathView release];
    //給p_w_picpathView設置一個顯示的圖片
    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觸發后的方法");
}
- (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問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

理塘县| 济宁市| 文昌市| 资讯| 娄底市| 凭祥市| 嘉黎县| 修武县| 平定县| 洪湖市| 英超| 锡林浩特市| 织金县| 梅河口市| 凤凰县| 洪雅县| 伊通| 克什克腾旗| 奉化市| 镇平县| 龙江县| 高邮市| 拜泉县| 阜城县| 河北区| 浦县| 明溪县| 阿尔山市| 吴桥县| 渝北区| 莱西市| 崇文区| 新宁县| 德惠市| 昭苏县| 若尔盖县| 大丰市| 牟定县| 栾城县| 雷州市| 华坪县|