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
I'm running the latest version incorporating the latest (really excellent) changes from #530. The Swift interfaces are all generated correctly from the Objective-C project, with one exception:
I'm running the latest version incorporating the latest (really excellent) changes from #530. The Swift interfaces are all generated correctly from the Objective-C project, with one exception:
An Objective-C interface such as:
-(void)enumerateObjectsUsingBlock:(void (^)(NSObject *obj, NSInteger idx, BOOL *stop))block;
Produces the following Swift:
func enumerateObjectsUsingBlock(block: ((NSObject!, Int, UnsafeMutablePointer
(it doesn't process the BOOL *stop)
whereas it should generate something like:
func enumerateObjectsUsingBlock(block: (NSObject!, Int, UnsafeMutablePointer<ObjCBool>) -> Void)
Thanks.
Jon
The text was updated successfully, but these errors were encountered: