You are here |
www.jessesquires.com | ||
| | | |
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 | |
| | | |
benoitpasquier.com
|
|
| | | | It's been almost two years that Combine has been introduced to the Apple developer community. As many developer, you want to migrate your codebase to it. You don't want to be left behind but you're not sure where to start, maybe not sure if you want to jump to SwiftUI either. Nothing to worry, let's see step by step how to migrate an iOS sample app using UIKit and RxSwift to Combine. | |
| | | |
swiftwithmajid.com
|
|
| | Button is one of the regularly used components in SwiftUI. We use buttons to allow users to produce actions. That's why it is so essential to generalize the look and feel of buttons in our apps. This week we will master buttons in SwiftUI. We will learn how to customize the look and feel of our buttons. |