|
You are here |
eisel.me | ||
| | | | |
whackylabs.com
|
|
| | | | | I very recently learned it the hard way that objc selectors can not be async. | |
| | | | |
ashishkakkad.com
|
|
| | | | | In Objective-C we are using a header file to create constant variables like as [code lang="obj-c"] // Objective-C #define APP_ALERT_TITLE "Objective-C Constant" [/code] Swift has new syntax to define the constant (#define) [code lang="obj-c"] // Swift let APP_ALERT_TITLE = "Swift Constants" [/code] Lets try Create a swift file with the constants [code lang="obj-c"] import Foundation ... Read more | |
| | | | |
sintraworks.github.io
|
|
| | | | | Continuing on our previous post, let's create some observable controls, and a view controller that observes another view controller. | |
| | | | |
williamboles.com
|
|
| | | UIAlertController alerts form the backbone of a lot of the interactions between our users and our apps. While there have been some changes to alerts over the years, very little has changed about their appearance or our ability to customise that appearance - this causes for app designers pain ?? | ||