NSURLConnection崩溃了应用程序

时间:2014-06-07 12:51:10

标签: swift

我正在使用NSURLConnection类从服务器下载Json数据。我在后台线程中解析数据,但是在connection() delegate method the app is crashing中。以下是截图。该代码也可在下图中找到。为什么会这样?

此致

enter image description here

更新

删除断点:

enter image description here

1 个答案:

答案 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)