Questions tagged [swift4.1]

Please utilize this specific tag for inquiries specifically pertaining to updates in version 4.1 of Apple's Swift programming language. For more general language questions, use the [swift] tag. Questions related to developing on Apple platforms can be tagged with [ios], [cocoa], [apple-watch], and so on.

Retrieving information from dictionary in swift version 4

Currently, I am utilizing an API and trying to display its data in a table view. import UIKit import Alamofire class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate { @IBOutlet weak var tableView: UITableView! @IBOu ...