Explore >> Select a destination


You are here

www.jessesquires.com
| | benoitpasquier.com
3.9 parsecs away

Travel
| | 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.
| | ashishkakkad.com
3.0 parsecs away

Travel
| | 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
| | whackylabs.com
2.7 parsecs away

Travel
| | I very recently learned it the hard way that objc selectors can not be async.
| | tayfunkayhan.wordpress.com
31.3 parsecs away

Travel
| Code for this part can be found here. Go 3D! InPart I: Hello, Triangle!, we rendered a two-dimensional triangle defined in normalized device coordinates-space [-1, 1] directly. As simple as they can get, it was already perfect for projecting to our two-dimensional screen. Before we get into adding a third dimension to our virtual world,...