Created
May 4, 2020 05:49
-
-
Save akshitzaveri/a0191cd2a73287fc07d0a4b0c19d9feb to your computer and use it in GitHub Desktop.
This file contains hidden or 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: 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