You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
I am using Swift 1.1 and I am bridging the classes.
return self.section
}
The section above generates an error such as:
Property 'section' not found on object of type NSIndexPath
return self.row;
}
The section above generates an error such as:
Property 'row' not found on object of type NSIndexPath
The text was updated successfully, but these errors were encountered: