Jun 30 2017
A warning note about notifications sent by NSManagedObjectContext
I found this passage in the NSManagedObjectContext documentation, and shall heed the warning henceforth: do not simply observe all managedObjectContexts, observe only your own lest you catch system-wide notifications.
Jun 30 2017
Variable Types
1) Constants let myConstant: Int = 0 This is, of course, not a variable. This is a constant. One of the nice things about Swift constants is that let decideLater: Bool is perfectly legitimate, as long as it is set before initialisation has ended: Combined with init(somethingElse: String){ if somethingElse = “You’ll never guess” { […]
By Extelligent Cocoa • Wiki •