What do the $ and _ mean in SwiftUI?


Hey Reader,

If you’ve been diving into SwiftUI (or even just peeking under the hood), you’ve probably noticed two special symbols: $ and _. These appear everywhere—from property wrappers to function closure parameters—and they can be confusing at first.

Here’s how they generally work:

  1. $ indicates a binding
    If you have @State var name, then $name connects that state to the UI so changes are automatically reflected.
  2. _ in Closures and Functions
    When you don’t need a parameter, you can replace it with _. For example, onTapGesture { _ in ... } ignores an incoming argument you’re not using.
  3. _ with Property Wrappers (@State or @StateObject) Sometimes, you’ll see something like var _count when using @State var count = 0. That underscore lets you access the underlying stored property directly (though you’ll rarely do this in everyday SwiftUI, it can be useful for custom behaviors).

Check Out the Video

I’ve put together a quick YouTube video walking through exactly when to use $ and _ in Swift and SwiftUI, with common examples. If you’ve ever had that “Wait, what does that do?” moment, this video will clear things up!

Click to Watch: What do the $ and _ mean in SwiftUI?

Office Hours-Style Content

This video is the kind of Q&A you can expect in my iPhone Apps 101 office hours. Students bring real coding questions—from bindings—and we dive into practical details so you can start shipping apps faster (and with fewer headaches).

Want to MAKE iPhone Apps?

If you’re ready to master SwiftUI and Swift—without feeling overwhelmed by random tutorials—consider enrolling in iPhone Apps 101. You’ll get:

  1. A structured step-by-step curriculum.
  2. Frequent live office hours (like the Q&A above).
  3. A supportive community to help you tackle challenges.

Grab your spot here:
Join iPhone Apps 101

The $50 EARLYBIRD2024 discount disappears at midnight on December 31st. Make sure you join before the cutoff.

Feel free to reply with any questions—or even a snippet of code you’re stuck on. I’m here to help you understand Swift’s quirks and get you closer to launching your own iPhone apps.

Talk soon,
Paul Solt
Paul@SuperEasyApps.com

P.S. Have a question? Ask me, and maybe I can make a video to help you understand.

Super Easy Apps Weekly - Paul Solt

Join 5,712+ developers learning iPhone app development and App Store publishing. Every week, I share iOS tips on how to create polished, intuitive apps—backed by insights from shipping seven apps and working at GoPro, Apple, and Microsoft.

Read more from Super Easy Apps Weekly - Paul Solt
photo

Hey Reader, I just saw this post from Mario—who makes Astro for App Store keyword research (ASO). Mario 🏴☠️ @xmarioapps Just a reminder that you can make money with simple 1 page app. Just draw a page in Canva and turn it into app 4:21 AM • Apr 2, 2025 1 Retweets 59 Likes Read 10 replies What's stopping you from working on your app idea? Checkout Mario's latest app that stylizes photos with AI.Happy coding! Paul SoltPaul@SuperEasyApps.com

SwiftUI Animations Not Working? Try This Simple Fix!

Hey Reader, Yesterday I streamed for 4 hours and got stuck trying to get to the bottom of an issue with implicit animations. One line of code was causing the problem... Which lines of code are creating implicit animations? When it comes to animations in SwiftUI ... they're great until they don't work like you expect. SwiftUI Animation Glitches Watch my latest video and learn how to better control implicit animations on state changes. SwiftUI Animation Bugs? Here's How I Fixed Them! I did this...

video preview

Hey Reader, Struggling with pesky bugs in Swift? You’re not alone—debugging can feel tough, especially when you’re just getting started (or as an experienced developer). Watch: Xcode 16 Debugging Tutorial for Beginners (2025) In this beginner-friendly tutorial, I’ll walk you through simple, effective debugging techniques in Xcode 16 to quickly identify and squash bugs with a real world example. You’ll learn how to: Track down a bug in a complex app (SwiftData) Leverage Xcode’s built-in...