I would greatly appreciate it someone could help me with the syntax for calling super
to get the UITableViewCell
from within func tableView (tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!)
. This is a static table.
override func tableView (tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {
// The Objective-C code is: UITableViewCell *cell = [super tableView:tableView cellForRowAtIndexPath:indexPath];
var cell = super.??
}
I have tried and tried, but cannot seem to get the correct syntax for doing this. Thanks in advance.
var cell = super.tableView(tableView, cellForRowAt: indexPath)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With