The Provisioning Profile Crash Course – Part 4

03. May 2022 Tools, Xcode 0
The previous posts from this series are Part1, Part2 and Part3. Profile management Just to summarize the dependency graph for the different type of provisioning profiles here is the graph: The Developer Profile depends on / consist the following Team identifiers, Developer certificates, Devices, Entitlements/capabilities, which is also part of the Identifier, Apple Certificates. The Distribution Profile ...

Provisioning Profile Crash Course – Part 3

26. April 2022 Tools, Xcode 0
The previous posts from this series are Part1 and Part2. Let start with the most important question: Why we need a provisioning profile?  The short answer is: Because we want to run our shiny new app on a physical device.   So, if you never ever want to run your ode on a physical device, ...

Provisioning Profile Crash Course – Part 2

15. April 2022 Tools, Xcode 0
In the first part of this course I went through the first preparation steps in order to create the provisioning profile, namely that how to create the different certificates, and also how to add the devices that you own. In this post we will get into another important ingredients of “cooking” of the provisioning profiles: ...

Swift enum range matching

I have been recently working on a HealthKit related app, where I wanted to categorise the blood pressure data. If you are not familiar with this data, here is a little explanation: Measuring Blood pressure Blood pressure build up from 2 numbers: the systolic value and the diastolic value. The valid value ranges for systolic ...

Failed to code sign ContentView.swift – SwiftUI

11. June 2019 Swift, Xcode 3
Unfortunately if you want to leverage/play/enjoy the new SwiftUI hot reload capabilities, then you need to update your beloved macOS Mojave to Catalina alongside with the Xcode 11 beta. Ok, so let’s image you can’t wait to download the macOS Catalina Beta (6GB) on your existing system with macOS Mojave and Xcode 10. Getting some ...

Learn Swift on your iPhone: Unwrap

21. August 2018 Beginner, Swift 0
Ok, I have already mentioned how to get access to a machine from your web browser, which runs Swift. There is also a good resource from Paul Hudson, who is the author of a dozen of Swift books. Paul decided to write an iOS app, called Unwrap where you can learn the basics of Swift. ...