Skip to content

Instantly share code, notes, and snippets.

@mxswd
Created August 19, 2013 12:52
Show Gist options
  • Save mxswd/6268799 to your computer and use it in GitHub Desktop.
Save mxswd/6268799 to your computer and use it in GitHub Desktop.
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://google.com"]];
[self.webView loadRequest:request];
bool __block inRac = false;
[RACObserve(self, webView.scrollView.contentSize)
subscribeNext:^(id x) {
if (!inRac) {
inRac = true;
self.webView.scrollView.contentSize = CGSizeMake(self.webView.frame.size.width, self.webView.scrollView.contentSize.height);
inRac = false;
}
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment