我正在尝试在我的应用中填充tableview,但我不知道如何创建一个函数来开始填充它。我想这样做是因为我从http请求接收数据,但是当需要更新tableview数据源时,包含它的数组是空的。 可能吗?我正在使用Swift。
这是我的代码:
class ContractsViewController: UIViewController, UISearchBarDelegate, UITableViewDelegate, UITableViewDataSource {
var companyTxt: String = ""
var descriptionTxt: String = ""
var idTxt: String = ""
var dateCreatedTxt: String = ""
var dateExpirationTxt: String = ""
var savedData = Dictionary<Int, JSON>()
var json: JSON = []
@IBOutlet weak var searchContracts: UISearchBar!
@IBOutlet weak var tableView: UITableView!
@IBOutlet weak var myIndicator: UIActivityIndicatorView!
override func viewDidLoad() {
super.viewDidLoad()
preUpload()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func preUpload() {
let headers = [
"X-Limit": "5",
"X-Sort": "{\"expirationDate\":-1}"
]
myIndicator.color = (UIColor.redColor())
myIndicator.startAnimating()
Async.background {
Alamofire.request(.GET, "https://mydata", headers: headers)
.responseJSON { response in
switch response.result {
case .Success (let data):
self.json = JSON(data)
let replaced = FindAndReplace().findAndReplace(self.json)
for (pos, object): (String, JSON) in replaced {
print("")
print("pos -> " + pos)
self.savedData[Int(pos)!] = object
}
case .Failure(let error):
print(error)
}
}
}.main {
self.myIndicator.stopAnimating()
}
}
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
self.searchContracts.resignFirstResponder()
}
// MARK: TableView
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
//return name.count
print("Json count -> " + String(json.count))
return json.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
let cell: ServiceContractsCell? = tableView.dequeueReusableCellWithIdentifier("cellServiceContracts", forIndexPath: indexPath) as? ServiceContractsCell
let value = self.savedData[(indexPath.row)]
let valueMapped = Mapper<ServiceContract>().map(String(value))
cell?.descriptionText.text = valueMapped?.description
return cell!
}
func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool
{
return false
}
func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath)
{
self.tableView?.deleteRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.Top)
}
func tableView(tableView: UITableView, editingStyleForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCellEditingStyle
{
return (UITableViewCellEditingStyle.Delete)
}
func tableView(tableView: UITableView, canMoveRowAtIndexPath indexPath: NSIndexPath) -> Bool
{
return true
}
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath)
{
print("row = %d",indexPath.row)
}
}
提前致谢。
修改 我不能在viewDidLoad()中使用reloadData()和self.tableView.delegate / datasource
答案 0 :(得分:0)
在你的Alamo电话下,将主要关闭更新为:
}.main {
self.myIndicator.stopAnimating()
self.tableView.reloadData()
}
答案 1 :(得分:0)
在评论中,您提到如果您尝试重新加载数据,则会出现nil异常。确保您的tableView已连接到您的IBOutlet。然后确保在viewDidLoad中有此功能。
tableView.delegate = self
tableView.dataSource = self
之后,您应该可以致电
tableView.reloadData()
来自主线程
答案 2 :(得分:0)
所有UI更新都应该只在主线程中,您能否请拨打下面的tableView.reloadData()
dispatch_async(dispatch_get_main_queue()) { () -> Void in
self.tableView.reloadData()
}