我在swift中處理請求和響應相當新。這是我堅持使用的代碼。我從dataArray中獲取webservice的值,但不在tableview中加載。請有人幫忙。沒有從Web服務獲取UITableView中的數據
import UIKit
import Foundation
import Alamofire
import SwiftyJSON
class AddOnsViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
@IBOutlet weak var tableView: UITableView!
var dataArray = [AnyObject]()
var addOnsURL = "http://econstrademosite.com/food_delivery/?****************"
override func viewDidLoad() {
super.viewDidLoad()
self.automaticallyAdjustsScrollViewInsets = false
self.tableView.reloadData()
callData()
}
@IBAction func goBackToHome(sender: UIBarButtonItem){
let vc = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "base") as! SWRevealViewController
self.present(vc, animated: true, completion: nil)
}
func callData(){
Alamofire.request(addOnsURL).responseJSON { response in
let result = response.result
if let dict = result.value as? Dictionary<String, AnyObject>{
if let innerDict = dict["data"]?["result"]{
self.dataArray = innerDict as! [AnyObject]
print(self.dataArray)
}
}
}
}
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
print(dataArray.count)
return dataArray.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! exampleTableViewCell
let itemName = dataArray[indexPath.row]["item_name"]
cell.label.text! = itemName as! String
return cell
}
}
我認爲ü需要重新加載在您的要求關閉表視圖。 – koropok
@koropok你對了 –
是的..非常感謝..它工作..需要重新加載請求關閉.. –