-
Animated Emoji on the Apple Watch
I love the animated emoji on the apple watch. However I didn’t talk about it when I did the text input video for The Apple watchOS 4 App Development Essential Training, so here’s my chance to correct that. There’s some good news and bad news about implementation of this fun feature. The good news is…
-
Tip: Update an Old App
You’ve probably had it happen to you. You find a project on GitHub in Swift 3 you want to look at or update. You might have an old project Apple is urging you to update or kick out of the app store.. There were a few changes in Swift 4 and Xcode 9 that make…
-
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…