正在加载视频...

视频加载失败

Have you ever created a SwiftUI binding using the Binding(get:set:) initializer? If so, you may want to reconsider. To understand why, check out our newest episode clip where we show how this initializer makes it difficult for SwiftUI to track where the binding came from.

21,720 次观看 • 1 年前 •via X (Twitter)

9 条评论

Point-Free 的头像
Point-Free1 年前

For a high-quality version of this clip:

glueckkanja 的头像
glueckkanja4 年前

Are you searching for a simple way to deploy device certificates with #Intune? Check out SCEPman at

George Elsham 的头像
George Elsham1 年前

Really interesting, thank you! Never thought about this but it makes sense. This is another reason why SwiftUI should be open source—to make debugging issues like this easier.

Petr Šíma 的头像
Petr Šíma1 年前

This is great info! I never knew Binding(get:set:) is forbidden fruit, I'll need to reevaluate a lot of what Im doing. But... Won't you get further trouble if flag changes? Screenshot should be self-explanatory, lmk what you think.

Point-Free 的头像
Point-Free1 年前

Sorry, I'm not sure what you are demonstrating with the screenshot. The logs printed shouldn't be surprising. The first equality should be false because the data used to derive the key path has changed. And the second equality should be true because it's the exact same key path.

S 的头像
S1 年前

when do you recommend using subscript over a func?

Point-Free 的头像
Point-Free1 年前

If you need a key path, which is the case for deriving bindings, then you must use a subscript because only subscripts get key paths. Methods do not.

phil | 🇨🇭 👨🏼‍💻📱 | 🏳️‍🌈 的头像
phil | 🇨🇭 👨🏼‍💻📱 | 🏳️‍🌈1 年前

Does this also apply to Bindings created with that initializer that, for example, are computed var‘s on the View or some Observable object? Or only to those „ad-hoc“ ones inside a view body?

Point-Free 的头像
Point-Free1 年前

Yes, ideally you wouldn't use that initializer if possible. You may not be running into any of the possible problems right now, but there's always the chance in the future things could get a little whacky.

相关视频