Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 ObjC 项目,并且在 Swift 中添加了一个 WatchApp 扩展目标。它工作正常,但是我有一个数据库处理程序类,我想从监视扩展目标访问它,以便从中获取一些数据。我已经在扩展目标的桥接头文件中添加了数据库类,但是当我在应用程序 viewController 中实例化该类时,我得到一个缺少符号的错误。我试图在标题搜索路径中添加类的路径,但它仍然不起作用。有人知道我缺少什么吗?
您需要将该类添加到您的 WatchKit 扩展目标中。或者,您可以使用共享代码构建框架。
编辑
有关详细信息,请参阅此内容在 Watchkit 上调用方法