Post

Replies

Boosts

Views

Activity

Reply to Battery life
That's not a question for developers forum. You'd better post on Apple support community: https://discussions.apple.com/welcome And remember, that's a beta, so not necessarily optimised. Wait for the official release to check if the problem still there.
Topic: Community SubTopic: Apple Developers Tags:
Sep ’25
Reply to Unable to upload new build
Am I unable to upload a new build with changes to testflight before I resubmit those changes? Yes, you can upload a new build. But I accidentally removed the app for review, so I cannot respond to the changes they asked. What do I do now? That can effectively cause problems and block many processes. You may have to call support to try to clean it.
Sep ’25
Reply to Example default dialer project
it says "Cannot find type 'TelephonyConversationManager' in scope" and similar, despite importing LiveCommunicationKit. Could you show the code where you call and how you call. I tested this which compiles: import LiveCommunicationKit override func viewDidLoad() { super.viewDidLoad() if #available(iOS 26.0, *) { let manager = TelephonyConversationManager.sharedInstance } else { // Fallback on earlier versions } // … }
Topic: App & System Services SubTopic: General Tags:
Sep ’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:
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