选择其他选项时,为什么iOS模拟器会冻结?

时间:2015-06-16 16:46:23

标签: ios swift

我正在尝试创建一个包含4个类别的购物应用程序:省钱,促销,优惠和优惠券。当我执行过滤>选择类别>接下来,应用停止响应并显示此消息。

config.enableSimpleBroker("/topic/", "/queue/");

并说错误就在这一行:

    fatal error: unexpectedly found nil while unwrapping an Optional value  (lldb) 

我该怎么做才能解决这个问题?

截图: http://i.stack.imgur.com/uqFS7.png

http://i.stack.imgur.com/8coPw.png

1 个答案:

答案 0 :(得分:0)

尝试展开值

            let url: NSURL? = NSURL(string: imageURL)

            if let imageURL = url {
                let option = SDWebImageOptions(0)
                SDWebImageManager.sharedManager().downloadImageWithURL (imageURL, options: option, progress: nil, completed: completionBlock)

            } else {
                finishedBlock (nil)
            }