iOS   发布时间:2022-05-04  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – Firebase导致“线程1:信号SIGABRT”大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

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

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

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:.
}@H_502_17@ 
 

}

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 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'@H_502_17@ 
 

结束

解决方法

我们来试试吧.

按照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@H_502_17@ 
 

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

保存文件,然后执行

pod install@H_502_17@ 
 

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

大佬总结

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

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

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。