Myślę, że to dość proste pytanie. Mam oddzielone moje UITableView źródeł delegat/dane do własnych rozszerzeńPrzekazanie UITableView za pomocą rozszerzeń swift
//MARK: - UITableView Data Source/Delegate
extension TweetsViewController: UITableViewDataSource {
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 0
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("Cell") as! TweetCell
return cell
}
}
Jednak w kontrolerze widoku sama muszę ustawić pełnomocnikowi tblView
class TweetsViewController : UIViewController {
@IBOutlet weak var tblView: UITableView!
var fetchedResultsController : NSFetchedResultsController!
//MARK: View Management
override func viewDidLoad() {
super.viewDidLoad()
tblView.dataSource = self
}
}
Jednakże, ponieważ widok jest kontroler ani zgodne z protokołami, ale posiadające rozszerzenia obsługują je, a następnie w jaki sposób jawnie ustawić źródło danych i delegować do tableView? Dzięki!