Display your SwiftyJSON data on an expandable list view. The view itself is not a UITableView subclass, everything is created with UIStackViews, so it's not memory friendly for big json files. I created it for debugging my json data in a quick and dirty way. Contributions are welcomed for making it better!
pod 'JSONTableView'- Create an instance of 
JSONTableVieweither programmaticaly or in your storyboard. 
@IBOutlet weak var tableView: JSONTableView?- Pass a SwiftyJSON's 
JSONtype data object to your JSONTableView instance'sdataproperty and callreloadData() 
let data = JSON(...)
tableView?.data = data
tableView?.reloadData()- You may expand/collapse all possible expandable cells with
 
tableView?.expandAll()
tableView?.collapseAll()