Post

Replies

Boosts

Views

Activity

Reply to Resizing text to fit available space
Could the problem be in the approximation when using fractional font size ? Did you try using func size(withAttributes attrs: [NSAttributedString.Key : Any]? = nil) -> CGSize and adapt the size to fit window width ? Some more details here: https://stackoverflow.com/questions/1324379/how-to-calculate-the-width-of-a-text-string-of-a-specific-font-and-font-size
Topic: UI Frameworks SubTopic: AppKit Tags:
Sep ’25
Reply to Time To Launch App
timeline is from app submission to Apple publishing in the app store. By experience, typically between 4 hours and 1 day. Delays are longer if there is an issue and app is initially rejected. However, as you can read on this forum, some developers experience long delays (usually because of a submission problem which may require call to support).
Sep ’25
Reply to SwiftUI TextField with optional value working for @State but not @Binding properties
Have a look here: https://www.appypievibe.ai/blog/working-with-binding-in-swiftui#:~:text=In%20SwiftUI%2C%20you%20can%20create,and%20also%20stores%20its%20value or here: https://stackoverflow.com/questions/59247183/swiftui-state-vs-binding Binding does not cause the View to update the body, which State does. So, it's normal it is nor updated. You can see that boundValue is not updated by adding onSubmit: TextField("Bound value", value: $boundValue, format: .number) .onSubmit { print("Textfield submitted", boundValue) }
Topic: UI Frameworks SubTopic: SwiftUI
Aug ’25
Reply to SwiftUI TextField with optional value working for @State but not @Binding properties
May be I missed something of your intent. Why using a Binding here ? That means ContentView is called from another view with a Sate var ? Otherwise, it is a misuse of Binding. I changed to this, which works. struct ContentView: View { @State var boundValue: Double? @State private var stateValue: Double? = 55 var body: some View { CallTextField(boundValue: $boundValue) // TextField("Bound value", value: $boundValue, format: .number) Text("\(boundValue ?? .nan)") TextField("State value", value: $stateValue, format: .number) Text("\(stateValue ?? .nan)") } } struct CallTextField: View { @Binding var boundValue: Double? var body: some View { TextField("Bound value", value: $boundValue, format: .number) } }
Topic: UI Frameworks SubTopic: SwiftUI
Aug ’25
Reply to Bottom Tile Icon Text
Welcome to the forum.   bottom navigation tile when it cannot be localized Why can't it be localized ? Could you give more details as well as screenshot ?   Will the app be acceptable from a publishing point of view? Do you mean Appstore review point of view ? I do not see any reason here for rejection.
Aug ’25
Reply to Xcode 26 SDK/Simulator Download Issue: (-67061 invalid signature (code or signature have been modified)
I've noticed a point when installing ß7. When I installed ß6 and was asked to download iOS, WatchOS… simulators. Which I did. I kept ß6 installed and downloaded ß7 I was not asked to download simulators they are available in ß7 Does it give a hint to a workaround ? Even though I noticed you had the problem with ß6. uninstall ß7 download and install ß6: are you asked to download simulators ? install ß7. In anycase you should contact support and file a bug report.
Aug ’25