1. 程式人生 > >iOS開發之OC與swift開發混編教程,代理的相互呼叫,block的實現。OC呼叫Swift中的代理, OC呼叫Swift中的Block 閉包

iOS開發之OC與swift開發混編教程,代理的相互呼叫,block的實現。OC呼叫Swift中的代理, OC呼叫Swift中的Block 閉包

 

本文章將從兩個方向分別介紹 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 類 。

        

     1.2.2 建立橋接檔案。 (很重要)

 

    一定要記得點選這個按鈕。 

       1.2.3  接下來工程目錄如下:

       

     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 遵循協議

  

     1.2.3.2 成為代理,並實現協議方法,更改controller.swift中hintLabel的text。

[objc]  view plain  copy  
  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.   
  8. // SecondViewControll的代理方法  
  9. func refreshHintLabel(_ hintString: String!) {  
  10.     hintLabel.text = "secondView textView.text = " + hintString;  
  11. }  

 

 

 

 1.3   如何在swift中實現oc的Block回撥

1.3.1 具體過程與1.2小節一樣。 直接上程式碼。

 

        1.3.2 宣告block;

         

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

 

 

        1.3.3 block的回撥。 SecondViewController.m中

 

[objc]  view plain  copy  
  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.

 

[objc]  view plain  copy  
  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地址: 

  

 

     2.1  如何在OC類中使用swift類

         2.1.1   新建一個基於OC語言的工程 ,取名 OcOrSwiftTwo        2.1. 2  實現的功能為 : 從oc類 viewcontroller中, push 至 swift語言 SecondViewController  ,然後SecondViewController可以通過代理或者swift閉包把值傳回viewcontroller.         2.1.3   當前檔案目錄看下圖:  (第四個箭頭: 橋接檔案)         

       2.2   如何在OC中實現swift的代理與閉包Block方法                  2.2.1 如何在oc中引入swift類。#import "工程名-swift.h" [objc]  view plain  copy  
  1. #import "OcOrSwiftTwo-swift.h"  
   2.2.2 在secondViewController.swift 中實現代理與閉包,程式碼如下:     注意: @objc(代理名)  才能在外部可見這個代理   [objc]  view plain  copy  
  1. import UIKit  
  2. import Foundation  
  3.   
  4. // 必須加上@objc 代理才能在oc類中可見。  
  5. @objc(EditTextFieldDelegate)  
  6. protocol EditTextFieldDelegate:NSObjectProtocol {  
  7.     func editTextField(_ str: String) -> Void  
  8. }  
  9.   
  10. @objc(SecondViewController)  
  11. class SecondViewController: UIViewController {  
  12.   
  13.     var editorDelegate:EditTextFieldDelegate?  
  14.     var textField:UITextField?  
  15.     var addButton:UIButton?  
  16.     var pushButton:UIButton?  
  17.       
  18.     typealias editorBlock = (_ t:String) -> Void  
  19.     var myEidtorBlock:editorBlock?  
  20.       
  21.     override func viewDidLoad() {  
  22.         super.viewDidLoad()  
  23.         self.view.backgroundColor = UIColor.white  
  24.         textField = UITextField.init(frame: CGRect.init(x: 50, y: 60, width: 200, height: 50))  
  25.         textField?.placeholder = "輸入返回首頁的內容"  
  26.         self.view.addSubview(textField!)  
  27.           
  28.         addButton = UIButton.init(type: .custom)  
  29.         addButton?.setTitleColor(UIColor.black, for: .normal)  
  30.         addButton?.setTitle("pop", for: .normal)  
  31.         addButton?.frame = CGRect.init(x: 50, y: 150, width: 200, height: 50)  
  32.         addButton?.layer.borderColor = UIColor.black.cgColor  
  33.         addButton?.layer.borderWidth = 1.0  
  34.         addButton?.addTarget(self, action: #selector(popAction), for: .touchUpInside)  
  35.         self.view.addSubview(addButton!)  
  36.           
  37.           
  38.           
  39.         pushButton = UIButton.init(type: .custom)  
  40.         pushButton?.setTitleColor(UIColor.black, for: .normal)  
  41.         pushButton?.setTitle("push", for: .normal)  
  42.         pushButton?.frame = CGRect.init(x: 50, y: 250, width: 200, height: 50)  
  43.         pushButton?.layer.borderColor = UIColor.black.cgColor  
  44.         pushButton?.layer.borderWidth = 1.0  
  45.         pushButton?.addTarget(self, action: #selector(pushAction), for: .touchUpInside)  
  46.         self.view.addSubview(pushButton!)  
  47.           
  48.     }  
  49.       
  50.     func popAction() -> Void {  
  51.           
  52.         if editorDelegate != nil {  
  53.             editorDelegate?.editTextField((textField?.text)!)  
  54.         }  
  55.           
  56.         if ((self.myEidtorBlock) != nil){  
  57.             self.myEidtorBlock!((textField?.text!)!)  
  58.         }  
  59.           
  60.         self.navigationController?.popViewController(animated: true)  
  61.     }  
  62.       
  63.       
  64.     func pushAction() -> Void {  
  65.         let three = ThreeViewController.init()  
  66.         self.navigationController?.pushViewController(three, animated: true)  
  67.           
  68.     }       
    2.2.3   在oc類中viewcontroller.m 檔案中實現SecondviewController.swift的相關代理與閉包(block). 程式碼如下:     [objc]  view plain  copy  
  1. #import "ViewController.h"  
  2. #import "OcOrSwiftTwo-swift.h"  
  3.   
  4. @interface ViewController ()<EditTextFieldDelegate>  
  5. @property (nonatomic, strong) UITextField *showTextField;  
  6. @property (nonatomic, strong) UIButton *pushButton;  
  7.   
  8. @end  
  9.   
  10. @implementation ViewController  
  11.   
  12. - (void)viewDidLoad {  
  13.     [super viewDidLoad];  
  14.     _showTextField = [[UITextField alloc]initWithFrame:CGRectMake(50, 100 , 200, 50)];  
  15.     _showTextField.placeholder = @"swift傳回的文字內容";  
  16.     _showTextField.adjustsFontSizeToFitWidth = YES;  
  17.     _showTextField.enabled = NO;  
  18.     [self.view addSubview:_showTextField];  
  19.       
  20.     _pushButton = [UIButton buttonWithType:UIButtonTypeCustom];  
  21.     [_pushButton.layer setBorderColor:[UIColor blackColor].CGColor];  
  22.     [_pushButton.layer setBorderWidth:1.0];  
  23.     [_pushButton setFrame:CGRectMake(50, 200, 200, 50)];  
  24.     [_pushButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];  
  25.     [_pushButton setTitle:@"push" forState:UIControlStateNormal];  
  26.     [_pushButton addTarget:self action:@selector(pushAction) forControlEvents:UIControlEventTouchUpInside];  
  27.       
  28.     [self.view addSubview:_pushButton];  
  29. }  
  30.   
  31.   
  32.   
  33.   
  34. -(void)pushAction{  
  35.     SecondViewController *second = [[SecondViewController alloc]init];  
  36.     // second.editorDelegate = self;  
  37.       
  38.     /* 
  39.       swift中的閉包回滴 
  40.      */  
  41.     second.myEidtorBlock = ^(NSString *str) {  
  42.         _showTextField.text = [NSString stringWithFormat:@"second傳回資訊: %@",str];  
  43.     };  
  44.     [self.navigationController pushViewController:second animated:YES];  
  45. }  
  46.   
  47. #pragma mark swift中的代理  
  48. -(void)editTextField:(NSString *)str{  
  49.     _showTextField.text = [NSString stringWithFormat:@"second傳回資訊: %@",str];  
  50. }  
  51.   
  52. - (void)didReceiveMemoryWarning {  
  53.     [super didReceiveMemoryWarning];  
  54.     // Dispose of any resources that can be recreated.  
  55. }