zoukankan      html  css  js  c++  java
  • 封装Tatget Action

    @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

    =======

    @interface Other : NSObject {

    }

    -(void)other_dosomthing;
    @end

    -------------------------

    #import "Other.h"


    @implementation Other

    -(void)other_dosomthing{
        NSLog(@"other_dosomthing");
    }

    @end

    =============

    Sample *sample1 = [Sample new];
        [sample1 addTarget:self action:@selector(control_dosomthing)];
       
        [sample1 sample_dosomthing]; //SEE LOG
       
        [sample1 release];
       
        //////////////////////////////////////////////////////////////////
       
        Sample *sample2 = [Sample new];
        Other *other = [Other new];
        [sample2 addTarget:other action:@selector(other_dosomthing)];
       
        [sample2 sample_dosomthing]; //SEE LOG
       
        [other release];
        [sample2 release];

     


    作者:GangWang
    出处:http://www.cnblogs.com/GnagWang/
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

     
  • 相关阅读:
    对于开发WEB方面项目需要的工具和技术了解
    SQLServer创建链接服务器
    Tomcat部署Web应用方法总结
    JDK/bin目录下的不同exe文件的用途
    js高级技巧自定义事件
    HTML5 web SQL
    js高级技巧拖放
    图片替换文字
    CSS内容生成(重要内容:css计数器)
    CSS 使元素垂直居中
  • 原文地址:https://www.cnblogs.com/GnagWang/p/2176340.html
Copyright © 2011-2022 走看看