I believe the @ is used only by the obj-c keywords and not the ones from C. So it'll be something more like this
@autoreleasepool{
for (int index = 0; index < 100; index++){
int error = [MyObject performSelector:@selector(addCoolFilterToImage:)];
if (error) {
return 32;
}
}
}
Comments
Well, I might be upset if this were true for all keywords.
I'm a bit dizzy looking at that code, let me sit down for a moment.I believe the @ is used only by the obj-c keywords and not the ones from C. So it'll be something more like this
Yeah, that was kind of my point.