跨语言调用

一、Objective-C

OC调用Swift:

创建桥接文件

使用@objcMembers修饰的swift类可以被OC使用

复制代码
@objcMembers class SwiftExample: NSObject {
    
    @objc func OC_Call_Swift() {
        print("oc call swift")
    }
    
    @objc static func OC_Call_Swift_static() {
        print("oc call swift static")
    }
    
    @objc class func OC_Call_Swift_class() {
        print("oc call swift class")
    }
    
}

OC部分

复制代码
#import "OCExample.h"
#import "Runner-Swift.h"

@implementation OCExample

- (void)OC_Call_Swift {
    SwiftExample *swiftExample = [[SwiftExample alloc] init];
    [swiftExample OC_Call_Swift];
    [SwiftExample OC_Call_Swift_static];
    [SwiftExample OC_Call_Swift_class];
}


@end
OC调用C和C++:

不需要桥接,可以直接调用

复制代码
#ifndef CExample_h
#define CExample_h

#include <stdio.h>

void OC_Call_C(void);

#endif /* CExample_h */

#include "CExample.h"

void OC_Call_C(void) {
    printf("oc call c");
}

#ifndef C_Example_hpp
#define C_Example_hpp

#include <stdio.h>

void OC_Call_C_(void);

#endif /* C_Example_hpp */

#include "C#Example.hpp"

void OC_Call_C_(void) {
    printf("oc call c#");
}

#import "OCExample.h"
#import "CExample.h"
#import "C#Example.hpp"

@implementation OCExample

- (void)OC_Call_C {
    OC_Call_C();
}

- (void)OC_Call_C_ {
    OC_Call_C_();
}

@end

二、Swift

Swift调用OC
复制代码
@interface OCExample : NSObject

+ (void)Swift_Call_OC_class;
- (void)Swift_Call_OC;

@end

#import "OCExample.h"

@implementation OCExample

+ (void)Swift_Call_OC_class {
    NSLog(@"swift call oc class");
}

- (void)Swift_Call_OC {
    NSLog(@"swift call oc");
}


@end

桥接文件中导入

复制代码
#import "OCExample.h"

在Swift代码中

复制代码
import Foundation

class SwiftExample {
    
    func Swift_Call_OC() {
        OCExample.swift_Call_OC_class();
        OCExample().swift_Call_OC();
    }
    
}
Swift调用C和C++

Swift不能直接调用C++代码,可以直接调用C代码,首先在桥接文件中导入

复制代码
#include "CExample.h"

#ifndef CExample_h
#define CExample_h

#include <stdio.h>

void Swift_Call_C(void);

#endif

#include "CExample.h"

void Swift_Call_C(void) {
    printf("swift call c");
}

class SwiftExample {
    
    func S_Swift_Call_C() {
        Swift_Call_C()
    }
    
}

如果使用C和C++去调用是将Swift函数使用闭包接收,然后在桥接文件中extern,然后就可以在C和C++中调用;

若要使用C和C++去调用需要在.mm文件中使用对应的方法包装,不能够直接调用。

注:本文不考虑有使用第三方库的方法,所以未包含与JS、Dart等互相调用的情况,后续会持续更新。

相关推荐
止观止6 小时前
C++20 Concepts:让模板错误信息不再“天书”
c++·c++20·编程技巧·模板编程·concepts
合作小小程序员小小店6 小时前
桌面开发,在线%信息管理%系统,基于vs2022,c#,winform,sql server数据。
开发语言·数据库·sql·microsoft·c#
FL16238631296 小时前
ONNX RuntimeC++ 静态库下载安装和使用教程
开发语言·c++
誰能久伴不乏6 小时前
Linux文件套接字AF_UNIX
linux·服务器·c语言·c++·unix
豆豆plus6 小时前
C++实现文件操作类
开发语言·c++
墨雪不会编程6 小时前
C++基础语法篇五 ——类和对象
java·前端·c++
曹牧7 小时前
C#中的StartsWith
java·服务器·c#
时光追逐者7 小时前
分享5款.NET开源免费的Redis客户端组件库
数据库·redis·开源·c#·.net·.net core
小邓   ༽7 小时前
C语言课件(非常详细)
java·c语言·开发语言·python·eclipse·c#·c语言课件