關於 object-c的@protocol的理解,object-c@protocol

來源:互聯網
上載者:User

關於 object-c的@protocol的理解,object-c@protocol

從java角度來理解 

@protocol 相當於 java 的介面定義,用法也一樣

 

下面是實驗例子

 

@protocol mytestClass <NSObject>- (void) callback:(int) num;@end@interface DiscoveryController : UIViewController<mytestClass>{    UIImageView *imageView;    }-(UIImage *) getImageFromURL:(NSString *)fileURL;@end

  在這裡定義了protocol並由類

DiscoveryController實現此介面

@interface MyCallBack : NSObject{    id<mytestClass> deleage;}@property(nonatomic,retain) id<mytestClass> deleage;- (void)setRun;@end

  

MyCallBack中儲存從其它類傳過來的
deleage當需要時進行回調。

////  MyCallBack.m//  ACMobile////  Created by mr.liang on 15/1/22.//  Copyright (c) 2015年 mr.liang. All rights reserved.//#import "MyCallBack.h"@implementation MyCallBack@synthesize deleage;- (void) runThread{    NSLog(@"我在運行");    [NSThread sleepForTimeInterval:2];    [deleage callback:1];}- (void)setRun{    NSThread *callbackthread = [[NSThread alloc] initWithTarget:self selector:@selector(runThread) object:nil];    [callbackthread start];}@end

  這裡通過線程進行非同步回調會讓程式更加直觀。

    MyCallBack *vv = [[MyCallBack alloc] init];    vv.deleage = self;    [vv setRun];

  需要用到protocol的地方實現這個protocol並傳送指標;

 

互連網的一點事 www.yidin.net

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.