Posts

Post not yet marked as solved
3 Replies
Guys, did you try reloading the table view altogether? I used table view over a view controller and it worked for me.     func test_firstRow() {         let tableView = myViewController().tableView // Reload data         tableView?.reloadData()         let indexPath0 = IndexPath(item: 0, section: 0)         let cell0 = tableView!.cellForRow(at: indexPath0)         let visibleRows = tableView?.indexPathsForVisibleRows         XCTAssert(visibleRows != nil)         XCTAssertTrue(((tableView?.indexPathsForVisibleRows!.contains(indexPath0)) != nil))         XCTAssert(cell0 != nil)     }
Post not yet marked as solved
32 Replies
I've my four TestFlight users reporting 12 crashes but it's only showing one feedback with json only.  Devs can you please help us with a why?
Post not yet marked as solved
3 Replies
Add the following to your HTML - <header><meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no'></header> Alternatively, you can add this where you're reading the html string in your swift class. let headerString = "<header><meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no'></header>" webView.loadHTMLString(headerString + yourHTMLString, baseURL: nil)
Post not yet marked as solved
5 Replies
I am facing a similar issue where all the eight CPU cores are running with full capacity and the temperate exceeds 200℉. MacBook Pro (16-inch, 2019) macOS Catalina 10.15.6 Xcode 11.6 Using real iPhone Any suggestions will be appreciated.