On Nov 11, 2011, at 6:22 PM, Wim Lewis wrote: > int get_float_data(float *result1, float *result2) > { > NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; > @try { > [objcCode call]; > *result1 = [more stuff]; > etc.; > } @catch { > fprintf(stderr, "omg doomed!\n"); > etc.; > } @finally { > [pool drain]; > } > > return blahblah; > }
Wow, I didn't realize how integrated C and Objc are, that you could employ Objc code from a C function. Kewl. Okay, does this mean that an object instantiated by a C function has persistence across C function calls? In the example above you have: [objcCode call]; I'm guessing I would have to have: ObjcCode *objcCode; declared globally in the library, and that would suffice? Thanks! _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com