Skip to content

Instantly share code, notes, and snippets.

View Carigna's full-sized avatar

Carigna Oy Carigna

View GitHub Profile
@Carigna
Carigna / disable zoom
Created November 3, 2009 18:13
Disable zoom on iphone webview
-(UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
NSSet *touches = [event allTouches];
BOOL forwardToSuper = YES;
for (UITouch *touch in touches) {
if ([touch tapCount] >= 2) {
// prevent this
forwardToSuper = NO;
}
}
if (forwardToSuper){