我可以在同一个Xcode项目中使用Swift,Objective-C,C和C ++文件吗?

时间:2015-09-12 16:46:49

标签: c++ objective-c c swift bridging-header

根本可以在同一个项目中使用所有4种语言,如果是这样的话?

类似问题的风格:Can I mix Swift with C++? Like the Objective - C .mm files,接受的答案是

充分使用Bridging Header.h不包含C++语句,Objective-C包装.h确实包含C++,{{1}要对.mm类和C++进行实际包装的文件,4种语言(如果包含.swift则为5种语言)可以构建并链接到单个可执行文件中吗?

1 个答案:

答案 0 :(得分:112)

YES。

您可以混合Log.d(msg)SwiftCC++&同一个Xcode项目中的Objective-C个文件。

C

Objective-C++

C ++

// Declaration: C.h
#ifndef C_h
#define C_h
#ifdef __cplusplus
extern "C" {
#endif
    void hello_c(const char * name);
#ifdef __cplusplus
}
#endif
#endif /* C_h */

// Definition: C.c
#include "C.h"
#include <stdio.h>
void hello_c(const char * name) {
    printf("Hello %s in C\n", name);
}

C ++的Objective-C包装器

// Declaration: CPP.hpp
#pragma once
#include <string>
class CPP {
public:
    void hello_cpp(const std::string& name);
};

// Definition: CPP.cpp
#include "CPP.hpp"
#include <iostream>
using namespace std;
void CPP::hello_cpp(const std::string& name) {
    cout << "Hello " << name << " in C++" << endl;
}

的Objective-C

// Declaration: CPP-Wrapper.h
#import <Foundation/Foundation.h>
@interface CPP_Wrapper : NSObject
- (void)hello_cpp_wrapped:(NSString *)name;
@end

// Definition: CPP-Wrapper.mm
#import "CPP-Wrapper.h"
#include "CPP.hpp"
@implementation CPP_Wrapper
- (void)hello_cpp_wrapped:(NSString *)name {
    CPP cpp;
    cpp.hello_cpp([name cStringUsingEncoding:NSUTF8StringEncoding]);
}
@end

的Objective-C ++

// Declaration: Objective-C.h
#import <Foundation/Foundation.h>
@interface Objective_C : NSObject
- (void)hello_objectiveC:(NSString *)name;
@end

// Definition: Objective-C.m
#import "Objective-C.h"
@implementation Objective_C
- (void)hello_objectiveC:(NSString*)name {
    printf("Hello %s in Objective-C\n", [name cStringUsingEncoding:NSUTF8StringEncoding]);
}
@end

夫特

// Declaration: Objective-CPP.h
#import <Foundation/Foundation.h>
@interface Objective_CPP : NSObject
- (void)hello_objectiveCpp:(NSString *)name;
@end

// Definition: Objective-CPP.mm
#include <iostream>
#import "Objective-CPP.h"
using namespace std;
@implementation Objective_CPP
- (void)hello_objectiveCpp:(NSString *)name {
    cout << "Hello " << [name cStringUsingEncoding:NSUTF8StringEncoding] << " in Objective-C++\n";
}
@end

桥接-Header.h

无法导入// Declaration & definition: Swift.swift func hello_swift(_ name: String) { print("Hello \(name) in Swift") } 头文件,不是因为它的命名约定,而是因为它包含CPP.hpp关键字。

class

从Swift调用

#import "C.h"
#import "CPP-Wrapper.h"
#import "Objective-C.h"
#import "Objective-CPP.h"

.h(标题)

(参见this Stack Overflow answer中的第3项

  

.h:这是一个棘手的部分,因为它们含糊不清地用于所有C,++或不同的目标,无论目标与否。当.h不包含单个C ++关键字(如类)时,它可以添加到... Bridging-Header.h中,并将公开它声明的相应.c或.cpp功能的任何函数。否则,该标头必须包装在纯C或Objective-C API中。

输出

// Invoke C
hello_c("World".cStringUsingEncoding(NSUTF8StringEncoding))

// Can't Invoke C++ without a wrapper
// CPP().hello_cpp("World".cStringUsingEncoding(NSUTF8StringEncoding))
// Invoke C++ through Objective-C
CPP_Wrapper().hello_cpp_wrapped("World")

// Invoke Objective-C
Objective_C().hello_objectiveC("World")

// Invoke Objective-C++
Objective_CPP().hello_objectiveCpp("World")

// Invoke Swift
Swift().hello_swift("World")

<强>评论

Cy-4AH

是。您只需将Hello World in C Hello World in C++ Hello World in Objective-C Hello World in Objective-C++ Hello World in Swift 打包到C++C即可在Objective-C中使用。

Tommy

确实,我有一个项目正是如此。 Swift了解抽象的跨平台模型的主旨,下面有一些C++部分; CObjective-C类包含在C++目的,Swift将所有类绑定到Swift的子类,并使用一些自定义视图来查询NSDocument 1}}东西。

MaddTheSane

根据您的出色建议添加了C包装。要从 C ++ 方法extern "C"调用 C 方法void hello_c(const char * name),请添加hello_cpp(const std::string& name)并致电#include "C.h"

Keith Adler

new SO-32541268 :现在有了参数!

►在GitHub上找到此解决方案,并在Swift Recipes上找到其他详细信息。