iOS框架 - 使用未声明的标识符

时间:2016-12-20 04:16:55

标签: ios objective-c swift frameworks

我目前正在尝试使用Swift 2.3创建自己的自定义iOS框架。我有一个用Obj-C编写的测试iOS应用程序,它嵌入了+自定义框架的链接。

该框架有多个类,其中两个类似于以下类:

public class Constants: NSObject
{
    private static let sharedInstance = Constants()

    override init() { }

    public static let CONST_VALUE1 = "somevalue1"

    public static let CONST_VALUE2 = "somevalue2"
}

public class RandomUtils: NSObject
{
    private static let sharedInstance = RandomUtils()

    override init() { }

    public static func randomFunction(someValue: String) -> String?
    {
        return someValue
    }
}

在测试应用程序中看到和使用RandomUtils类没有任何问题。但是,尽管在SDK-Swift.h头文件中引用了Constants类,但似乎无法找到它:

SWIFT_CLASS("_TtC6sdk9Constants")
@interface Constants : NSObject
+ (NSString * _Nonnull)CONST_VALUE1;
+ (NSString * _Nonnull)CONST_VALUE2;
@end

SWIFT_CLASS("_TtC6sdk16RandomUtils")
@interface RandomUtils : NSObject
+ (NSString * _Nonnull)randomFunction:(NSString * _Nonnull)someValue;
@end

在我的测试应用中,我正在我的ViewController的头文件中导入框架伞头文件:

#import <UIKit/UIKit.h>

#import <SDK/SDK-Swift.h>

@interface TestVC : UIViewController

@property (weak, nonatomic) IBOutlet UITextField *txtValue1;

@end

尝试使用Constants类

NSLog(@"%@", [Constants CONST_VALUE1]);

导致此错误消息

Use of undeclared identifier 'Constants'

有谁知道我可能做错了什么?

1 个答案:

答案 0 :(得分:0)

经过一些试验和错误后,我通过将.framework直接放入测试应用文件夹来解决了这个问题。