OC、swift混编中的反向传值

一 OC向swift传值

1) 代理 

1.1在oc中创建 代理  

#import <UIKit/UIKit.h>  

@protocol SecondDelegate <NSObject>  

-(void)refreshHintLabel:(NSString *)hintString;  

@end  

@interface SecondViewController : UIViewController  

@property (nonatomic,weak)id<SecondDelegate> secondDelegate;  

@end  

1.2在oc的是实现中使用代理

if ([_secondDelegate respondsToSelector:@selector(refreshHintLabel:)]) {  

[_secondDelegate refreshHintLabel: @""];  

    }  

1.3 swift成为oc的 代理 并实现代理方法

class UserInfoView:FViewController,SecondDelegate{

func refreshHintLabel(_ hintString: String!) {  

print( "text = " + hintString) 

}  

}

2)Block回掉

2.1 在OC张中声明回调

typedef void(^RefreshHintLabelBlock)(NSString *hintString);  

@interface SecondViewController : UIViewController  

@property (nonatomic, copy) RefreshHintLabelBlock hintBlock;  

@end  

2.2 oc中使用回调

if (_hintBlock) {  

_hintBlock(textField.text);  

    }  

2.3 swift。调用回调

secondVC.hintBlock = {(t:String?)in  

self.hintLabel.text = "secondView textView.text = " + t!  

    }  

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

友情链接更多精彩内容