ashishkakkad.com
Create Simple Table (UITableView) in Swift Language iOS8 - Ashish Kakkad
Here is simple tutorial to create table (UITableView) in Swift Language – iOS 8 – Xcode 6 Attach your UITableView IBOutlet to .swift file [code language=”obj-c”] @IBOutlet var tblSwift : UITableView = nil [/code] Delegate UITableViewDelegate and UITableViewDataSource to your Controller [code language=”obj-c”] class ViewController: UIViewController,UITableViewDelegate, UITableViewDataSource { … } [/code] Don’t forgot to add ... Read more
Ashish Kakkad