I'm unfamiliar with Objective C.
I'm using a private framework and need to be able to change one of the properties from within my Swift code.
The property is declared in Objective C this way:
@property (nonatomic, assign) BOOL *isSSNField;
in swift I am trying to change the value of the property this way:
myClass.isSSNField = true
I am getting this error
Cannot assign a value of type 'Bool' to a value of type 'UnsafeMutablePointer<ObjcBool>'
I'm not sure where to go from here, or why I'm getting this error at all