This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add gesture recognizer to UIWebView: | |
UITapGestureRecognizer *tapCatcher = [[UITapGestureRecognizer alloc] init]; | |
[tapCatcher setNumberOfTapsRequired:1]; | |
[tapCatcher setNumberOfTouchesRequired:1]; | |
[tapCatcher setDelegate:self]; | |
[tapCatcher addTarget:self action:@selector(didTapOnView)]; | |
[self.webView addGestureRecognizer:tapCatcher]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var page = require('webpage').create(), | |
address, output, size; | |
if (phantom.args.length < 2 || phantom.args.length > 3) { | |
console.log('Usage: rasterize.js URL filename'); | |
phantom.exit(); | |
} else { | |
address = phantom.args[0]; | |
output = phantom.args[1]; | |
page.viewportSize = { width: 1280, height: 1024 }; |