我正在使用NSURLConnection类从服务器下载Json数据。我在后台线程中解析数据,但是在connection() delegate method the app is crashing
中。以下是截图。该代码也可在下图中找到。为什么会这样?
此致
更新
删除断点:
答案 0 :(得分:1)
您似乎正在尝试使用UIAlertView
并导致崩溃。现在,从您的代码中不清楚您是如何做到的。在任何情况下,{8}都不推荐使用UIAlertView
,这可能解释了使用Swift时的问题(尽管使用弃用的方法或类通常不会导致Obj-C崩溃)。
您可以尝试使用UIAlertController
并将其preferredStyle
设置为UIAlertControllerStyleAlert
:
var alert = UIAlertController(title: "Title", message: "Message", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.Default, handler: nil))
self.presentViewController(alert, animated: true, completion: nil)