在 Swift 中使用 PFQueryTableViewController 检查互联网连接
Posted
技术标签:
【中文标题】在 Swift 中使用 PFQueryTableViewController 检查互联网连接【英文标题】:Check for internet connection with PFQueryTableViewController in Swift 【发布时间】:2016-04-28 19:34:42 【问题描述】:我正在开发一个与 Parse 相关联的应用程序,因此我使用的是 PFQueryTableViewController
。
我只想知道如何在运行应用程序时检查互联网连接。
目前,如果我关闭互联网连接然后运行应用程序,我会得到表格的加载微调器,但显然,什么都没有加载。最终,微调器停止了,我只剩下一张空白桌子。
我已经阅读了有关使用 Reachability
的信息,但不确定如何将其放入我当前的应用程序中。
基本上,我想要的是,每次用户启动应用程序时,它都会检查互联网连接,如果有,那就太好了!如果没有,它会显示一个提示说没有连接。
有人可以帮忙吗?我已经为queryForTable()
函数添加了我的代码,这是我认为应该进行此检查的地方。如果您需要查看我的任何其他代码,请告诉我。谢谢
override func queryForTable() -> PFQuery
let query = PFQuery(className: "Reviews")
if indexArray == 0
query.orderByDescending("createdAt")
else if indexArray == 1
query.orderByAscending("FilmName")
else if indexArray == 2
query.orderByDescending("OurRating")
else if indexArray == 3
query.orderByAscending("OurRating")
else if indexArray == 4
query.orderByDescending("WantToSeeThisCount")
else if indexArray == 5
query.orderByAscending("DirectedBy")
else if indexArray == 6
query.orderByDescending("UpVoteCount")
else if indexArray == 7
query.orderByDescending("DownVoteCount")
query.whereKey("ToDisplayInApp", equalTo:true)
// Add a where clause if there is a search criteria
if filmSearchBar.text != ""
query.whereKey("FilmName", containsString: filmSearchBar.text!)
return query
【问题讨论】:
这可能会帮助你reachability 我建议您在每次要发出网络请求时测试互联网是否可以访问,而不仅仅是在用户打开应用程序时,并且可达性是最简单的解决方案,它再简单不过了......跨度> 【参考方案1】:var reachability: Reachability!
func checkNetworkReachability()
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(functionToHandleWhenConnectionChanges()), name:kReachabilityChangedNotification, object: nil)
if self.reachability == nil
self.reachability = Reachability.reachabilityForInternetConnection()
self.reachability.startNotifier()
func functionToHandleWhenConnectionChanges()
// self.reachability.isReachable() returns a boolean. If it's yes, then you are connected to internet, otherwise not connected.
在做这一切之前,添加来自https://github.com/tonymillion/Reachability的Reachability.h和Reachability.m文件
希望这会有所帮助:)
【讨论】:
以上是关于在 Swift 中使用 PFQueryTableViewController 检查互联网连接的主要内容,如果未能解决你的问题,请参考以下文章
swift 优雅地处理Swift中可本地化的字符串。注意:此代码在Swift 2中,需要在现代Swift中使用更新。
在 Swift 项目中使用 Objective C 类中的 Swift 类
在 Swift 项目中使用 Objective C 类中的 Swift 类