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
More specifically, I believe nullability annotation is not added for primitive accessors of optional, to-one relationships, leading to a mismatch with the corresponding property accessors.
Feature Request
Nullability annotations are not added for primitive setters, i.e.:
@property (nonatomic, strong, nullable) Foo *foo; - (void)setPrimitiveIncome:(Foo*)value;
Expected Behavior
Primitive setter should be generated with nullability annotation.
- (void)setPrimitiveFoo:(__nullable Foo*)value;
Actual Behavior
Nullability annotation is not being added to method declaration.
- (void)setPrimitiveIncome:(Foo*)value;
Additional Information
Mogenerator v1.31
The text was updated successfully, but these errors were encountered: