gpt4 book ai didi

ios - 从 objective-c 调用 swift 函数会出现链接器错误

转载 作者:行者123 更新时间:2023-11-30 12:31:58 25 4
gpt4 key购买 nike

我正在尝试从 objective-c 文件调用 swift 函数。

Swift 函数实现:

@objc class FXFormVariables : NSObject {
class func FXFontName() -> String { return fontName }
class func FXFontSize() -> CGFloat { return fontSizeLarge }
class func FXHiddenCell() -> NSArray { return hiddenElementFromFormIndex as NSArray }
}

objective-c :

NSArray *hideArray = [FXFormVariables FXHiddenCell];
if ([hideArray containsObject:@(cellIndexPath)]){
return 0.0;
}

构建时链接器错误:

 Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$__TtCC13Social_Engine11AppDelegate15FXFormVariables", referenced from:
objc-class-ref in FXForms.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

此代码在 Xcode 7.3 中运行良好,但升级到 8.3 后,它开始抛出链接器错误。

请帮忙。提前致谢。

最佳答案

导入名为 Project name 的文件,并在 Objective-C 文件中添加 -Swift.h

请检查下面的导入文件示例

#import “ProjectName-Swift.h”

当您使用 .swift 文件构建项目时,Xcode 将生成此文件。

此外,您可以通过以下问题进行检查: How to import Swift code to Objective-C

关于ios - 从 objective-c 调用 swift 函数会出现链接器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43414499/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com