iOS 崩溃记录

1、语法糖nil的情况。如果imageUrl的value为nil,会crash

  @{@"imageUrl":data["imageUrl"],
       @"title":title],
    @"subtitle":subtitle,
    @"shareUrl":shareUrl};

2、连续presentViewController同一个VC

if (self.rootNavi.presentedViewController == nil) {
       [self.rootNavi presentViewController:self.locationVC animated:YES completion:nil];
   }

3、数组越界,此问题最容易被忽视,崩溃最多


持续更新。。。


你可能感兴趣的:(iOS 崩溃记录)