Skip to content

Instantly share code, notes, and snippets.

@akshitzaveri
Created May 4, 2020 05:49
Show Gist options
  • Save akshitzaveri/a0191cd2a73287fc07d0a4b0c19d9feb to your computer and use it in GitHub Desktop.
Save akshitzaveri/a0191cd2a73287fc07d0a4b0c19d9feb to your computer and use it in GitHub Desktop.
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var tableView: UITableView!
private var adapter: TableViewAdapter!
override func viewDidLoad() {
super.viewDidLoad()
self.adapter = TableViewAdapter(tableView: self.tableView)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment