Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Table View cellForRowAtIndexPath warning

I have updated my code to swift 3.0 and get a warning on the following line:

func tableView(_ tableView: UITableView, cellForRowAtIndexPath indexPath: IndexPath) -> UITableViewCell {

When I try each of the suggestions to either silence the warning with @nonobjc or make it a private function the table no longer loads.

The error reads:

Instance method 'tableView(:cellForRowAtIndexPath:)' nearly matches optional requirement 'tableView(:canFocusRowAt:)' of protocol 'UITableViewDelegate'

Does anyone know what causes this error and how to fix it?

Many thanks!

like image 828
MattBlack Avatar asked Jun 22 '16 13:06

MattBlack


2 Answers

Just add the declaration of implementing UITableViewDataSource protocol to the class definition like this:

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {}
like image 120
Steve Alston Avatar answered Oct 06 '22 13:10

Steve Alston


In swift 3.0 the signature for the datasource changed to:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell

Notice the difference between cellForRowAtIndexPath indexPath: IndexPath and cellForRowAt indexPath: IndexPath

I'm using the new method without any warnings, hope this will solve your problem.

Cheers.

like image 5
MAB Avatar answered Oct 06 '22 12:10

MAB