Post

Replies

Boosts

Views

Activity

Reply to Building a bidirectional, infinitely scrolling list using ScrollView - challenges and potential solutions
Loads data up/down on the fly as the user scrolls Preserves scroll velocity as the list is updated Those may be conflicting requirements, depending where you load data from. If it is from the network, you don't control the response time. Hence, how do you expect to keep the same scrolling velocity, whatever solution ? Unless you preload data, but you say you want to load 'on the fly'.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Sep ’25
Reply to What happened to CMD-Option-Click?
I don't know if I speak of the same thing. -Cmd-Option-click on a class name as NSWindow or UIWindow, or a protocol as UIApplicationDelegate. this should open the class or the protocol in a second pane. Is it what you mean ? If so, I tested both in Xcode 16.4 and 26ß7. It works as described in both.
Sep ’25
Reply to Spam Design
Looks like you have created the conditions for a mess. Reviewer has no time to check all the details and probably rejects because of uncertainty. You may call support, but not sure they can do anything for you. Note: your post is not clear. Approved or not ? they approved app 2 after a while they suddenly approved app2. Note: you have sent 2 posts on the same question, with more information in the other. And advice from reviewer that you should follow. You should not duplicate posts.
Sep ’25
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 Building a bidirectional, infinitely scrolling list using ScrollView - challenges and potential solutions
Loads data up/down on the fly as the user scrolls Preserves scroll velocity as the list is updated Those may be conflicting requirements, depending where you load data from. If it is from the network, you don't control the response time. Hence, how do you expect to keep the same scrolling velocity, whatever solution ? Unless you preload data, but you say you want to load 'on the fly'.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’25
Reply to What happened to CMD-Option-Click?
It works as in Xcode 16.4. And settings are by default the same: Xcode 16.4: Xcode 26ß7
Replies
Boosts
Views
Activity
Sep ’25
Reply to What happened to CMD-Option-Click?
I don't know if I speak of the same thing. -Cmd-Option-click on a class name as NSWindow or UIWindow, or a protocol as UIApplicationDelegate. this should open the class or the protocol in a second pane. Is it what you mean ? If so, I tested both in Xcode 16.4 and 26ß7. It works as described in both.
Replies
Boosts
Views
Activity
Sep ’25
Reply to Our app is rejected
I iunderstand the first 4 paragraphs are Apple's review mail? If so, The answer is in your post: You can contact the U.S. Department of the Treasury or the Bureau of Industry and Security of the U.S. Department of Commerce
Replies
Boosts
Views
Activity
Sep ’25
Reply to Spam Design
Looks like you have created the conditions for a mess. Reviewer has no time to check all the details and probably rejects because of uncertainty. You may call support, but not sure they can do anything for you. Note: your post is not clear. Approved or not ? they approved app 2 after a while they suddenly approved app2. Note: you have sent 2 posts on the same question, with more information in the other. And advice from reviewer that you should follow. You should not duplicate posts.
Replies
Boosts
Views
Activity
Sep ’25
Reply to Resizing text to fit available space
Did you try with monospaced font, just to see. If it works, that confirms that the cause is that string width is not exactly proportional to font size.
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Sep ’25
Reply to Resizing text to fit available space
You're right. I need to go and test in code. I'll check what is the new text width with the new size and see if you need an extra adjustment (because string with may not be exactly proportional to font width).
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Sep ’25
Reply to Resizing text to fit available space
I don't know if that answers, but I would: considering present font size is actualSize and windowWidth are pastWidth and newWidth let newSize = text.size(withAttributes: actualSize) * newWidth / pastWidth change font size to newSize
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Sep ’25
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:
Replies
Boosts
Views
Activity
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).
Replies
Boosts
Views
Activity
Sep ’25
Reply to Can I Update App Store Screenshots & Text Without Submitting a New Build?
Confirm. But is is so easy to submit a new version with "small bug fixes". There are always.   we’d like to avoid a situation where a feature update gets delayed or rejected due to issues in the metadata. What's the risk ? As long as the new version is not approved, the old one remains available.
Replies
Boosts
Views
Activity
Sep ’25
Reply to How to remove app from app store without access to original account
Welcome to the forum. You may try to contact support, but I fear the only option is to let the app die. This is logical. Imagine if someone which is not the app owner (through its account) could remove apps from the AppStore … If I remember correctly, when there is no update during 3 years, it is automatically removed from the appstore.
Replies
Boosts
Views
Activity
Sep ’25
Reply to TextEditor Problem Or Me?
Tested with Xcode 16.4 both on iOS 26 simulator and iOS 18.4. Also tested a run on Mac. Works without problem. In addition to Clean Build Folder, you may reboot.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Sep ’25
Reply to Battery drain public beta 5 of ios 26 on Iphone 16 Pro
Unfortunately, that's not a question for the developers' forum. You'd better ask to support community: https://discussions.apple.com/welcome
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
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
Replies
Boosts
Views
Activity
Aug ’25