Post

Replies

Boosts

Views

Activity

Reply to Is it possible to automatically fill in header search paths in Xcode templates?
Yes you can add this as a SharedSetting inside your template and it will automatically be set for your newly created project: <key>Targets</key> <array> <dict> <key>SharedSettings</key> <dict> <key>HEADER_SEARCH_PATHS</key> <array> <string>/usr/local/include</string> <string>/usr/local/lib</string> </array> </dict> </dict> </array>
Replies
Boosts
Views
Activity
Jun ’24
Reply to Issue with State Persistence in Swift Testing @Suite
Thank you for the reply. It's exactly Go further with Swift Testing that I watched when I came across the .serialized option. I wrongly assumed it was for use cases like this where one was forced to run after the other in order to share state. Ok I will rewrite the @Test in this case to get used to Swift Testing way of dealing with instances of Suite types. Thanks
Replies
Boosts
Views
Activity
Jun ’24
Reply to TextField set behavior request
Thank you! This achieves what I was looking for. This modifier's name is not that intuitive though. 😋
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Jun ’24