我正在尝试创建一个包含4个类别的购物应用程序:省钱,促销,优惠和优惠券。当我执行过滤>选择类别>接下来,应用停止响应并显示此消息。
config.enableSimpleBroker("/topic/", "/queue/");
并说错误就在这一行:
fatal error: unexpectedly found nil while unwrapping an Optional value (lldb)
我该怎么做才能解决这个问题?
答案 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)
}