2016-02-10 101 views
9

這是一個相當簡單的問題,我認爲。我已經分開我的UITableView委託/數據源到自己的擴展使用擴展的UITableView委託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 
    } 
} 

然而,在視圖控制器本身我需要設置tblView委託

class TweetsViewController : UIViewController { 

    @IBOutlet weak var tblView: UITableView! 


    var fetchedResultsController : NSFetchedResultsController! 

    //MARK: View Management 

    override func viewDidLoad() { 
     super.viewDidLoad() 

     tblView.dataSource = self 


    } 
} 

然而,由於該視圖控制器也不符合協議,但有擴展名處理它們,那麼我該如何顯式設置tableView的數據源和委託?謝謝!

回答

17

您可以分成一個分機,因爲您可以在apple documentation部分查看有關擴展處理協議的部分。

在這裏,我已經實現了你所要求的最小代碼,查看它。

import UIKit 


class TableViewViewController: UIViewController { 
    @IBOutlet weak var table: UITableView! 

    override func viewDidLoad() { 
     super.viewDidLoad() 
     table.delegate = self 
     table.dataSource = self 
    } 
} 

extension TableViewViewController: UITableViewDelegate,UITableViewDataSource { 

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { 
     let cell = tableView.dequeueReusableCellWithIdentifier("reuseIdentifier", forIndexPath: indexPath) 
     cell.textLabel!.text = "it works" 
     return cell 
    } 

    func numberOfSectionsInTableView(tableView: UITableView) -> Int { 
     return 1 
    } 

    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 
     return 1 
    } 
} 
3

「的視圖控制器也不符合協議,但具有擴展處理它們」

這是不正確。該擴展使視圖控制器符合協議,數據源和委託可以照常設置,例如:self.tableView.delegate = self

4

在Swift 3及更高版本中,表視圖數據源和委託方法已更改。

import UIKit 

class HomeViewController: UIViewController { 

    @IBOutlet var tblPropertyList: UITableView! 
    // MARK: - View Life Cycle 
    override func viewDidLoad() { 
    super.viewDidLoad() 
    // Do any additional setup after loading the view. 
    tblPropertyList.delegate = self 
    tblPropertyList.dataSource = self 
    } 

    override func didReceiveMemoryWarning() { 
    super.didReceiveMemoryWarning() 
    // Dispose of any resources that can be recreated. 
    } 
} 

// MARK: - Table View DataSource 
extension HomeViewController: UITableViewDataSource { 

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 
    let cell = tableView.dequeueReusableCell(withIdentifier: "reuseIdentifier", for: indexPath as IndexPath) 
    cell.textLabel!.text = "\(indexPath.row) - Its working" 
    return cell 
    } 

    func numberOfSectionsInTableView(tableView: UITableView) -> Int { 
    return 2 
    } 

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 
    return 2 
    } 
} 

// MARK: - Table View Delegate 
extension HomeViewController: UITableViewDelegate { 

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { 
    let indexPath = tableView.indexPathForSelectedRow 
    let currentCell = tableView.cellForRow(at: indexPath!)! 
    print(currentCell.textLabel!.text!) 

    } 
}