ios – Firebase导致“线程1:信号SIGABRT”

ios – Firebase导致“线程1:信号SIGABRT”,第1张

概述我开始了一个空白的 Xcode项目,我所做的就是通过Cocoapods添加Firebase框架并在Appdelegate和viewcontroller中导入.当我将FIRApp.configure()添加到didFinishLoadingWithOptions时,我得到了这个错误.如果我删除该行但仍导入框架,则运行时没有错误.这发生在一个空白项目中,故事板中没有任何内容,也没有viewcontro 我开始了一个空白的 Xcode项目,我所做的就是通过Cocoapods添加Firebase框架并在Appdelegate和vIEwcontroller中导入.当我将FIRApp.configure()添加到dIDFinishLoadingWithOptions时,我得到了这个错误.如果我删除该行但仍导入框架,则运行时没有错误.这发生在一个空白项目中,故事板中没有任何内容,也没有vIEwcontroller.swift.

在控制台中它表示libc abi.dylib:以NSException类型的未捕获异常终止
(11分贝)

Xcode 8.2,swift 3

import UIKitimport Firebase@UIApplicationMainclass 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:.}

}

Podfile

# 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 dur2pod '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

并将您的项目名称替换为您的项目名称

保存文件,然后执行

pod install

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

总结

以上是内存溢出为你收集整理的ios – Firebase导致线程1:信号SIGABRT”全部内容,希望文章能够帮你解决ios – Firebase导致“线程1:信号SIGABRT”所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://www.outofmemory.cn/web/1025231.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存