我使用raywenderlich tu link创建了一个广告连播,一切正常
use of unresolved identifier 'file name'
我尝试使用cmd + click跳转到该文件的定义,它也将我导航到该文件
代码已实现
let bundle = Bundle(for: SDKSplashVC.self) // error here - Use of unresolved identifier 'SDKSplashVC'
let storyboard = UIStoryboard(name: "SDKSplash", bundle: myBundle)
let controller = storyboard.instantiateViewController(withIdentifier: "SDKSplashVC")
self.present(controller, animated: true, completion: nil)
我已经导入了pod,在托管方案中交叉检查并建立了阶段,列出了我的自定义pod,但仍然存在错误
任何帮助都会非常有帮助。 谢谢
答案 0 :(得分:1)