ios - 模拟器上的 Xcode 应用程序在真实设备上崩溃

标签 ios objective-c xcode ipad

我有一个奇怪的问题,每当我在 iPad 模拟器上运行我的应用程序时,它都能完美运行,但如果我在真实设备(iPad air iOS 7.0.4)上尝试,它会在尝试这段代码时崩溃。

我有:

导航 Controller 嵌入主细节 Split View Controller (将调用 A)-> 替换 segue ->

uitableViewController -> 替换 segue ->

someViewController(会调用B)

现在.. 将 segue 替换回 Nav Controller(所有都是主要细节),这里它在真实设备上崩溃,只给出:(lldb)

现在这是B实现

- (IBAction)backToTable:(id)sender
{
    id detail = self.splitViewController.viewControllers[1];
    if(detail) { // iPad
        [self performSegueWithIdentifier:@"backToTable" sender:self];
    }
    else       // iPhone
        [self dismissViewControllerAnimated:YES completion:nil];
}

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    if ([[segue identifier] isEqualToString:@"backToTable"]){
        ViewControllerA *destViewController = [[[segue destinationViewController] viewControllers] objectAtIndex:0];
        destViewController.boolForSegue = @"true";
    }
}

这是A

.h
@property (strong) NSString *boolForSegue;

.m

-(void)viewWillAppear:(BOOL)animated
{
    if ([_boolForSegue isEqualToString:@"true"]){
        [self unlockView];
    }
}

- (void)unlockView
{
    [self performSegueWithIdentifier:@"mySegue" sender:self];
}

我再说一遍,在模拟器上完全没有问题。可能是什么问题??

编辑:

crash log
Date/Time:           2014-02-06 23:00:34.420 +0100
OS Version:          iOS 7.0.4 (11B554a)
Report Version:      104

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

Thread 0 Crashed:
0   libobjc.A.dylib                 0x00000001908879d0 objc_msgSend + 16
1   UIKit                           0x00000001873fb09c -[UISearchBar willMoveToSuperview:] + 64
2   UIKit                           0x00000001875d4ea0 __UIViewWillBeRemovedFromSuperview + 188
3   UIKit                           0x00000001873043f0 -[UIView(Hierarchy) removeFromSuperview] + 68
4   UIKit                           0x00000001873074f8 -[UIView dealloc] + 420
5   UIKit                           0x00000001873eb350 -[UIScrollView dealloc] + 968
6   UIKit                           0x00000001874abc3c -[UITableView dealloc] + 1300
7   UIKit                           0x000000018749c108 -[UIViewController dealloc] + 460
8   UIKit                           0x00000001875205f8 -[UITableViewController dealloc] + 288
9   UIKit                           0x000000018782cdc4 -[UIStoryboardSegue dealloc] + 68
10  libobjc.A.dylib                 0x00000001908893d0 (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 520
11  CoreFoundation                  0x000000018433589c _CFAutoreleasePoolPop + 24
12  UIKit                           0x00000001872fde34 _wrapRunLoopWithAutoreleasePoolHandler + 72
13  CoreFoundation                  0x00000001843f77dc __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 28
14  CoreFoundation                  0x00000001843f4a64 __CFRunLoopDoObservers + 368
15  CoreFoundation                  0x00000001843f4df0 __CFRunLoopRun + 760
16  CoreFoundation                  0x0000000184335b34 CFRunLoopRunSpecific + 448
17  GraphicsServices                0x0000000189d1782c GSEventRunModal + 164
18  UIKit                           0x00000001873740e4 UIApplicationMain + 1152
19  MasterSecurity                  0x000000010006f688 main (main.m:16)
20  libdyld.dylib                   0x0000000190e77a9c start + 0

Thread 1:
0   libsystem_kernel.dylib          0x0000000190f59ac8 kevent64 + 8
1   libdispatch.dylib               0x0000000190e5dd74 _dispatch_mgr_thread + 48

Thread 2:
0   libsystem_kernel.dylib          0x0000000190f72e74 __workq_kernreturn + 8
1   libsystem_pthread.dylib         0x0000000190ff17a4 start_wqthread + 0

Thread 3:
0   libsystem_kernel.dylib          0x0000000190f72e74 __workq_kernreturn + 8
1   libsystem_pthread.dylib         0x0000000190ff17a4 start_wqthread + 0

Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x00000001701669c0   x1: 0x000000018798d5a1   x2: 0x0000000000000000   x3: 0x0000000000000000
    x4: 0x0000000000000000   x5: 0x0000000000000000   x6: 0x0000000000000000   x7: 0x0000000000000000
    x8: 0x0000000191a40750   x9: 0x0000000153edbea8  x10: 0x000011d61ce68cd1  x11: 0x000000050000000f
   x12: 0x00000001703e35e0  x13: 0xbaddd0ad53edbead  x14: 0x000000000000004c  x15: 0x0000000170036440
   x16: 0x00000001908879c0  x17: 0x00000001908a1b6c  x18: 0x0000000000000000  x19: 0x000000012450fdc0
   x20: 0x0000000124846a00  x21: 0x0000000191a7f000  x22: 0x0000000124846a00  x23: 0x0000000191a83000
   x24: 0x000000000000001e  x25: 0x000000018798df25  x26: 0x0000000124513b40  x27: 0x0000000000000001
   x28: 0x0000000191ac3550  fp: 0x000000016fda21c0   lr: 0x00000001873fb1d0
    sp: 0x000000016fda21a0   pc: 0x00000001908879d0 cpsr: 0x20000000

最佳答案

在您的 A 实现中,在 viewWillAppear: 中(在 View Controller 完成显示之前)您正在调用一个调用 performSegueWithIdentifier: 的方法,它将尝试显示另一个 View Controller 。您必须等到第一个 segue 先完成。因此,如果您将该调用移至 viewDidAppear:,它将解决您的问题。

记住,不要在另一个 View Controller 还在显示的过程中尝试显示它。

关于ios - 模拟器上的 Xcode 应用程序在真实设备上崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21614568/

相关文章:

ios - Facebook iOS SDK - 跳转到另一个 View

ios - 以编程方式创建多个 UIImageView

ios - 未找到签名证书 “iOS Development” - 使用 bitrise/FaSTLane 匹配构建应用程序版本

ios - UITableView 崩溃无法识别的选择器发送到实例

iphone - NSFetchedResultsController : Fill TableView with fetched entity and its related entity

objective-c - Objective C - "Duplicate declaration of method"编译错误

objective-c - 如何以编程方式嵌入 Nib ?

ios - 无法隐藏以编程方式创建的 UIButton

ios - 如何快速创建可扩展的文本字段/标签?

ios - 设备旋转通知未按预期运行 iOS Swift