偷看iOS 9 App Crashing

时间:2015-09-29 15:26:29

标签: ios uitableview peek 3dtouch

我正在尝试在我的iOS 9应用程序中执行Peek和Pop。有问题的视图有一个UITableView,所以我的代码中有:

- (UIViewController *)previewingContext:(id<UIViewControllerPreviewing>)previewingContext viewControllerForLocation:(CGPoint)location {

    // check if we're not already displaying a preview controller
    if ([self.presentedViewController isKindOfClass:[WebViewController class]]) {
        return nil;
    }

    // shallow press: return the preview controller here (peek)
        self.webViewController = [[[WebViewController alloc] initWithNibName:@"WebViewController" bundle:[NSBundle mainBundle]] autorelease];




    return self.webViewController;
}
- (void)previewingContext:(id<UIViewControllerPreviewing>)previewingContext commitViewController:(UIViewController *)viewControllerToCommit {

    // deep press: bring up the commit view controller (pop)
    self.webViewController = [[[WebViewController alloc] initWithNibName:@"WebViewController" bundle:[NSBundle mainBundle]] autorelease];


    [self showViewController:self.webViewController sender:self];
}

WebViewController是我已经设置的ViewController,用于在选择tableview行时显示内容。我得到的错误是:

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSCFConstantString stringByAppendingString:]: nil argument'
*** First throw call stack:
(0x182160f5c 0x19764bf80 0x182160ea4 0x182fb8868 0x1001307a4 0x1876cf9ac 0x1876cf720 0x187a025f8 0x187960844 0x18796cde4 0x1876a91e4 0x182117c30 0x1821159d4 0x182115e04 0x182044dc0 0x18d4e0088 0x18771ef60 0x10014ca68 0x197e6a8b8)
libc++abi.dylib: terminating with uncaught exception of type NSException

1 个答案:

答案 0 :(得分:2)

您的日志确切地说明您的代码有什么问题:

  

- [__ NSCFConstantString stringByAppendingString:]:nil参数&#39;

您正在执行stringByAppendingString传递 nil

的值

此外,如果您使用ARC(现在默认为默认值),则不再使用autorelease