Exception Type: EXC_CRASH (SIGABRT)

前端 未结 3 1820
攒了一身酷
攒了一身酷 2020-12-03 11:57
 Incident Identifier: B959CD08-FA2C-4A34-8D0C-343927FF6B86
 CrashReporter Key:   78e6625f679cb4cfb76f553075c64a197002c1bf
 Hardware Model:      iPad3,1
 Process:             


        
相关标签:
3条回答
  • 2020-12-03 12:16

    I had deleted my Main.storyboard and had replaced it with the storyboard from another project. My solution was to delete my project and recreate it.

    0 讨论(0)
  • 2020-12-03 12:22

    Solved !!

    I have solved this issue : replace below files files from your project file(if you have backup of your project):

    1. pods
    2. projectname.xcworkspace
    3. podfile.lock, podfile
    4. add pods in podfile if any pod missing and install pods
    5. Build your project and run

    Please get project backup in zip this will help to solve this error.

    0 讨论(0)
  • 2020-12-03 12:37

    It's not a crash, it's an abort due to an exception. It means that your application is passing bad data to a system routine and the routine is saying that it's bad and can't continue, so it's killing your app. The console should show something about what went wrong. One common exception that can occur is attempting to get the n + 1st object from an array with only n objects in it. (For example getting the 5th element of an NSArray when there are only 4 elements.) The console will have a message that says just that. So check the console to see what might have happened.

    0 讨论(0)
提交回复
热议问题