gpt4 book ai didi

ios - Firebase 导致 "Thread 1: signal SIGABRT"

转载 作者:搜寻专家 更新时间:2023-10-30 22:08:29 25 4
gpt4 key购买 nike

我开始了一个空白的 Xcode 项目,我所做的就是通过 Cocoapods 添加 Firebase 框架并导入 Appdelegate 和 viewcontroller。当我将 FIRApp.configure() 添加到 didFinishLoadingWithOptions 时,我得到了那个错误。如果我删除该行但仍然导入了框架,则它可以正常运行。这发生在一个空白项目上, Storyboard和 viewcontroller.swift 中都没有任何内容。

在控制台中它显示 libc++abi.dylib: terminating with uncaught exception of type NSException(11db)

Xcode 8.2, swift 3

import UIKit
import Firebase

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

var window: UIWindow?


func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
FIRApp.configure()

return true
}

func applicationWillResignActive(_ application: UIApplication) {
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
}

func applicationDidEnterBackground(_ application: UIApplication) {
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

func applicationWillEnterForeground(_ application: UIApplication) {
// Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
}

func applicationDidBecomeActive(_ application: UIApplication) {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

func applicationWillTerminate(_ application: UIApplication) {
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}

播客文件

    # Uncomment the next line to define a global platform for your        project
# platform :ios, '9.0'

target 'dur2' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

# Pods for dur2

pod 'Firebase/Core'
pod 'Firebase/AdMob'
pod 'Firebase/Messaging'
pod 'Firebase/Database'
pod 'Firebase/Invites'
pod 'Firebase/DynamicLinks'
pod 'Firebase/Crash'
pod 'Firebase/RemoteConfig'
pod 'Firebase/Auth'
pod 'Firebase/Storage'
pod 'SDWebImage'

结束

最佳答案

让我们来做个测试。

按照 Firebase 网站上的说明创建一个新项目,确保将 GoogleService-Info.plist 添加到您的项目中。

在创建 pod 文件的步骤中,确保您位于项目文件夹中并使用以下文本:

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'your-project-name' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

# Pods for Firesearch
pod ‘Firebase/Core’
end

并用你的项目名称代替your-project-name

保存文件然后做一个

pod install

然后打开project-name.xcworkspace并构建它。

关于ios - Firebase 导致 "Thread 1: signal SIGABRT",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41325082/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com