This is a sample code that parses the locally added JSON file and displays it in TableView.
It would be better to use SwiftyJson or something like that, but this time I wrote it without using it.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": [{ | |
"id": 0, | |
"name": "Apple" | |
}, | |
{ | |
"id": 1, | |
"name": "Water melon" | |
}, | |
{ | |
"id": 2, | |
"name": "Peach" | |
}, | |
{ | |
"id": 3, | |
"name": "Cherry" | |
}, | |
{ | |
"id": 4, | |
"name": "Grapes" | |
}, | |
{ | |
"id": 5, | |
"name": "Pear" | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class ViewController_20190128: UIViewController, UITableViewDelegate, UITableViewDataSource { | |
// tableview instance | |
private var tableView: UITableView! | |
// Item Struct | |
struct Item { | |
var id: Int | |
var name: String | |
} | |
// Array to display tableview | |
private var items: [Item] = [] | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
// parse json files | |
if let path = Bundle.main.path(forResource: "json_20190128", ofType: "json") { | |
do { | |
let data = try Data(contentsOf: URL(fileURLWithPath: path), options: .mappedIfSafe) | |
let jsonResult = try JSONSerialization.jsonObject(with: data, options: .mutableLeaves) | |
guard let json = jsonResult as? Dictionary<String, AnyObject>, let dics = json["data"] else { | |
return | |
} | |
let array = dics as! [Dictionary<String, AnyObject>] | |
for content in array { | |
let id = content["id"] as! Int | |
let name = content["name"] as! String | |
items.append(Item(id: id, name: name)) | |
} | |
} catch { | |
print("error") | |
} | |
} | |
// initialize tableview | |
tableView = UITableView() | |
// set delegate | |
tableView.delegate = self | |
tableView.dataSource = self | |
// set tableview size | |
tableView.frame = view.frame | |
// set tableview | |
tableView.register(UITableViewCell.self, forCellReuseIdentifier: NSStringFromClass(UITableViewCell.self)) | |
view.addSubview(tableView) | |
} | |
// MARK: tableview delegate methods | |
// set the number of rows | |
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { | |
return items.count | |
} | |
// set tableview rows | |
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { | |
let cell = tableView.dequeueReusableCell(withIdentifier: NSStringFromClass(UITableViewCell.self))! as UITableViewCell | |
cell.textLabel?.text = "\(items[indexPath.row].id): " + items[indexPath.row].name | |
return cell | |
} | |
// called when tableview cell was tapped | |
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { | |
print("\(indexPath.row) cell was selected") | |
} | |
} |