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/
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

     
  • 相关阅读:
    【sqlite】python备份数据库
    【elasticsearch】python下的使用
    Raft
    SQL注入攻击和防御
    The world beyond batch: Streaming 101
    MillWheel: Fault-Tolerant Stream Processing at Internet Scale
    Flink DataSet API Programming Guide
    The Dataflow Model 论文
    让Storm插上CEP的翅膀
    Siddhi CEP Window机制
  • 原文地址:https://www.cnblogs.com/GnagWang/p/2176340.html
Copyright © 2011-2022 走看看