我收到一个简单的远程通知,并按照以下方式处理:
func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]) {
let notificationObject = JSON(userInfo)
if notificationObject["type"] == "friendRequest" {
let tab = self.window?.rootViewController as! UITabBarController
tab.selectedIndex = 1
}
}
打开时,推送通知会显示一个ViewController,用于管理子类UITableView
和UITableViewCell
。
UITableViewCell
为Google API的每个单元格进行网络调用,如下所示:
let url = "https://www.googleapis.com/books/v1/volumes?q=\(isbn)&fields=items(volumeInfo(imageLinks(thumbnail),industryIdentifiers))&key=\(GOOGLE_BOOKS_API_KEY)"
Alamofire.request(.GET, url).response { response in
print(response)
每个单元格的调用成功除了第一个单元格,这给了我:
Error Domain=NSURLErrorDomain Code=-1005 "The network connection was lost.
启动时网络通话是否有iOS限制/延迟/干扰?
答案 0 :(得分:0)
我注意到有时你需要在执行某些失败的事情之前稍微延迟,以防你立即执行它们。
在调用方法之前,开始构建UITableView
和相应的单元格,将方法调用包装到dispatch_after
块中,延迟为0.1秒,这应该足够了。
这可以解决第一个细胞的问题。如果这有帮助,你可以尝试延迟,试着让它更短。