我尝试在我的应用程序中集成Swift代码。我的应用程序是用Objective-C编写的,我添加了一个Swift类。我做了这里描述的所有事情。但我的问题是Xcode还没有创建-Swift.h文件,只有桥接头。我创建了它,但它实际上是空的。 我可以在Swift中使用我所有的ObjC类,但我不能反之亦然。我用@objc标记了我的swift类,但它没有帮助。我现在该怎么办?

编辑:苹果说:“当你将Swift代码导入Objective-C时,你依靠xcode生成的头文件将这些文件公开给Objective-C。[…此头文件的名称是您的产品模块名称,后跟“-Swift.h”。

现在当我想导入这个文件时,它会给出一个错误:

    //MainMenu.m

    #import "myProjectModule-Swift.h" //Error: 'myProjectModule-Swift.h' file not found

    @implementation MainMenu

这是我的FBManager.swift文件:

@objc class FBManager: NSObject {

    var descr = "FBManager class"

    init() {
        super.init()
    }

    func desc(){
        println(descr)
    }

    func getSharedGameState() -> GameState{
        return GameState.sharedGameState() //OK! GameState is written in Objective-C and no error here
    }
}

当前回答

文件是自动创建的(这里讨论的是Xcode 6.3.2)。但您不会看到它,因为它在派生数据文件夹中。在用@objc标记你的swift类后,编译,然后在你的派生数据文件夹中搜索swift .h。您应该在那里找到Swift头文件。

我遇到了问题,Xcode不喜欢把my- project - swift .h重命名为my_Project-Swift.h “。”"-"等符号。使用上述方法,您可以找到文件名并将其导入到Objective-C类中。

其他回答

详细信息:Objective-C项目与Swift 3代码在Xcode 8.1

任务:

在objective-c类中使用swift enum 在swift类中使用objective-c enum

完整的样品

1. Objective-C类使用Swift枚举

ObjcClass.h

#import <Foundation/Foundation.h>

typedef NS_ENUM(NSInteger, ObjcEnum) {
    ObjcEnumValue1,
    ObjcEnumValue2,
    ObjcEnumValue3
};

@interface ObjcClass : NSObject

+ (void) PrintEnumValues;

@end

ObjcClass.m

#import "ObjcClass.h"
#import "SwiftCode.h"

@implementation ObjcClass

+ (void) PrintEnumValues {
    [self PrintEnumValue:SwiftEnumValue1];
    [self PrintEnumValue:SwiftEnumValue2];
    [self PrintEnumValue:SwiftEnumValue3];
}

+ (void) PrintEnumValue:(SwiftEnum) value {
    switch (value) {
        case SwiftEnumValue1:
            NSLog(@"-- SwiftEnum: SwiftEnumValue1");
            break;
            
        case SwiftEnumValue2:
        case SwiftEnumValue3:
            NSLog(@"-- SwiftEnum: long value = %ld", (long)value);
            break;
    }
}

@end

在Objective-C代码中检测Swift代码

在我的示例中,我使用SwiftCode.h来检测Objective-C中的Swift代码。这个文件自动生成(我没有在项目中创建这个头文件的物理副本),你只能设置这个文件的名称:

如果编译器找不到你的Swift头文件代码,尝试编译项目。

2. Swift类使用Objective-C枚举

import Foundation

@objc
enum SwiftEnum: Int {
    case Value1, Value2, Value3
}

@objc
class SwiftClass: NSObject {
    
    class func PrintEnumValues() {
        PrintEnumValue(.Value1)
        PrintEnumValue(.Value2)
        PrintEnumValue(.Value3)
    }
    
    class func PrintEnumValue(value: ObjcEnum) {
        switch value {
        case .Value1, .Value2:
            NSLog("-- ObjcEnum: int value = \(value.rawValue)")
            
        case .Value3:
            NSLog("-- ObjcEnum: Value3")
            break
        }
        
    }
}

检测Swift代码中的Objective-C代码

您需要创建桥接头文件。当你在Objective-C项目中添加Swift文件,或在Swift项目中添加Objective-C文件时,Xcode会建议你创建桥接头。

你可以在这里更改桥接头文件的名称:

Bridging-Header.h

#import "ObjcClass.h"

使用

#import "SwiftCode.h"
...
[ObjcClass PrintEnumValues];
[SwiftClass PrintEnumValues];
[SwiftClass PrintEnumValue:ObjcEnumValue3];

结果


更多的样品

上述Objective-c和Swift的完整集成步骤。现在我将编写一些其他代码示例。

3.从Objective-c代码调用Swift类

斯威夫特类

import Foundation

@objc
class SwiftClass:NSObject {
    
    private var _stringValue: String
    var stringValue: String {
        get {
            print("SwiftClass get stringValue")
            return _stringValue
        }
        set {
            print("SwiftClass set stringValue = \(newValue)")
            _stringValue = newValue
        }
    }
    
    init (stringValue: String) {
        print("SwiftClass init(String)")
        _stringValue = stringValue
    }
    
    func printValue() {
        print("SwiftClass printValue()")
        print("stringValue = \(_stringValue)")
    }
    
}

Objective-C代码(调用代码)

SwiftClass *obj = [[SwiftClass alloc] initWithStringValue: @"Hello World!"];
[obj printValue];
NSString * str = obj.stringValue;
obj.stringValue = @"HeLLo wOrLd!!!";

结果

4. 从Swift代码调用Objective-c类

Objective-C类(ObjcClass.h)

#import <Foundation/Foundation.h>

@interface ObjcClass : NSObject
@property NSString* stringValue;
- (instancetype) initWithStringValue:(NSString*)stringValue;
- (void) printValue;
@end

ObjcClass.m

#import "ObjcClass.h"

@interface ObjcClass()

@property NSString* strValue;

@end

@implementation ObjcClass

- (instancetype) initWithStringValue:(NSString*)stringValue {
    NSLog(@"ObjcClass initWithStringValue");
    _strValue = stringValue;
    return self;
}

- (void) printValue {
    NSLog(@"ObjcClass printValue");
    NSLog(@"stringValue = %@", _strValue);
}

- (NSString*) stringValue {
    NSLog(@"ObjcClass get stringValue");
    return _strValue;
}

- (void) setStringValue:(NSString*)newValue {
    NSLog(@"ObjcClass set stringValue = %@", newValue);
    _strValue = newValue;
}

@end

Swift码(呼叫码)

if let obj = ObjcClass(stringValue:  "Hello World!") {
    obj.printValue()
    let str = obj.stringValue;
    obj.stringValue = "HeLLo wOrLd!!!";
}

结果

5. 在Objective-c代码中使用Swift扩展

迅速扩展

extension UIView {
    static func swiftExtensionFunc() {
        NSLog("UIView swiftExtensionFunc")
    }
}

Objective-C代码(调用代码)

[UIView swiftExtensionFunc];

6. swift代码中使用Objective-c扩展

Objective-C扩展(UIViewExtension.h)

#import <UIKit/UIKit.h>

@interface UIView (ObjcAdditions)
+ (void)objcExtensionFunc;
@end

UIViewExtension.m

@implementation UIView (ObjcAdditions)
+ (void)objcExtensionFunc {
    NSLog(@"UIView objcExtensionFunc");
}
@end

Swift码(呼叫码)

UIView.objcExtensionFunc()

我不需要改变构建中的任何设置,也不需要将@obj添加到类中。

我所要做的就是创建bridge-header,当我在Objective-c项目中创建Swift类时,它会自动创建。然后我要做的就是

导入"Bedtime-Swift.h" <-需要使用swift文件的objective-c内部文件。

在Objective-C中使用Swift类

如果你要在App Target中导入代码(在一个项目中混合Objective-C和Swift),你应该使用下一个导入行#import "<#YourProjectName#>-Swift.h"将Swift代码暴露给Objective-C代码[在一个项目中混合Swift和Objective-C代码]

在这篇文章中,我将描述如何将Swift静态库导入Objective-C代码

Objective-C consumer -> Swift静态库

Xcode 10.2.1版

创建Swift静态库

跟随创建Swift静态库与下一步添加:

公开Swift API。从Objective-C中使用Swift函数[关于]

在构建之后,你应该找到一个<product_name>-Swift.h文件,该文件应该位于DerivedSources [file not found]

Objective-C消费者与Swift静态库

拖拽二进制文件到Xcode项目[关于]

链接库[未定义的符号][链接vs嵌入]

Project editor -> select a target -> General -> Linked Frameworks and Libraries -> add -> Add Others... -> point to `lib<product_name>.a` file
//or
Project editor -> select a target -> Build Phases -> Link Binary With Libraries -> add -> Add Others... -> point to `lib<product_name>.a` file

添加库搜索路径[未找到库][递归路径]

Project editor -> select a target -> Build Settings -> Search Paths -> Library Search paths -> add path to the parent of `lib<product_name>.a` file

添加头搜索路径[模块未找到][递归路径]

Project editor -> select a target -> Build Settings -> Search Paths -> Header Search Paths -> add path to generated `<product_name>-Swift.h` file 

向Objective-C项目添加空的.swift文件。当Xcode询问时,按下Create Bridging Header(它将创建module_name-Bridging-Header.h),并为该文件设置一个路径

Project editor -> select a target -> Build Settings -> Swift Compiler - General -> Objective-C Bridging Header

导入模块到Objective-C客户端代码[文件未找到][module_name]

#import "module_name-Swift.h"

这里有更多的例子

存档将成功进行测试

如何在objective - c项目或react本地项目中调用swift函数(也可以在swift框架中)

它也适用于react-native 遵循以下步骤:

打开生成设置并检查这些参数: 定义模块:YES

在AppDelegate.h

#import <React/RCTBridgeDelegate.h>
#import <UIKit/UIKit.h>

@class KB;

@interface AppDelegate : UIResponder <UIApplicationDelegate, RCTBridgeDelegate>

@property (strong, nonatomic) KB *appkb;

@end

在AppDelegate.m

#import "AppDelegate.h"
#import "ProductModuleName-Swift.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
  [self.appkb methodReceiveSwiftClass];
  [self.appkb methodEvents:event prop:properties];
}

@end

KB.swift

import Foundation
// import framework if using a swift framework in objective c or react native native modules.
@objc public class KB:NSObject{
  
  @objc public func methodReceiveSwiftClass(){
    //write anything here....
  }

  @objc public func methodEvents(_ event: String, prop: String){
    //write anything here
     //func with params
  }

}

ProjectModuleName-Bridging-Header.h

#import "React/RCTBridgeModule.h"
#import "AppDelegate.h"

我刚刚发现,在项目中添加swift文件目录是行不通的。您需要首先为该目录创建一个组,然后添加swift文件…