Since SwiftUI came out, the extremely useful List control, for creating scrolling, single column, table-style views has been backed under the hood by UITableView. While this probably made it simpler a…
As a budding mobile developer back in early 2012 working on my first app, everything about iOS was new and different from the .NET world with which I was familiar. Living in the Denver area at the tim…
Since writing about dealing with continuous integration and Apple Silicon as well as retrying failed tests, I've been thinking some more about iOS and Xcode test automation and would like to share som…
So like probably more than a few people, we jumped in and bought two of the new Apple silicon M1 Mac Mini's to replace a couple aging Intel-based build servers at work. Our old servers were running Je…
As developers we never want our tests to fail, but there are often real world cases, especially with UI and integration tests against actual API (as opposed to a stable mock API or static data), where…
Since way back in iOS 2.0, the venerable Formatter class and its derivations such as DateFormatter and NumberFormatter have been the go-to for converting values to and from strings. Over the years App…