vote up 0 vote down star
1

I'm trying to disable scrolling for a UIWebView and the only way i found is using this way:

#import <objc/runtime.h>

id scroller = [[Webview subviews] lastObject];
int count;
Method *method = class_copyMethodList([scroller class], &count);
int i;
for (i=0; i<count; i++) {
    if (strcmp(method_getName(method[i]), "setScrollingEnabled:") == 0)
        break;
}
IMP test = method_getImplementation(method[i]);
test(scroller, @selector(setScrollingEnabled:), NO);

Is this considered to be an illegal way of using the iPhone SDK? Can this cause my application to be rejected for the App store?

flag

3 Answers

vote up 3 vote down

wouldn't it be a lot simpler to do this:

if ([scroller respondsToSelector: @selector(setScrollingEnabled:)]) [scroller setScrollingEnabled: NO]

This avoids any of the potential method calls they might scan your binary for (not sure how they verify 'legality'). It's still not 100% kosher, but definitely safer.

link|flag
vote up 0 vote down

Well, maybe they think you did it another way, like take the contents of an offscreen UIWebView and displayed it in a plain UIIMage view, or take the HTML content of a page restrict its size and render it in a UIWebView.

link|flag
vote up 1 vote down

It might be questionable, but not a cause for rejection as long as you have a fallback behavior when/if the method can not be found. There are worse abuses that have passed.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.