- void *(*CGImageReadCreateWithFile)(NSString *, int);
- msset(CGImageReadCreateWithFile, image, "_CGImageReadCreateWithFile");
- MSHookFunction(CGImageReadCreateWithFile, MSHake(CGImageReadCreateWithFile));
+ void *(*CGImageReadCreateWithFile)(NSString *, int) = NULL;
+ if (kCFCoreFoundationVersionNumber > 700) // XXX: iOS 6.x
+ CGImageReadCreateWithFile = NULL;
+ else {
+ msset(CGImageReadCreateWithFile, image, "_CGImageReadCreateWithFile");
+ MSHookFunction(CGImageReadCreateWithFile, MSHake(CGImageReadCreateWithFile));
+ }