Posts

Post not yet marked as solved
0 Replies
1.2k Views
Hello, I have used WKWebview inside my tableview cell and given constraint inside my xib file. I am loading html text in webview which i get from server side in api and i have taken webview height constraint property for update height on did finish delegate method. It's not working proper and not giving proper height and on scroll every-time it's rendering with different height. My requirement is i want to display math equations and html content on webview with dynamic height of cell. I have done research and tried everything but it's not working. I am using below code for update webview height. func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) {     webView.evaluateJavaScript("document.readyState", completionHandler: { (ready, error) in       if ready != nil {         DispatchQueue.main.asyncAfter(deadline: .now()) {           webView.evaluateJavaScript("document.body.scrollHeight") { [weak self] (result, _) in             guard let self = self, let result = result as? Double else { return }             self.webViewHeightConstraint.constant = CGFloat(result)             self.webView.updateConstraints()            }         }       }     })   }     Please help me to solve this issue. Thank you
Posted
by hitler48.
Last updated
.
Post not yet marked as solved
0 Replies
467 Views
I am not able to run my old project with in new macbook air m1 chip. In project have firebase crashlytics and I am getting error of that firebase file not found when runing my project on real device. Before that i was faced same issue for simulator and i have solve that now it's working on simulator but not working on real device. Please help me ASAP. Because i am not able to check my application and not able to upload my new version on apple store.
Posted
by hitler48.
Last updated
.
Post not yet marked as solved
1 Replies
681 Views
I have uploaded build on test flight on itunesconnect and it's showing in testflight tab under all builds sections but it's not showing inside app store connect users section for internal testers. Build is uploaded successfully and it's showing testing green status inside testflight tab but in test flight app that build is not coming. please help me ASAP.
Posted
by hitler48.
Last updated
.