Opens profile photo
Follow
Click to Follow zntfdr
Federico Zanetello
@zntfdr
Joined December 2010

Federico Zanetello’s Tweets

Pinned Tweet
Xcode is 30% smaller Builds are 25% faster 2x faster linking 4x faster notarization 30% faster tests ...and much more A massive THANK YOU to everyone involved! 👏🏻👏🏻👏🏻 #WWDC22
Quote Tweet
What's new in Xcode by @Jeehut #WWDC22 wwdcnotes.com/notes/wwdc22/1
2
399
I've saved the most painful one for last 😅: If Xcode has trouble connecting to your ⌚️, this (should) no longer prevent you from building and testing your app on your phone
Resolved an issue where an iOS device could become unavailable for development when the system can’t prepare a paired watch for development.
2
36
Show this thread
📚 Xcode 13.2b2 is a lightweight update for SwiftUI. We have tons of new TextField/SecureField initializers: all initializers with default parameters have now been split into initializers with and without those parameters.
from:
extension TextField where Label == Text {
  public init<S>(_ title: S, text: Binding<String>, prompt: Text? = nil) where S : StringProtocol
}

to:
extension TextField where Label == Text {
  public init<S>(_ title: S, text: Binding<String>, prompt: Text?) where S : StringProtocol
  public init<S>(_ title: S, text: Binding<String>) where S : StringProtocol
}
4
42
Show this thread
One of my favorite iOS components is the new widgets/App-Library search field. Unfortunately, it’s not exposed to 3rd party apps. Fortunately, we have SwiftUI:
Embedded video
0:25
3K views
4
104