Concept ของ การใช้ Delegate ของ Control ต่างๆ
ถ้าเรามี Control ต่าง ๆ ซึ่งก็จะมี Class ของมันอยู่แล้ว ซึ่งใน Class ก็มี propety และ method ที่จะทำงานตามเป้าหมายของ class อยู่แล้ว ตัวอย่างเช่น Table View ซึ่งเป็นแสดงผลตารางของข้อมูลต่าง ๆ แต่เราต้องการให้ตารางนั้นแสดงผล ตามรูปแบบที่เราอยากให้เป็น เราก็เพียงแค่มอบหมายรูปแบบการแสดงผลที่เราต้องการโยนไปให้ delegate ซึ่งสิ่งที่โยนไปให้ก็จะเป็น method ของการแสดงผล จากนั้น Class table View ก็จะใช้การแสดงผลของเราไปทำงานแทน เป็นต้นโดยในการเขียนโค๊ดก็จะทำ 4 สิ่งดังนี้
1.ต้องสืบทอด Protocal ที่ใช้ในการติดต่อสื่อสาร ในที่นี้คือ "NSTableViewDelegate" , "NSTableViewDataSource"
ViewController.swift
import Cocoa class ViewController: NSViewController , NSTableViewDelegate , NSTableViewDataSource{ override func viewDidLoad() { super.viewDidLoad() } }
2.สร้างตัว Instance ของ Class Control นั้น ๆ ในที่นี้คือ tableView
ViewController.swift
import Cocoa class ViewController: NSViewController , NSTableViewDelegate , NSTableViewDataSource{ @IBOutlet weak var tableView: NSTableView! override func viewDidLoad() { super.viewDidLoad() } }
3.สิ่งที่เราต้องการโยนไปให้ ในที่นี้คือ
- ฟังก์ชัน numberOfRows(...) ในโปรโตคอล NSTableViewDataSource กับ
- ฟังก์ชัน tableView(...) ในโปรโตคอล NSTableViewDelegate ที่เราต้องการให้แสดงผล
ViewController.swift
import Cocoa class ViewController: NSViewController , NSTableViewDelegate , NSTableViewDataSource{ var sites = [SiteHost]() struct SiteHost:Decodable{ var id:String="" var name:String="" var url:String="" var description:String="" var logo_path:String="" } func numberOfRows(in tableView: NSTableView) -> Int { return self.sites.count } func tableView(_ tableView: NSTableView, viewFor tableColumn: NSTableColumn?, row: Int) -> NSView? { let item = self.sites[row] if let cell = tableView.makeView(withIdentifier: NSUserInterfaceItemIdentifier("informSiteCellID"), owner: nil) as? SiteViewCell { cell.siteName.stringValue = item.name cell.siteUrl.stringValue = item.url if(String(item.logo_path)==""){ cell.logoImage.image=NSImage(named:NSImage.Name("nopic")) }else{ cell.logoImage.image=NSImage(byReferencing:URL(string:item.logo_path)!) } return cell } return nil } @IBOutlet weak var tableView: NSTableView! override func viewDidLoad() { super.viewDidLoad() } }
4.บอกว่าจะเอา method นั้นจากที่ไหน ในที่นี้คือ self หมายถึง ViewController นั่นเอง
ViewController.swift
import Cocoa class ViewController: NSViewController , NSTableViewDelegate , NSTableViewDataSource{ //ตามข้างบน @IBOutlet weak var tableView: NSTableView! override func viewDidLoad() { super.viewDidLoad() tableView.delegate = self } }