Skip to content

Instantly share code, notes, and snippets.

@kitkimwong
kitkimwong / RJViewController.m
Created January 23, 2017 16:28 — forked from rabinjoshi/RJViewController.m
Loading content in a WebView using NSURLConnection
@implementation RJViewController {
__weak IBOutlet UIWebView *_webView;
NSURLConnection *_urlConnection;
NSMutableData *_receivedData;
}
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *urlString = @"http://google.com";