我会尽力解释我的问题。
我正在独立创建两个库 home.a 和 room.a。从 home lib 我调用了我在 room.a 中实现的函数
我想要两个在一个项目中使用这两个库,情况是我想将 room.a 保留为可选。如果我不在项目中添加 room.a,我将无法构建项目。
错误是:
Undefined symbols for architecture
"_RoomViewController", referenced from:
-[ParentViewController openView:] in home.a
这里 RoomViewController
是来自 room.a 的类 & ParentViewController
是来自 home.a 的类
我想在代码 home.a 中添加条件以检查 RoomViewController
是否存在,然后创建 RoomViewController
的对象。
请建议我这样做的方法。 提前致谢。
如果你想让项目编译没有错误,你需要添加一个头文件来声明 RoomViewController 类。比如写一个 RoomViewController+Private.h 文件。
@interface RoomViewController: UIViewController
@end
@interface RoomViewController()
//List of methods you want to use
- (void)methodA;
- (void)methodB;
@end
要检查是否在运行时链接了 library room.a,您需要执行以下操作:
if ([RoomViewController class]) {
// class exists
RoomViewController *instance = [[RoomViewController alloc] init];
} else {
// class doesn't exist
}
关于ios - 如何检查静态库中的类是否可用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28090034/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |