MMSpreadsheetView icon indicating copy to clipboard operation
MMSpreadsheetView copied to clipboard

NSIndexPath+MMSpreadsheetView.h and m

Open reembyparada opened this issue 10 years ago • 1 comments

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

reembyparada avatar Jul 30 '15 20:07 reembyparada

You may need to include UITableView.h since it has the NSIndexPath (UITableView) category this category uses.

jeffla avatar Aug 04 '15 02:08 jeffla