Post

Replies

Boosts

Views

Activity

Reply to Apps design
Nah. Not gonna happen, but if you do want to suggest it as a feature, raise a Feedback report here: https://www.apple.com/feedback/
Topic: Design SubTopic: General
Jul ’24
Reply to Folder-level search option in Notes app
These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. These forums are NOT where Apple's actual developers chat about stuff, or takes feature requests. You should raise a Feedback report here: https://www.apple.com/feedback/
Topic: Community SubTopic: Apple Developers Tags:
Jul ’24
Reply to Music displaying in Apple Watch SE
Break this down a little for us: What is "auto launch"? And where are you turning it off? Where is music being displayed on your Watch, and when? Why would turning off something called "auto launch" stop Music being displayed somewhere on a Watch? These two things don't seem related. Also... These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. These forums are NOT where Apple's actual developers chat about stuff. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. Thanks.
Jul ’24
Reply to Crash on TextField
Have you raised a Feedback report? If not, please do so at https://www.apple.com/feedback/ then post the FB number here. In all cases, you must raise the bug first, then you can, if you like, inform us on here, but we're just third-party developers like you. We have no input into when Apple deal with issues, and the best way to let Apple know there's an issue is to tell Apple about it by raising a Feedback report.
Topic: UI Frameworks SubTopic: UIKit
Jul ’24
Reply to ViewDidLoad in SwiftUI
If you don't want to use .task as recommended by the Apple employee before me, then you might want to implement something like an .onFirstAppear so it's only executed once. Something like this should work: private struct OnFirstAppear: ViewModifier { let perform: () -> Void @State private var firstTime = true func body(content: Content) -> some View { content.onAppear { if firstTime { firstTime = false perform() } } } } extension View { func onFirstAppear(perform: @escaping () -> Void) -> some View { modifier(OnFirstAppear(perform: perform)) } } Use it as you would use .onAppear.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jul ’24
Reply to Bug temps d’écran iOS 18
Il y a un problème avec ScreenTime dans iOS 18 bêta. Veuillez créer un rapport de commentaires ici https://www.apple.com/feedback/, puis publier le numéro FB ici.
Replies
Boosts
Views
Activity
Jul ’24
Reply to iPhone Screentime feature makes little sense
You could always ask a friend to set your passcode, then you can't bypass it. You know, like parents would set the code on their childrens' devices. Oh, that's a valid use case, which is why it's there.
Replies
Boosts
Views
Activity
Jul ’24
Reply to [Recruiting] Join our community and become a tester for our new app!
The Developer Forums are not an appropriate place to recruit testers for your apps.
Replies
Boosts
Views
Activity
Jul ’24
Reply to Apps design
Nah. Not gonna happen, but if you do want to suggest it as a feature, raise a Feedback report here: https://www.apple.com/feedback/
Topic: Design SubTopic: General
Replies
Boosts
Views
Activity
Jul ’24
Reply to Phone not in a known location when using iOS 18 beta
Right, so it's not exactly what you posted in your initial question. It's really important to provide the correct information, or we're not going to be able to help you. Can you see whether your home is marked as a significant location/home? There should be a list of them somewhere in Settings.
Replies
Boosts
Views
Activity
Jul ’24
Reply to Display past temperature data for cities in Weather app
These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. These forums are NOT where Apple's actual developers chat about stuff, or takes feature requests. You should raise a Feedback report here: https://www.apple.com/feedback/
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to Enhance Weather app with Celsius/Fahrenheit conversion options and dual display
These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. These forums are NOT where Apple's actual developers chat about stuff, or takes feature requests. You should raise a Feedback report here: https://www.apple.com/feedback/
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to Folder-level search option in Notes app
These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. These forums are NOT where Apple's actual developers chat about stuff, or takes feature requests. You should raise a Feedback report here: https://www.apple.com/feedback/
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to Airpods Pro (first gen) will not connect to iPhone running on iOS 18 Beta 2
Have they ever connected to your phone? Did you see the connection dialog appear? Have you read the instructions in the AirPods Pro packaging that show you how to start pairing?
Replies
Boosts
Views
Activity
Jul ’24
Reply to Music displaying in Apple Watch SE
Break this down a little for us: What is "auto launch"? And where are you turning it off? Where is music being displayed on your Watch, and when? Why would turning off something called "auto launch" stop Music being displayed somewhere on a Watch? These two things don't seem related. Also... These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. These forums are NOT where Apple's actual developers chat about stuff. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. Thanks.
Replies
Boosts
Views
Activity
Jul ’24
Reply to iOS Crash on iOS 17.5.1
Have you tried debugging this in Xcode with your code? It's pretty difficult for us to figure out what's wrong while you sit there with the code...
Replies
Boosts
Views
Activity
Jul ’24
Reply to 5.5" Display Images wont submit
What is the actual error text you're receiving? You say it's a "dimension" error, but it's really important to know what the actual error is because it might be saying your images are too large or too small. If they're too large you can simply crop them. If they're too small you could pad them out a little.
Replies
Boosts
Views
Activity
Jul ’24
Reply to Phone not in a known location when using iOS 18 beta
Is your home a "new location"? I doubt it. What's the actual issue here?
Replies
Boosts
Views
Activity
Jul ’24
Reply to Crash on TextField
Have you raised a Feedback report? If not, please do so at https://www.apple.com/feedback/ then post the FB number here. In all cases, you must raise the bug first, then you can, if you like, inform us on here, but we're just third-party developers like you. We have no input into when Apple deal with issues, and the best way to let Apple know there's an issue is to tell Apple about it by raising a Feedback report.
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
Jul ’24
Reply to ViewDidLoad in SwiftUI
If you don't want to use .task as recommended by the Apple employee before me, then you might want to implement something like an .onFirstAppear so it's only executed once. Something like this should work: private struct OnFirstAppear: ViewModifier { let perform: () -> Void @State private var firstTime = true func body(content: Content) -> some View { content.onAppear { if firstTime { firstTime = false perform() } } } } extension View { func onFirstAppear(perform: @escaping () -> Void) -> some View { modifier(OnFirstAppear(perform: perform)) } } Use it as you would use .onAppear.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’24