MMSpreadsheetView
MMSpreadsheetView copied to clipboard
NSIndexPath+MMSpreadsheetView.h and m
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
You may need to include UITableView.h since it has the NSIndexPath (UITableView) category this category uses.