In Objective-C - (id) init indicates a constructor. We should have a constructor flag in the output.
We could also think about detecting it by type (id) and name (init*) to support initWithPropertyFoo(...) syntaxes which follow best practices. This would allow clients to generate code more intelligently.
In Objective-C
- (id) initindicates a constructor. We should have a constructor flag in the output.We could also think about detecting it by type (
id) and name (init*) to supportinitWithPropertyFoo(...)syntaxes which follow best practices. This would allow clients to generate code more intelligently.