Hi,
I’ve seen that you could hide fields from Backendless for Android but is there an equivalent for iOS ? (Obj-C and/or Swift).
Thanks !
Hi,
I’ve seen that you could hide fields from Backendless for Android but is there an equivalent for iOS ? (Obj-C and/or Swift).
Thanks !
Hi David,
Objective-C: you need to declare a variable in class implementation (in the .m) file. For example:
@interface Person () {
NSString *SSN;
}
@end
Swift:
user private field declaration:
class Person : NSObject {
private var SSN : NSString?
var name: NSString?
}
Thanks for the fast answer, I didn’t thought about using a private variable.