在我的iOS应用程序中,我有一个SQLite数据库,其中items
表有很多行。我避免将所有项目加载到内存中,而只是加载当前显示在UITableView
中的项目。
我使用的SQLite.swift在与数据库交互时可以throw
。如果从items
表中获取计数throw
,那么正确的做法是什么?
我尝试过显示用户无法关闭的警告。
class ItemsController: UIViewController, UITableViewDataSource, UITableViewDelegate {
var items: Items!
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
var count = 0
do {
count = try items.getCount();
}
catch {
// present a fatal error message
let alert = UIAlertController(
title: "Fatal Error",
message: "\(error)",
preferredStyle: .alert)
self.present(alert, animated: true, completion: nil)
}
return count
}
// ...
}
Items
类是这样的。
class Items {
var connection: Connection
func getCount() throws -> Int {
return try connection.scalar("SELECT count(*) FROM items") as! Int
}
// ...
}
答案 0 :(得分:0)
如果使用类似DZNEmptyDataSet的内容,则可以在视图控制器上拥有状态变量,并具有不同的状态,如.loading,.showing,.empty,.error。对于.showing以外的任何状态,您将返回0表示行数,而是显示DZNEmptyDataSet。因此,例如,如果您的数据无法加载,那么您将状态设置为.error并调用tableView.reloadData()调用emptySetDatasource方法,您可以在其中指定错误消息。如果您有刷新控件,则用户可以进行刷新并将状态恢复为.loading并再次尝试。这就是REST数据支持的表视图在大多数流行应用程序中的工作方式。