I have a problem in loading in my web view This is my code:
NSString *urlString = @"https://www.google.com.eg";
// NSString *urlString = @"http://fatima.ibtdi.work";
NSURL *url = [NSURL URLWithString:urlString];
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
[_fatimaView loadRequest:urlRequest];}
It works on Google but doesn't work on the another link.
Looks like you need to add some App Transport Security Settings to your Info plist try this
Any HTTP loading in a web view will require adding the domain to these settings.