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
In Objective-C a method's parameter can be used to return information. This information could be anything from error info to an array of objects. Because of the complexity of the translation system, using a Go type to return this information will probably not work. I suggest a new rule be implemented in the generator that prevents the translation of an Objective-C type to a Go type when the parameter is a pointer to a pointer.
Examples of methods that would be effected by this new rule:
In Objective-C a method's parameter can be used to return information. This information could be anything from error info to an array of objects. Because of the complexity of the translation system, using a Go type to return this information will probably not work. I suggest a new rule be implemented in the generator that prevents the translation of an Objective-C type to a Go type when the parameter is a pointer to a pointer.
Examples of methods that would be effected by this new rule:
The text was updated successfully, but these errors were encountered: