我的应用程序一直被Apple Beta审核小组拒绝,因为他们声称启动时崩溃了。重点是在我身边的任何模拟器或设备上都不会发生崩溃。
符号化的崩溃日志报告如下所示,但在HomeViewController.swift中报告了第74行(这里我报告了提交给Beta审核小组的代码图片)
只是引用来自故事板的UITableView IBOutlet,如果我在这里放置一个断点,则实例化tableView。我使用的是swift,iOS 9.3.2和Xcode 7.3.1。
编辑:第87行相同,在UIButton IBOutlet上调用函数renderButton(btnOpened,selected:true)。
我试过设置僵尸,解决消毒剂,我一直没有崩溃,他们继续拥有它,我不知道什么可能解决这个问题。有没有人知道可能出现什么问题?
Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0 Sportito 0x00000001000cee40 HomeViewController.viewDidLoad() -> () (HomeViewController.swift:74)
1 Sportito 0x00000001000ce990 HomeViewController.viewDidLoad() -> () (HomeViewController.swift:87)
2 Sportito 0x00000001000cee60 @objc HomeViewController.viewDidLoad() -> () (HomeViewController.swift:0)
3 UIKit 0x0000000186934c40 -[UIViewController loadViewIfRequired] + 996
4 UIKit 0x0000000186934844 -[UIViewController view] + 28
5 UIKit 0x0000000186cdaaec -[UINavigationController preferredContentSize] + 172
6 UIKit 0x0000000186b9adf4 -[UIViewController(UIPopoverController_Internal) _resolvedPreferredContentSize] + 68
7 UIKit 0x0000000186b9a858 -[UIPopoverController _transitionFromViewController:toViewController:animated:] + 152
8 UIKit 0x0000000186b9a48c -[UIPopoverController _initWithContentViewController:popoverControllerStyle:] + 836
9 UIKit 0x0000000186f5ac7c -[UISplitViewController _setupHiddenPopoverControllerWithViewController:] + 120
10 UIKit 0x0000000186f5aeec -[UISplitViewController _viewControllerHiding:] + 356
11 UIKit 0x0000000186f62b60 -[UISplitViewController viewWillAppear:] + 208
12 UIKit 0x000000018694d374 -[UIViewController _setViewAppearState:isAnimating:] + 628
13 UIKit 0x000000018694d0e8 -[UIViewController __viewWillAppear:] + 156
14 UIKit 0x000000018693cf14 -[UIView(Hierarchy) _willMoveToWindow:withAncestorView:] + 596
15 UIKit 0x000000018693c13c -[UIView(Internal) _addSubview:positioned:relativeTo:] + 444
16 UIKit 0x000000018693b7e8 -[UIWindow addRootViewControllerViewIfPossible] + 664
17 UIKit 0x0000000186938a88 -[UIWindow _setHidden:forced:] + 252
18 UIKit 0x00000001869aefa4 -[UIWindow makeKeyAndVisible] + 48
19 UIKit 0x0000000186bda3ac -[UIApplication _callInitializationDelegatesForMainScene:transitionContext:] + 3456
20 UIKit 0x0000000186bde5f0 -[UIApplication _runWithMainScene:transitionContext:completion:] + 1684
21 UIKit 0x0000000186bdb764 -[UIApplication workspaceDidEndTransaction:] + 168
22 FrontBoardServices 0x000000018317f7ac __FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ + 36
23 FrontBoardServices 0x000000018317f618 -[FBSSerialQueue _performNext] + 168
24 FrontBoardServices 0x000000018317f9c8 -[FBSSerialQueue _performNextFromRunLoopSource] + 56
25 CoreFoundation 0x000000018179509c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
26 CoreFoundation 0x0000000181794b30 __CFRunLoopDoSources0 + 540
27 CoreFoundation 0x0000000181792830 __CFRunLoopRun + 724
28 CoreFoundation 0x00000001816bcc50 CFRunLoopRunSpecific + 384
29 UIKit 0x00000001869a394c -[UIApplication _run] + 460
30 UIKit 0x000000018699e088 UIApplicationMain + 204
31 Sportito 0x000000010002e860 main (AppDelegate.swift:42)
32 libdyld.dylib 0x000000018125a8b8 start + 4
答案 0 :(得分:1)
根据Apple的指南,无论您的应用是否通用,您的应用都不得在iphone或ipad上崩溃。
如果您的应用只是iPhone,那么它应该在ipad上以小分辨率运行,但在任何情况下都不会崩溃,因为从appstore用户也可以从ipad下载仅限iphone的应用程序,所以它不应该崩溃。
因此,请在iPad中检查您的应用是否崩溃。
如果您的应用是通用的,那么ipad或iphone中的分辨率应该没有问题。
所以,确保你正在做的错误。
希望这会有所帮助:)
答案 1 :(得分:1)
该应用是否设为通用?当你在iPhone上进行测试时,他们会在iPad上崩溃,反之亦然吗?