I am using Swift 1.1 and I am bridging the classes.
- (NSInteger)mmSpreadsheetRow {
return self.section
}
The section above generates an error such as:
Property 'section' not found on object of type NSIndexPath
- (NSInteger)mmSpreadsheetColumn {
return self.row;
}
The section above generates an error such as:
Property 'row' not found on object of type NSIndexPath