I need to test for the availability of blocks at runtime, so I can handle backwards compatibility with iOS 3. Any tips?
edit:
So far I'm doing if (!NSClassFromString(@"NSBlockOperation")) {...}
Seems to be working...
|
I need to test for the availability of blocks at runtime, so I can handle backwards compatibility with iOS 3. Any tips? edit:
So far I'm doing |
||||
|
|
|
You will also need to make sure to weak link the A good overview on how to deal with iOS versioning issues can also be found in this this Cocoa with Love article: Tips & Tricks for conditional iOS3, iOS3.2 and iOS4 code |
|||||
|