Objective-C與swift混編

來源:互聯網
上載者:User

標籤:

1.首先建立OBJ-C/ Swift工程

2.建立swift/OBJ-C檔案,這是Xcode會提示建立Swift和ObJ-C之間的橋接檔案,點確認。


3.在生產的XXX-Bridging-Header.h中匯入需要在swift中使用的檔案。

4.在Swift檔案中就可以使用Swift的文法進行調用

樣本:

Objective-C (abc.h)

+(NSString *)strBySwift;

Swift中調用

abc.strBySwift()

***注意***

Xcode會自動將OC的方法轉換成Swift中的使用方式,方法名一致。


OBJ-C中調用Swift的方法

1.需要將target-》build Setting->package中Defines Module 設定為YES,Product Module Name 設為xxx,預設為工程名,可不修改

2.在需要調用的OBJ-C的檔案中匯入標頭檔"XXX-Swift.h",XXX為之前設定 module Name。

3.在OBJ-C的代碼中使用OC文法調用Swift裡面的方法

樣本:

Swift

class SwiftTest: NSObject {    func swiftStr()->NSString    {        return "swift string"    }}

Objective-C 中調用

SwiftTest *swiftTest = [[SwiftTest alloc] init];[swiftTest swiftStr];


Objective-C與swift混編

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.