Explore >> Select a destination


You are here

blog.metaobject.com
| | atomicbird.com
6.3 parsecs away

Travel
| | In a previous post I wrote about How JSON compares to Apple property lists and the obstacles to converting data between them. That was a while ago but the post is still accurate, as far as it goes. But Swift changes the situation in some ways, so an update is in order. Recap: JSON vs. Property Lists The previous post was motivated by the problems some people encountered trying to download JSON from a server and then save it as a property list.
| | ashishkakkad.com
6.8 parsecs away

Travel
| | Codable is added with Xcode 9, iOS 11 and Swift 4. Codable is used to make your data types encodable and decodable for compatibility with external representations such as JSON. Codable use to support both encoding and decoding, declare conformance to Codable, which combines the Encodable and Decodable protocols. This process is known as making ... Read more
| | www.jviotti.com
7.5 parsecs away

Travel
| | This article explores how to write iOS applications with Objective-C without making use of traditional Storyboards
| | nilcoalescing.com
34.9 parsecs away

Travel
| SwiftUI offers several methods to change the color of text, including foregroundStyle() and tint() modifiers, AttributedString attributes, and the textRenderer() API for advanced styling.