Swift SwiftUI Text At iOSDevUK in 2022, Natalia Panferova (Nil Coalesing) presented the talk Mysteries of SwiftUI Text View. The talk is available on YouTube. It is a great talk that covers a lot of topics for SwiftUI Text views, including use of localised strings for rich text and markdown display as well
Swift Configuring JSONEncoder output in Swift When using JSONEncoder with a Codable object in Swift, you may have slashes in one of the data values, e.g. a URL. This article shows how you can modify the default format for the slashes. The following code shows a way to use JSONEncoder to produce a JSON string
iOS Linking to iOS Settings iOS Apps use settings as one way to hold different values that can be used to configure the use of an application. The Settings are provided centrally and are accessed through the Settings app from Apple. As of iOS 8, there is a way to open the Settings app linked
iOS Accessing the Document directory on iOS The Documents directory in which an App can store information that should be available at a future point. It can be used to store documents of any data type. One challenge can be the way that you refer to the location of the Documents directory in your App's