MVCパターンを使用しようとしていて、Alamofire APIを使用してjsonデータとして応答を取得しました。モデルからテーブルビューを更新するためのデータを送信できません。json値でテーブルを更新してください。modelの(json)値をView Controllerに送信するにはどうすればよいですか?
これは私のAPIです:
class func showData(completionHandler:(model)->()){
var arrRes = [[String:AnyObject]]()
Alamofire.request(.GET, "http://api.androidhive.info/contacts/").responseJSON { (req, res, json) -> Void in
let swiftyJsonVar = JSON(json.value!)
if let resData = swiftyJsonVar["contacts"].arrayObject {
arrRes = resData as! [[String:AnyObject]]
print(arrRes)
if arrRes.count > 0 {
let name = swiftyJsonVar["contacts"]["name"].stringValue
let email = swiftyJsonVar["contacts"]["email"].stringValue
let detail = model(name: name, email: email)
completionHandler(detail)
}
}
}
}
これは私のコントローラです:
@IBOutlet var appsTableView: UITableView!
var tableData:[model] = [model]()
override func viewDidLoad() {
super.viewDidLoad()
self.appsTableView.reloadData()
self.appsTableView.backgroundColor = UIColor.orangeColor()
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = appsTableView.dequeueReusableCellWithIdentifier("MyTestCell") as! newTabelcell
let dict = self.tableData[indexPath.row]
cell.name.text = dict.name
cell.mailid.text = dict.email
return cell
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return tableData.count
}
func configureTableView() {
appsTableView.rowHeight = UITableViewAutomaticDimension
appsTableView.estimatedRowHeight = 100.0
self.appsTableView.reloadData()
}
これは私のモデルである:
class model: NSObject {
var name:String!
var email:String!
init(name:String , email:String){
super.init()
self.name = name
self.email = email
}
}
私はテーブルビューを持っていますし、2つのラベルがありますjsonの名前を表示するラベルとjsonの電子メールを表示するラベル。