Skip to content

Instantly share code, notes, and snippets.

View tangent405's full-sized avatar

Stephen Decker tangent405

  • Hazel Health
  • San Francisco
View GitHub Profile
- (void)viewDidLoad {
[super viewDidLoad];
NSString *path = [[NSBundle mainBundle] pathForResource:@"myhypeapp" ofType:@"html"];
NSURL *url = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[self.webView loadRequest:request];
[self.webView setScalesPageToFit:YES];
[self.webView.scrollView setBounces:NO];