iOS常见crash整理 发表于 2017-07-24 1.网络类表现1*** Assertion failure in -[AFJSONRequestSerializer requestWithMethod:URLString:parameters:error:] 解决方案: url中包含中文时候需要转码123NSString *encoded = [link stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];或者stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet] 2.UI类表现1invalid mode 'kCFRunLoopCommonModes' provided to CFRunLoopRunSpecific - break on _CFRunLoopError_Run 解决方案: 退出页面时需要移除监听observe1[_footerView.scrollView removeObserver:self forKeyPath:@"contentSize"];