Category: iOS Development Weekly Tips
-
Tip: Deep Dive into Any? Dictionaries
In many factory methods, you’ll find parameters with type Any? like this: userInfo parameters in iOS and context in watchOS use these. You can place anything there, but most often, you’ll use a dictionary of type [String:Any]. This is a great way of moving multiple values from one method to another without making a class…
-
Tip: Hex Colors
There’s lot of ways to represent colors. Crayons have names like Sea Green and Peach. I used these two colors since I’m color blind and they once got me in serious trouble when I was young. I and many with color blindness can’t tell them apart easily. Knowing some other identifying system is critical in describing…
-
Tip: Image Literals
iOS Development tips weekly is a series you can find at the Lynda.com and LinkedIn Learning libraries. The first week of a week’s tip will be available for free. After that, you will need a subscription to get access to it. Click the image at left to view. You’ll find an amended transcript below. You’ve…
-
Quick JSON Decoding
iOS Development tips weekly is a series you can find at the Lynda.com and LinkedIn Learning libraries. The first week of a week’s tip will be available to the public. After that, you will need a subscription to get access to it. Click the image the left to view. Usually you’ll find a transcript below.…
-
The Safe Area: Layout and iPhone X
iOS Development Tips Weekly is a series you can find at the Lynda.com and LinkedIn Learning libraries. You can find the start project here on GitHub iOS Developer’s Weekly: Layout and iPhone X With the introduction of the iPhone X, you get that full screen, but the notch gets in the way. To get around…