Swift & Objective-C 混编:
1. 在同一个工程中的混编
-
Swift访问Objective-C:需要添加桥接文件
TargetName-Bridging-Header.h
,并在桥头文件中导入需要暴露给Swift的ObjC类。 -
Objective-C访问Swift:系统自动生成
TargetName-Swift.h
文件,在ObjC类中导入该文件即可访问Swift类中暴露给ObjC的属性和方法。
提前预览:测试项目的文件目录:
(1) Swift访问Objective-C
①第一次在Swift工程中新建ObjC文件 或 在ObjC工程中新建Swift文件时,Xcode都会弹出提示来引导我们去创建一个桥接文件,点击Create Bridging Header
自动创建桥接文件:
- 桥接文件名为:
<项目名>-Bridging-Header.h
- 如果手动创建桥头文件需要自己设置桥头文件的编译路径(通过Xcode引导创建时会自动配置):Build Phases → Swift Compiler - General → Objective-C Bridging Header → 填写路径
- 这个桥接文件是ObjC语法格式的
- 将需要在Swift文件中访问的Objective-C类的头文件添加到桥接文件中
②在桥接文件中导入要访问Objective-C类的头文件:
③在Swift文件中直接访问Objective-C类:
Objective-C类文件:
/// ObjcViewController.h
@interface ObjcViewController : UIViewController
// 暴露给swift的方法
- (void)objc_configVCWithTitle:(NSString *)titleString color:(UIColor *)color;
@end
/// ObjcViewController.m
- (void)objc_configVCWithTitle:(NSString *)titleString color:(UIColor *)color {
self.title = titleString;
self.view.backgroundColor = color;
}
Swift类文件:
/// SwiftViewController.swift
import UIKit
class SwiftViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let btn = UIButton.init(type: .custom)
btn.frame = CGRect(x: 100, y: 100, width: 100, height: 50)
btn.setTitle("Invoke ObjC", for: .normal)
btn.addTarget(self, action: #selector(clickedButton), for: .touchUpInside)
view.addSubview(btn)
}
@objc private func clickedButton() {
// Invoke ObjC
// 如果找不到对应ObjC类,可以先编译一下
let objcVC: ObjcViewController = ObjcViewController()
objcVC.objc_configVC(withTitle: "Swift invoke ObjC", color: .red)
present(objcVC, animated: true) {
print("Swift invoke ObjC, success!")
}
}
}
(2) Objective-C访问Swift
当工程中存在ObjC文件和Swift文件混编时,Xcode会自动生成一个.h
头文件,名称为:TargetName-Swift.h
。该文件在目录结构中是看不到的。
头文件TargetName-Swift.h
的作用是:将Swift文件代码自动注册成ObjC形式的代码以供ObjC文件访问,而且会自动更新。你可以CMD+点击头文件
进入文件中查看本测试项目Swift代码的转化成的ObjC形式:
SWIFT_CLASS("_TtC10SwiftMixOC19SwiftViewController")
@interface SwiftViewController : UIViewController
- (void)viewDidLoad;
- (void)swift_configVCWithTitleString:(NSString * _Nonnull)titleString color:(UIColor * _Nonnull)color;
- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
@end
在ObjC文件中导入该头文件TargetName-Swift.h
就可以访问Swift文件的方法和属性了( 如果报错没发现该文件,就预先编译一下工程) :
Swift类文件:
- Swift类中,凡是允许ObjC访问的属性和方法前都要加
@objc
- 在同一工程中(模块),能被访问的属性和方法的访问级别必须是
internal
及以上,用private修饰过的属性和方法是无法在ObjC中访问的
/// SwiftViewController.swift
import UIKit
class SwiftViewController: UIViewController {
/// 暴露给ObjC的属性
@objc var objcProperty: String?
override func viewDidLoad() {
super.viewDidLoad()
let btn = UIButton.init(type: .custom)
btn.frame = CGRect(x: 100, y: 100, width: 100, height: 50)
btn.setTitle("Invoke ObjC", for: .normal)
btn.addTarget(self, action: #selector(clickedButton), for: .touchUpInside)
view.addSubview(btn)
}
/// 暴露给ObjC的方法
@objc func swift_configVC(titleString: String, color: UIColor) -> Void {
self.title = titleString
view.backgroundColor = color
}
@objc private func clickedButton() {
// Invoke ObjC
let objcVC: ObjcViewController = ObjcViewController()
objcVC.objc_configVC(withTitle: "Swift invoke ObjC", color: .red)
present(objcVC, animated: true) {
print("Swift invoke ObjC, success!")
}
}
}
Objective-C类文件:
/// ObjcViewController.m
#import "ObjcViewController.h"
#import "SwiftMixOC-Swift.h" // 如果报错没发现该文件,就预先编译一下工程
@implementation ObjcViewController
- (void)viewDidLoad {
[super viewDidLoad];
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
btn.frame = CGRectMake(100, 100, 100, 50);
[btn setTitle:@"Invoke Swift" forState:UIControlStateNormal];
[btn addTarget:self action:@selector(clickedButton) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btn];
}
- (void)clickedButton {
// Invoke Swift
// 如果找不到对应Swift类,可以先编译一下
SwiftViewController *swiftVC = [[SwiftViewController alloc] init];
[swiftVC swift_configVCWithTitleString:@"Objc invoke Swift" color:[UIColor purpleColor]];
[self presentViewController:swiftVC animated:YES completion:^{
NSLog(@"Objc invoke Swift");
}];
}
- (void)objc_configVCWithTitle:(NSString *)titleString color:(UIColor *)color {
self.title = titleString;
self.view.backgroundColor = color;
}
2. 在不同工程中混编
不同工程意味着是不同的模块,跨模块访问Swift文件需要将Swift文件的访问的级别设置成open
和public
:
- 要暴露的Swift类需要使用关键字
open
修饰 - 供ObjC调用的Swift属性和方法要用
@objc public
修饰
import UIKit
/// 暴露给模块外的类
open class ModuleViewController: UIViewController {
/// 暴露给模块外的属性
@objc public var swiftProperty: String?
/// 暴露给模块外的方法
@objc override public func viewDidLoad() {
super.viewDidLoad()
}
/// 暴露给模块外的方法
@objc public func swiftMethod() {
}
}