Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The system preferences of Mac OS X have a option of magic track pad to just touch the track pad without actually press to do a click. It is called "Tap to Click". Is there a way to disable this functionality in my application?

I'm using XCode 4.5 and the project is a cocoa application. The Mac OS X is the Lion version.

share|improve this question
For ios, it works with these codes To disable touch [self.view setUserInteractionEnabled:NO]; To enable touch [self.view setUserInteractionEnabled:YES]; Kindly check whether this thing is available for Mac applications – Anoop Vaidya Nov 14 '12 at 10:31

1 Answer

for UIWebview ,to switch off the default contextual menu of UIWebView. This is easy because we only need to set the CSS property “-webkit-touch-callout” to “none” for the body element of the web page. We can do this using JavaScript in the UIWebView delegate method “webViewDidFinishLoad:”…

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
[webView stringByEvaluatingJavaScriptFromString:@"document.body.style.webkitTouchCallout='none';"];
}

for mac ..there should be something like this...not sure

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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