get()関数の結果をtableviewに取得しようとしています。この関数の中の結果はHttp投稿から来ます。だから私はnsmutableurlなどを使用しています。私はデータを取得することができますnは、私の出力コンソールで見ることができ、今私のtableviewにしたい。これどうやってするの?Swift:UITableViewを生成する方法
私はこのコードを持っています。データをフェッチすることができました(出力コンソールで見ることができます)、これらのデータをテーブルビューにロードしようとしています。このデータをテーブルの中でどのように渡すことができますか?
func get(){
let request = NSMutableURLRequest(URL: NSURL(string: "http://myurl/somefile.php")!)
request.HTTPMethod = "POST"
let postString = "id=\(cate_Id)"
request.HTTPBody = postString.dataUsingEncoding(NSUTF8StringEncoding)
let task = NSURLSession.sharedSession().dataTaskWithRequest(request) { data, response, error in
guard error == nil && data != nil else { // check for fundamental networking error
print("error=\(error)")
return
}
if let httpStatus = response as? NSHTTPURLResponse where httpStatus.statusCode != 200 { // check for http errors
print("statusCode should be 200, but is \(httpStatus.statusCode)")
print("response = \(response)")
}
let responseString = String(data: data!, encoding: NSUTF8StringEncoding)
print("responseString = \(responseString)")
}
task.resume()
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
i need the count of the rows here
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
land want to display the data inside each cell
}