I am currently making an app that works in conjunction with a school intranet. This intranet uses NTLM authentication but does not work in the app. My code for opening the url in the webview is: - (void)viewDidLoad {
[super viewDidLoad];
NSString *fullURL = @"http://web1.sydneytech-h.schools.nsw.edu.au";
NSURL *url = [NSURL URLWithString:fullURL];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[_SchoolWebsite loadRequest:requestObj];
Please Help Thanks!