最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

IOS中的target action控件的實(shí)現(xiàn)

 更新時(shí)間:2017年08月10日 14:25:53   作者:lizhuang  
這篇文章主要介紹了IOS中的target action控件的實(shí)現(xiàn)的相關(guān)資料,這里提供實(shí)現(xiàn)target action的簡(jiǎn)單實(shí)例幫助大家學(xué)習(xí)理解該如何實(shí)現(xiàn),需要的朋友可以參考下

IOS中的target action控件的實(shí)現(xiàn)

實(shí)現(xiàn)代碼:

#import <Foundation/Foundation.h> 
 
 
@interface Sample : NSObject { 
 
  SEL action; 
  id target; 
   
} 
@property SEL action; 
@property (assign) id target; 
 
-(void)addTarget:(id) t action:(SEL) s; 
-(void)sample_dosomthing; 
 
@end 
#import "Sample.h" 
 
 
@implementation Sample 
 
@synthesize action; 
@synthesize target; 
 
 
-(void)dealloc{ 
  target = nil; 
  [super dealloc]; 
} 
 
-(void)addTarget:(id) t action:(SEL) s{ 
  self.action = s; 
  self.target = t; 
} 
 
 
-(void)sample_dosomthing{ 
   
  [self.target performSelector:self.action]; 
} 
 
@end 

這是一個(gè)例子,在一個(gè)UIViewController里面

-(void)control_dosomthing{ 
  NSLog(@"control_dosomthing"); 
} 
 
- (void)viewDidLoad { 
  [super viewDidLoad]; 
   
  Sample *sample1 = [Sample new]; 
  [sample1 addTarget:self action:@selector(control_dosomthing)]; 
} 

以上就是IOS中的target action控件的實(shí)現(xiàn),如有疑問請(qǐng)留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

相關(guān)文章

最新評(píng)論

苏尼特左旗| 商南县| 那曲县| 台北县| 金昌市| 施甸县| 汽车| 团风县| 江津市| 河津市| 青浦区| 南康市| 德阳市| 东平县| 新安县| 苍山县| 聊城市| 象州县| 云和县| 正定县| 奈曼旗| 凤庆县| 罗田县| 镶黄旗| 荔波县| 新郑市| 河西区| 郁南县| 台南县| 呼玛县| 富平县| 永吉县| 桐梓县| 平罗县| 永城市| 杭锦旗| 左权县| 栖霞市| 惠来县| 米易县| 秦安县|