You really shouldn't use anything called init: It would be an init method with one parameter, but did not explain what the parameter was. For instance:
- (instancetype) init:(NSString *)string;
That would always be the wrong name. The correct name will be:
- (instancetype) initWithName:(NSString *)string;
(or initWithTitle: or initWithSomeOtherThingButSomething:
Therefore, I would first look for init: and this should be easily fixed. If you donβt actually have methods with this name, this may be a bug in the Apple tool, and you will need to discuss this with Apple.
source share