从项目中删除CocoaPods的正确方法是什么?我想删除整个CocoaPod.由于我的客户施加的一些限制,我无法使用它.我需要只有一个xcodeproj而不是xcworkspace.
项目页面似乎从Xcode 8中消失了.我使用此页面删除了派生数据.
知道如何从Xcode 8中删除派生数据?
当我编译应用程序时,我得到一个等于这个错误:
无法构建Objective-C模块'Firebase'
import Firebase我的文件swift中出现此错误.
尝试配置XCode以使用Firebase 3时,使用安装文档中的代码会给出错误:
https://firebase.google.com/docs/ios/setup#add_the_sdk
import UIKit
import Contacts
import Firebase
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
//contacts
var contactStore = CNContactStore()
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
FIRApp.configure() <-- Use of unresolved identifier 'FIRApp'
// Override point for customization after application launch.
return true
}
Run Code Online (Sandbox Code Playgroud)