应用程序在iPhone 6上发布时崩溃,在iPhone 4s和iPad Retina和iPhone6模拟器上运行良好

时间:2015-01-05 00:57:21

标签: iphone crash launch

iPhone6在应用开发期间一直运作良好;当我添加iPhone4s时,它停止工作(与iPad Retina一样可以正常使用)。当我从iPhone6删除应用程序并再次下载时,我在iPhone6上收到“信任”问题,但是说是没有帮助。 iPhone6仍然在iTunes上的小牛队中得到认可。这曾经发生过一次,但是鬼混,尝试各种Mac和iPhone重新启动,它再次开始工作,我不知道我做了什么。这次我无法清除它;我得到了启动画面,然后崩溃了。太令人沮丧了。

你知道让Mac和iPhone6再次说话的神奇之处吗?

谢谢!!!

iPhone崩溃:

 Incident Identifier: 3C33B554-EBF3-4AE3-B060-6E4EBAE4A1F2
   CrashReporter Key:   1ea3487f41d2b6e8c654694d1aeb4eda4ac9cf1f
   Hardware Model:      iPhone7,2
   Process:             XxxxXxxx [261]
   Path:                /private/var/mobile/Containers/Bundle/Application/C243C18C-D322-40E6-8803-B801EFB219DD/XxxxXxxx.app/XxxxXxxx
   Identifier:          com.xxxxxxx. XxxxXxxx
   Version:             1.0 (1.0)
   Code Type:           ARM-64 (Native)
   Parent Process:      launchd [1]

   Date/Time:           2015-01-04 15:47:21.425 -0800
   Launch Time:         2015-01-04 15:47:21.283 -0800
   OS Version:          iOS 8.1.2 (12B440)
   Report Version:      105

   Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
   Exception Subtype: KERN_INVALID_ADDRESS at 0x000000016fbd9950
   Triggered by Thread:  0

   Thread 0 name:  Dispatch queue: com.apple.main-thread
   Thread 0 Crashed:
   0   XxxxXxxx                         0x0000000100d3a3dc 0x1000ac000 + 13165532
   1   UIKit                            0x0000000188938a9c -[UIViewController loadViewIfRequired] + 688
   2   UIKit                            0x00000001889387ac -[UIViewController view] + 28
   3   UIKit                            0x000000018893ee74 -[UIWindow addRootViewControllerViewIfPossible] + 68

Xcode 6方面:

#import <UIKit/UIKit.h>

#import "XXXAppDelegate.h"

int main(int argc, char * argv[])
{
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([RIVAppDelegate class]));  Thread 1:EXC_BAD_ACCESS (code=1, address=0x16fc41830)
    }
}

1 个答案:

答案 0 :(得分:0)

我向Apple提交了一个编译器/链接器/加载器错误(无法告诉它)(对有效代码进行有效的重新排序可以使其在iPhone6上运行。我将会这样做更新Apple的回复。

编辑:继续传奇:此代码导致iPhone6崩溃(在viewDidLoad中):

switch (ind) {  
0: str = "a"; break;
1: str = "b"; break;  
otherwise: str = "c";  
}  

此代码有效:

if (ind == 0) str = "a";  
else if (ind == 1) str = "b";  
else str = "c";  

有什么想法吗? switch是否比if / else做更多的事情(比如对库异常捕获器的隐藏设置调用)?