top of page
Search

Swift (Day 1) - Ecosystem, Language Primitives, Resources

  • Writer: John Montroy
    John Montroy
  • Oct 28, 2024
  • 2 min read

I wanna make an app. iOS for starters (it's what my friend and I have). Have several ideas, have friends with several ideas. Wanna blog about the process, so here we go.


  • Ecosystem: XCode + Swift + SwiftUI.

    • XCode is a nice IDE so far - a lot of shortcuts map over from my IntelliJ experience, and the auto-compiling preview functionality + different compilation targets has been smooth and transparent.

    • I'm not gonna mess with UIKit at all.

    • I'm sad that Android uses Kotlin, I wanted to learn Kotlin. But both ecosystems are fairly locked, what with Android being a Kotlin + Jetpack Compose world.

    • Cross-platform builds seem crippled by the usual suspects - lack of investment from the native platforms, complex access and abstraction to native primitives, native performance greatly exceeding cross-platform, etc. Options include Dart + Flutter (also from Google), and Kotlin Multiplatform. For now, I'll stick to the native platforms.

  • Language Primitives: Swift has a lot of them! This is a really "feature-rich" language - I'm gonna miss Go. Some ones that have stuck out:

  • Learning: good resources so far.

curl -o apps.json "https://raw.githubusercontent.com/dkhamsing/open-source-ios-apps/refs/heads/master/contents.json"

jq '.projects | map(select((.tags | index("swiftui")) and .stars != null)) | sort_by(-.stars)' apps.json > filtered_apps.json

Lots to learn and do! Let's see how this goes.

Comments


bottom of page