Has Apple blocked Method Swizzling in iOS 5?
I was doing a little playing around and discovered that an app with Method Swizzling works on iOS 4 but not on iOS 5.
NOTE: The app works on iOS 5 but not the part when Method Swizzling is used.
|
Has Apple blocked Method Swizzling in iOS 5? I was doing a little playing around and discovered that an app with Method Swizzling works on iOS 4 but not on iOS 5. NOTE: The app works on iOS 5 but not the part when Method Swizzling is used. |
|||||||
|
|
Apple sent an email a while ago to some devs that were found to be using method swizzling in App Store apps:
Looks like they wanted to get rid of it, so I'd say chances are pretty high that they've now blocked it completely. |
|||||||||||||||||||||
|
|
UPDATE: (My App uses this method and is in the appstore) Method swizzling seems to be working as of May 30, 2012. this is my implementation. (This is for those of you looking around and finding bad code on wiki pages and just want a quick implementation.) Swizz.h
Swizz.m
I built this to allow me to intercept the reuseIdentifier on the UITableViewCell with a UITableViewCell extension. Here is that example. UITableViewCell+ReuseIdentifier.h
UITableViewCell+ReuseIdentifier.m
As you can see, the ActivateAutoSwizz() as well as my swizzInit method both use dispatch_once to execute the swizzle once.
If you execute it twice. it reverses your method switch back to original. I hope this helps some of you iOS devs out there. NOTE: I have determined that +(void) load is called once at app start and is a wonderful place to achieve the method swizzle. Unfortunately in some dev situations +(void)load is not called, You may want to test your app to make sure these methods are being called. |
||||
|
|
|
Well, we received the OK about a mont hago (beggining of May 2012) for an app that made a lot of use of method Swizzling to customize standard UI components in iOS4 (iOS5 using appearance). Besides, method swizzling is a fully documented API that also gives very powerful features not related to Apple itself or the use of private APIs. I find it difficult to believe that they could reject such a thing! Anyway, please, keep everyone informed if you see more rejections related to this! Thanks! |
|||
|
|