I am declaring an action for UIButton in myviewcontroller.h file like this
- (IBAction)loginClicked:(id)sender;
but I can see warning like Pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_unspecified)
.
How can I resolve this issue?
thanks