NSString *jsString = [[NSString alloc] initWithFormat:@"document.getElementsByTagName('body')[0].style.webkitTextSizeAdjust= '150%'"];
[self.wkWebView evaluateJavaScript:jsString completionHandler:^(id Nullable result, NSError * Nullable error) { }];
I have executed above line of codes, Its was not working on iPad with iOS 13 above version. But The same line of codes are working good on iPhone device with any iOS versions.
Can I Know that, why it's not working on iPad devices with iOS 13.1 and above.
Please clarify this issue as soon as possible and suggest us any other alternative way to achieve this requirement.
[self.wkWebView evaluateJavaScript:jsString completionHandler:^(id Nullable result, NSError * Nullable error) { }];
I have executed above line of codes, Its was not working on iPad with iOS 13 above version. But The same line of codes are working good on iPhone device with any iOS versions.
Can I Know that, why it's not working on iPad devices with iOS 13.1 and above.
Please clarify this issue as soon as possible and suggest us any other alternative way to achieve this requirement.