stackoverflow上关于Objective-C关注度比较高的问题系列
链接
Hybrid programming with Objective-C & Swift
原文链接《how to call objective-c code from swift》
本文Github链接,含代码
关键词
Objective-C
Swift
在Swfit工程中使用Objective-C的类
step 1:添加Objective-C的文件
添加一个.m
和.h
文件,并且命名为CustomObject
step 2:添加Bridging Header
当你在添加.m
文件的时候,Xcode会马上弹框展示你是否要配置bridging header,如下图:
点击YES
如果你没有看到这个弹框,或者误操作删除了工程的bridging header文件。
1)添加一个.h
文件然后命名为<#YourProjectName#>-Bridging-Header.h
;
2)根据如下图片展示的步骤将上一步创建的bridging header 文件 link到你的工程中;
Note
上图所示的绝对路径不太合理,让你的工程在别人的电脑运行时,这个路径就肯定不对了。可以用$(SRCROOT)
来替换你工程的绝对路径,类似这样:
$(SRCROOT)/UsingOCInSwift/UsingOCInSwift-Bridging-Header.h
step 3:在里的CustomObject类中添加代码
CustomObject.h
#import <Foundation/Foundation.h>
@interface CustomObject : NSObject
@property (strong, nonatomic) id someProperty;
- (void) someMethod;
@end
CustomObject.m
#import "CustomObject.h"
@implementation CustomObject
- (void) someMethod {
NSLog(@"SomeMethod Ran");
}
@end
step 4:将Objective-C类添加到Bridging-Header中
YourProject-Bridging-Header.h
#import "CustomObject.h"
setp 5:在Swift类中使用你的Objective-C类
ViewController.swift
class ViewController: UIViewController {
var instanceOfCustomObject: CustomObject = CustomObject()
override func viewDidLoad() {
super.viewDidLoad()
instanceOfCustomObject.someProperty = "Hello World"
print(instanceOfCustomObject.someProperty)
instanceOfCustomObject.someMethod()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
此处不需要import某个头文件,import头文件这件事已经由Bridging-Header代劳了
在Objective-C工程中使用Swfit的类
step 1:创建一个swift文件
MySwiftObject.swift
import UIKit
class MySwiftObject: NSObject {
public var someProperty: String = "Some Initializer Val"
public func someFunction(someArg:AnyObject) -> String {
let retrunVal = "You sent me : " + (someArg as! String)
return retrunVal
}
}
创建一个MySwiftObject.swift
文件,一旦你创建文件Xcode就会给你弹框提示如下:
点击YES
如果你没有看到这个弹框,或者误操作删除了工程的bridging header文件。
1)添加一个.h
文件然后命名为<#YourProjectName#>-Bridging-Header.h
;
2)根据如下图片展示的步骤将上一步创建的bridging header 文件 link到你的工程中;
Note
上图所示的绝对路径不太合理,让你的工程在别人的电脑运行时,这个路径就肯定不对了。可以用$(SRCROOT)
来替换你工程的绝对路径,类似这样:
$(SRCROOT)/UsingOCInSwift/UsingOCInSwift-Bridging-Header.h
这里的操作和向swift中添加Objective-C文件一样
step 2:向Objective—C文件中导入Swift头文件
ViewController.m
#import "<#YourProjectName#>-Swift.h"
<#YourProjectName#>-Swift.h
这个文件在你添加Swift文件时自动添加到了你的工程中,但是在工程的目录中你看不到它。可以通过import点进去看一下,正在文件的最后有你熟悉的OC代码,如下:
step 3:使用Swift类
ViewController.m
- (void)viewDidLoad {
[super viewDidLoad];
MySwiftObject *myOb = [[MySwiftObject alloc] init];
NSLog(@"MyOb.someProperty: %@", myOb.someProperty);
myOb.someProperty = @"Hello world";
NSLog(@"MyOb.someProperty: %@", myOb.someProperty);
NSString * retString = [myOb someFunctionWithSomeArg:@"Arg"];
NSLog(@"RetString: %@", retString);
}