iOS开发之OC与swift开发混编教程,代理的相互调用,block的实现。OC调用Swift中的代理, OC调用Swift中的Block 闭包

时间:2022-06-01 14:04:36

本文章将从两个方向分别介绍 OC 与 swift 混编

1. 第一个方向从 swift工程 中引入 oc类

  1. 1 如何在swift的类中使用oc类
    1.2  如何在swift中实现oc的代理方法
    1.3   如何在swift中实现oc的Block回调

2 二个方向从OC工程中引入swift类

2.1  如何在OC类中使用swift类
    2.2   如何在OC中实现swift的代理方法
    2.3   如何在OC中实现swift中类似Block回调

下面是具体的实现过程:

1.1  如何在swift的类中使用oc类?

1.  swift工程中引入OC类。 具体实现过程。

1.1 新建一个swift工程类。 取名 swiftOrOC

1.2  实现的功能为 :  从swift. viewController.swift 中 push到 OC语言 secondViewController 控制器

1.2.1  新建SecondViewController 类 。

iOS开发之OC与swift开发混编教程,代理的相互调用,block的实现。OC调用Swift中的代理, OC调用Swift中的Block 闭包

1.2.2 建立桥接文件。 (很重要)

iOS开发之OC与swift开发混编教程,代理的相互调用,block的实现。OC调用Swift中的代理, OC调用Swift中的Block 闭包

一定要记得点击这个按钮。

1.2.3  接下来工程目录如下:

iOS开发之OC与swift开发混编教程,代理的相互调用,block的实现。OC调用Swift中的代理, OC调用Swift中的Block 闭包

1.2.4 接下来就可以实现具体的跳转功能了。

ViewController.swift中具体实现

 

import UIKit

class ViewController: UIViewController {

    @IBOutlet weak var hintLabel: UILabel!  //稍后用来显示回调

    // push 到 oc controller
@IBAction func pushAction(_ sender: AnyObject) {
let secondVC = SecondViewController.init()
self.navigationController?.pushViewController(secondVC, animated: true)
} override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
} override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}

1.2 如何在swift中实现oc的代理方法

1.2.1 首先在 SecondViewController.h 中声明一个协议。具体代码

#import <UIKit/UIKit.h>

@protocol SecondDelegate <NSObject>

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

@end

@interface SecondViewController : UIViewController

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

1.2.3 接下来就非常简单了,让ViewController.swift只需要成为SecondViewController的代理,然后遵循她的协议,就可以了。 具体代码如下。

1.2.3.1 遵循协议

iOS开发之OC与swift开发混编教程,代理的相互调用,block的实现。OC调用Swift中的代理, OC调用Swift中的Block 闭包

1.2.3.2 成为代理,并实现协议方法,更改controller.swift中hintLabel的text。

  1. // push 到 oc controller
  2. @IBAction func pushAction(_ sender: AnyObject) {
  3. let secondVC = SecondViewController.init()
  4. secondVC.secondDelegate = self;
  5. self.navigationController?.pushViewController(secondVC, animated: true)
  6. }
  7. // SecondViewControll的代理方法
  8. func refreshHintLabel(_ hintString: String!) {
  9. hintLabel.text = "secondView textView.text = " + hintString;
  10. }

1.3   如何在swift中实现oc的Block回调

1.3.1 具体过程与1.2小节一样。 直接上代码。

1.3.2 声明block;

  1. typedef void(^RefreshHintLabelBlock)(NSString *hintString);
  2. @interface SecondViewController : UIViewController
  3. @property (nonatomic, copy) RefreshHintLabelBlock hintBlock;
  4. @end

1.3.3 block的回调。 SecondViewController.m中

  1. #pragma mark 返回上一页回调 ,将用户输入的用户名传回给 ViewController.swift
  2. -(BOOL)navigationShouldPopOnBackButton{
  3. if (_hintBlock) {
  4. _hintBlock(textField.text);
  5. }
  6. return YES;
  7. }

1.3.4 在swift类中调用 oc的block.

  1. // push 到 oc controller
  2. @IBAction func pushAction(_ sender: AnyObject) {
  3. let secondVC = SecondViewController.init()
  4. secondVC.secondDelegate = self;
  5. secondVC.hintBlock = {(t:String?)in
  6. self.hintLabel.text = "secondView textView.text = " + t!
  7. }
  8. self.navigationController?.pushViewController(secondVC, animated: true)
  9. }

工程已上传到git上,git地址: https://github.com/zhonggaorong/SwiftOrOc/tree/master

2.  OC工程中引入swift类。 具体实现过程。

耽误了不少时间, 今天才开始写oc工程中引入swift类。

demo地址:

https://github.com/jukai9316/OCtoSwift

2.1  如何在OC类中使用swift类

       2.1.1   新建一个基于OC语言的工程 ,取名 OcOrSwiftTwo
       2.1. 2  实现的功能为 : 从oc类 viewcontroller中, push 至 swift语言 SecondViewController  ,然后SecondViewController可以通过代理或者swift闭包把值传回viewcontroller. 
       2.1.3   当前文件目录看下图:  (第四个箭头: 桥接文件)

iOS开发之OC与swift开发混编教程,代理的相互调用,block的实现。OC调用Swift中的代理, OC调用Swift中的Block 闭包

    2.2   如何在OC中实现swift的代理与闭包Block方法
    2.2.1 如何在oc中引入swift类。#import "工程名-swift.h"
  1. #import "OcOrSwiftTwo-swift.h"

2.2.2 在secondViewController.swift 中实现代理与闭包,代码如下:

    注意: @objc(代理名)  才能在外部可见这个代理
  1. import UIKit
  2. import Foundation
  3. // 必须加上@objc 代理才能在oc类中可见。
  4. @objc(EditTextFieldDelegate)
  5. protocol EditTextFieldDelegate:NSObjectProtocol {
  6. func editTextField(_ str: String) -> Void
  7. }
  8. @objc(SecondViewController)
  9. class SecondViewController: UIViewController {
  10. var editorDelegate:EditTextFieldDelegate?
  11. var textField:UITextField?
  12. var addButton:UIButton?
  13. var pushButton:UIButton?
  14. typealias editorBlock = (_ t:String) -> Void
  15. var myEidtorBlock:editorBlock?
  16. override func viewDidLoad() {
  17. super.viewDidLoad()
  18. self.view.backgroundColor = UIColor.white
  19. textField = UITextField.init(frame: CGRect.init(x: 50, y: 60, width: 200, height: 50))
  20. textField?.placeholder = "输入返回首页的内容"
  21. self.view.addSubview(textField!)
  22. addButton = UIButton.init(type: .custom)
  23. addButton?.setTitleColor(UIColor.black, for: .normal)
  24. addButton?.setTitle("pop", for: .normal)
  25. addButton?.frame = CGRect.init(x: 50, y: 150, width: 200, height: 50)
  26. addButton?.layer.borderColor = UIColor.black.cgColor
  27. addButton?.layer.borderWidth = 1.0
  28. addButton?.addTarget(self, action: #selector(popAction), for: .touchUpInside)
  29. self.view.addSubview(addButton!)
  30. pushButton = UIButton.init(type: .custom)
  31. pushButton?.setTitleColor(UIColor.black, for: .normal)
  32. pushButton?.setTitle("push", for: .normal)
  33. pushButton?.frame = CGRect.init(x: 50, y: 250, width: 200, height: 50)
  34. pushButton?.layer.borderColor = UIColor.black.cgColor
  35. pushButton?.layer.borderWidth = 1.0
  36. pushButton?.addTarget(self, action: #selector(pushAction), for: .touchUpInside)
  37. self.view.addSubview(pushButton!)
  38. }
  39. func popAction() -> Void {
  40. if editorDelegate != nil {
  41. editorDelegate?.editTextField((textField?.text)!)
  42. }
  43. if ((self.myEidtorBlock) != nil){
  44. self.myEidtorBlock!((textField?.text!)!)
  45. }
  46. self.navigationController?.popViewController(animated: true)
  47. }
  48. func pushAction() -> Void {
  49. let three = ThreeViewController.init()
  50. self.navigationController?.pushViewController(three, animated: true)
  51. }
    2.2.3   在oc类中viewcontroller.m 文件中实现SecondviewController.swift的相关代理与闭包(block). 代码如下:
  1. #import "ViewController.h"
  2. #import "OcOrSwiftTwo-swift.h"
  3. @interface ViewController ()<EditTextFieldDelegate>
  4. @property (nonatomic, strong) UITextField *showTextField;
  5. @property (nonatomic, strong) UIButton *pushButton;
  6. @end
  7. @implementation ViewController
  8. - (void)viewDidLoad {
  9. [super viewDidLoad];
  10. _showTextField = [[UITextField alloc]initWithFrame:CGRectMake(50, 100 , 200, 50)];
  11. _showTextField.placeholder = @"swift传回的文本内容";
  12. _showTextField.adjustsFontSizeToFitWidth = YES;
  13. _showTextField.enabled = NO;
  14. [self.view addSubview:_showTextField];
  15. _pushButton = [UIButton buttonWithType:UIButtonTypeCustom];
  16. [_pushButton.layer setBorderColor:[UIColor blackColor].CGColor];
  17. [_pushButton.layer setBorderWidth:1.0];
  18. [_pushButton setFrame:CGRectMake(50, 200, 200, 50)];
  19. [_pushButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
  20. [_pushButton setTitle:@"push" forState:UIControlStateNormal];
  21. [_pushButton addTarget:self action:@selector(pushAction) forControlEvents:UIControlEventTouchUpInside];
  22. [self.view addSubview:_pushButton];
  23. }
  24. -(void)pushAction{
  25. SecondViewController *second = [[SecondViewController alloc]init];
  26. // second.editorDelegate = self;
  27. /*
  28. swift中的闭包回滴
  29. */
  30. second.myEidtorBlock = ^(NSString *str) {
  31. _showTextField.text = [NSString stringWithFormat:@"second传回信息: %@",str];
  32. };
  33. [self.navigationController pushViewController:second animated:YES];
  34. }
  35. #pragma mark swift中的代理
  36. -(void)editTextField:(NSString *)str{
  37. _showTextField.text = [NSString stringWithFormat:@"second传回信息: %@",str];
  38. }
  39. - (void)didReceiveMemoryWarning {
  40. [super didReceiveMemoryWarning];
  41. // Dispose of any resources that can be recreated.
  42. }