私はこれを理解しようとして約3週間を費やしました。表示するセクションタイトルを取得できますが、JSONデータは表示されません。ファイルに含まれている標準の「配列」を実行すると、その配列が表示されます。TableViewがJSONデータを読み込んでいないSwift 4
私はそこにすべてのヒントとトリックをたどり、私は立ち往生しています。
これはAnyObjectとStringと何か関係があると思いますが、何か不足しています。以下のコードを参照してください:
import UIKit
import Alamofire
import SwiftyJSON
class UserTableViewCell: UITableViewCell {
@IBOutlet weak var userFirstname: UILabel!
@IBOutlet weak var userLastname: UILabel!
}
class Profile2VC: UITableViewController {
@IBOutlet var userTable: UITableView!
var usertitles = ["First Name", "Last Name", "Email", "Mobile Number"]
var userinfo = [[String:AnyObject]]() //Array of dictionary
override func viewDidLoad() {
super.viewDidLoad()
let defaultValues = UserDefaults.standard
let URL_USER_LOGIN = "https://www.myapp.com/myphp.php"
let userid = "13"
let parameters: Parameters=["id":coolid]
Alamofire.request(URL_USER_LOGIN, method: .get, parameters:
parameters).responseJSON { (responseData) -> Void in
if((responseData.result.value) != nil) {
let swiftyJsonVar = JSON(responseData.result.value!)
print(swiftyJsonVar)
if let userData = swiftyJsonVar["user"].arrayObject {
self.userinfo = userData as! [[String:AnyObject]]
//debugPrint(userData)
}
if self.userinfo.count > 0 {
self.userTable.reloadData()
}
}
}
self.userTable.reloadData()
// Uncomment the following line to preserve selection between
presentations
// self.clearsSelectionOnViewWillAppear = false
// Uncomment the following line to display an Edit button in the
navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem
}
// MARK: - Table view data source
override func numberOfSections(in tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return 1
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection
section: Int) -> Int {
// #warning Incomplete implementation, return the number of rows
return userinfo.count
}
override func tableView(_ tableView: UITableView, titleForHeaderInSection
section: Int) -> String? {
return "Section \(section)"
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath:
IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "LabelCell",
for: indexPath) as! UserTableViewCell
//let userTitles = usertitles[indexPath.row]
let userInfo = userinfo[indexPath.row]
cell.userFirstname?.text = userInfo["first_name"] as? String
cell.userLastname?.text = userInfo["last_name"] as? String
//cell.imageView?.image = UIImage(named: fruitName)
//cell.textLabel?.text = usertitles[indexPath.row]
return cell
}
}
あなたが外で、要求クロージャ内のデータをリロードする必要はありません。また、メインキューにリロードをディスパッチする必要があるかもしれません。 – Paulw11
レポオーバーgithubを共有します。これを見てください。 –
@MauricioChirino NDAの守秘義務のためにできません。私はちょうどここにこのコードを投稿することができます。 – Greg