The project running on iOS9 needs to be configured in the Info.plist file to include the following information,
APP Transport Security Settings
Allow arbitrary Loads = YES
<key>NSAppTransportSecurity</key><dict> <key>NSAllowsArbitraryLoads</key> <true/></dict>
Set useragent (user agent)
Registration Agent Otherwise click menu does not interact, currently supports 9.0+
[Self.yoursite setValue:@ "mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.3; trident/7.0;. net4.0e;. NET4.0C)" forkey:@"applicationnameforuseragent"];
This can be set on iOS9, but only on iOS 9 or more
Registration Agent Otherwise click menu does not interact, currently supports 9.0+
if ([[[[Uidevice Currentdevice] systemversion] @ "9.0"] ) { @" mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.3; trident/7.0;. net4.0e;. NET4.0C)"; }
IOS Wkwebview iOS9 does not display with settings useragent (user agent)