Post

Replies

Boosts

Views

Activity

Reply to iPhone not charging via cable, only Magsafe
As you can charge with Magsafe, you're safe. In such a case, I would not pay $200 for a repair that will probably not solve anything. Did the problem occur just after installing 27.3ß ? If so, you could: return to a stable iOS wait for the next release of iOS Then you'll see if it's a hardware issue. Of course, you should file a bug report.
2w
Reply to Typical App Review time for a first-time app submission?
@Deniz, welcome to the forum.   is review running 7 days a week Yes. I have submitted (revisions) several times these last months and got validation even on Sunday.   For an app that requires sign-in, is it common for review to take a little longer since the reviewer has to log in and test? Likely. if you browse the forum, you'll notice that some (many?) developers are reporting first time submission to take longer than in the past (due to the number of AI generated apps ?). So it is not totally specific to your app. But it should take a only few days before you get accepted or receive feedback.
2w
Reply to How to send a message from menu item in SwiftUI App to ContentView
Problème comes from, not from command. @State public var contentView = ContentView() I have tested this very simple code to show: struct ContentView: View { public func importTerms() { print("\(showFileImporter)") showFileImporter = true print("\(showFileImporter)") } var body: some View { Button("Test") { importTerms() } } } struct ContentView2: View { @State private var content = ContentView() var body: some View { Button("Test2") { content.importTerms() } } } If I call ContentView(), and tap "Test", I get the correct result. false true But If I call ContentView2(), and tap "Test2", I get the wrong result, var is not changed. false false My guess is that with this declaration of state var ContentView, you create 2 instances, and there is a confusion in the showFileImporter state var at system level. you update var for instance2 which is ignored by the system which uses instance1 (in print). Someone more expert in SwiftUI may provide more accurate explanation. You could use environment variables for showFileImporter and remove the contentView state var to solve the issue. Note: in Swift, you don't need to end statements with semicolon.
Topic: UI Frameworks SubTopic: SwiftUI
3w
Reply to What is happening with the Apple App Review process?
Jumping into the discussion, I have performed about 10 submissions in the last 2 weeks. They all went expeditely, with approval in less than 24 hours. Pretty good, isn't it ? @Etresoft, This is a developer support forum. … it's become a venue for complaining about App Review. unfortunately, I agree with you. The forum is turning to a useless kind of Wailing Wall.   The rumours are that it's the same inside Apple due to AI slop Will we see the day where reviews are billed, as a way to limit the flow of AI app submissions.
3w
Reply to What's Wrong with Apple Review?
But I wonder why they don't just ask instead of jumping to a conclusion? They often reject the app for simple reasons these days. And they are often wrong. They have no time to do it. And it looks like the reviewer puts himself in a basic user shoes.He will not read any user manual but checks if the UI is straightforward. Visibly he did not feel so. So he may not be wrong but just a bit exacting. Remember also that if a user gets confused for 10 seconds with an app, he will just discard it. So it is your best interest to make it as easy to understand as possible. For this, IMHO, @darkpaw, is right.
Jul ’26
Reply to Open Sourcing Legacy file systems (such as HFS)?
I asked a related question a few years ago and got a valuable answer from Quinn. Discouraging to use Fuse. If that may help. https://developer.apple.com/forums/thread/768957 I profit of this thread for a wider comment. There are several cases of apps or devices that ran on MacOS 7 or 8 which were really valuable but are progressively getting lost. That's the case of HFS disks content, but also for apps like Hypercard. Would be really great to be able to revive them "as is" on MacOS 26.
Topic: App & System Services SubTopic: Core OS Tags:
Jul ’26
Reply to App Stuck in "Waiting for Review"
You seem to be unlucky. You have posted tens of posts for this exact same issue. But you never closed any thread to indicate when finally the review was completed. You should've.
Replies
Boosts
Views
Activity
2w
Reply to iPhone not charging via cable, only Magsafe
As you can charge with Magsafe, you're safe. In such a case, I would not pay $200 for a repair that will probably not solve anything. Did the problem occur just after installing 27.3ß ? If so, you could: return to a stable iOS wait for the next release of iOS Then you'll see if it's a hardware issue. Of course, you should file a bug report.
Replies
Boosts
Views
Activity
2w
Reply to Typical App Review time for a first-time app submission?
@Deniz, welcome to the forum.   is review running 7 days a week Yes. I have submitted (revisions) several times these last months and got validation even on Sunday.   For an app that requires sign-in, is it common for review to take a little longer since the reviewer has to log in and test? Likely. if you browse the forum, you'll notice that some (many?) developers are reporting first time submission to take longer than in the past (due to the number of AI generated apps ?). So it is not totally specific to your app. But it should take a only few days before you get accepted or receive feedback.
Replies
Boosts
Views
Activity
2w
Reply to How to send a message from menu item in SwiftUI App to ContentView
Pretty sure this will be the last SwiftUI app I'll ever write. Never say never… 😉 Why didn't you start directly with Appkit of UIKit ? I personally have mixed feelings about SwiftUI, because, for the sake of apparent simplicity, it forces sometimes into convoluted solutions. IMHO, SwiftUI is great for rapid prototyping, but I do not use it for complex apps.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
2w
Reply to How to know gender of system voice
I've searched extensively but could not find how to. So I use a workaround: I test gender for each supported language (out of app) and use this information to adapt to the app selected language. But not sure that will be robust over time.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
3w
Reply to Assinei o programa e minha conta continua Pendente/não ativada
Bem-vindo ao fórum. Não é necessário abrir vários tickets junto do suporte técnico. Isso não vai acelerar o processo. É possível que, devido ao 4 de julho, os pedidos se tenham acumulado um pouco. Enquanto espera (logicamente, não deverá demorar muito) para poder submeter as suas aplicações, pode utilizar o Xcode e continuar a desenvolver.
Replies
Boosts
Views
Activity
3w
Reply to How to send a message from menu item in SwiftUI App to ContentView
Problème comes from, not from command. @State public var contentView = ContentView() I have tested this very simple code to show: struct ContentView: View { public func importTerms() { print("\(showFileImporter)") showFileImporter = true print("\(showFileImporter)") } var body: some View { Button("Test") { importTerms() } } } struct ContentView2: View { @State private var content = ContentView() var body: some View { Button("Test2") { content.importTerms() } } } If I call ContentView(), and tap "Test", I get the correct result. false true But If I call ContentView2(), and tap "Test2", I get the wrong result, var is not changed. false false My guess is that with this declaration of state var ContentView, you create 2 instances, and there is a confusion in the showFileImporter state var at system level. you update var for instance2 which is ignored by the system which uses instance1 (in print). Someone more expert in SwiftUI may provide more accurate explanation. You could use environment variables for showFileImporter and remove the contentView state var to solve the issue. Note: in Swift, you don't need to end statements with semicolon.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
3w
Reply to preferredLanguages incorrectly read in iOS 26.1 simulators ?
Problème does not show on iOS 26.2 simulator. So looks like it was a temporary bug that has been rapidly corrected…
Replies
Boosts
Views
Activity
3w
Reply to What is happening with the Apple App Review process?
Jumping into the discussion, I have performed about 10 submissions in the last 2 weeks. They all went expeditely, with approval in less than 24 hours. Pretty good, isn't it ? @Etresoft, This is a developer support forum. … it's become a venue for complaining about App Review. unfortunately, I agree with you. The forum is turning to a useless kind of Wailing Wall.   The rumours are that it's the same inside Apple due to AI slop Will we see the day where reviews are billed, as a way to limit the flow of AI app submissions.
Replies
Boosts
Views
Activity
3w
Reply to What's Wrong with Apple Review?
But I wonder why they don't just ask instead of jumping to a conclusion? They often reject the app for simple reasons these days. And they are often wrong. They have no time to do it. And it looks like the reviewer puts himself in a basic user shoes.He will not read any user manual but checks if the UI is straightforward. Visibly he did not feel so. So he may not be wrong but just a bit exacting. Remember also that if a user gets confused for 10 seconds with an app, he will just discard it. So it is your best interest to make it as easy to understand as possible. For this, IMHO, @darkpaw, is right.
Replies
Boosts
Views
Activity
Jul ’26
Reply to 4th Sabotage
When I receive similar message, it is immediately followed by another one stating that Your app, XXXXXXX, is "Ready for Distribution". Did you receive it ?
Replies
Boosts
Views
Activity
Jul ’26
Reply to Open Sourcing Legacy file systems (such as HFS)?
I asked a related question a few years ago and got a valuable answer from Quinn. Discouraging to use Fuse. If that may help. https://developer.apple.com/forums/thread/768957 I profit of this thread for a wider comment. There are several cases of apps or devices that ran on MacOS 7 or 8 which were really valuable but are progressively getting lost. That's the case of HFS disks content, but also for apps like Hypercard. Would be really great to be able to revive them "as is" on MacOS 26.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’26
Reply to Emoji rotated variation
Thanks for taking the time to reply. Unfortunately, that seems to apply only not "normal" characters.
Topic: Design SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’26
Reply to App stuck in Ready for Distribution - not released after 3 days
As of June 28, I searched on the appstore (in France) and think I found it (developer: Lucian-Stefan Lacatus) If so, please don't forget to close the thread by marking the correct answer. I noticed something a bit surprising: app language is indicated as English only, but all the information about the app are in Romanian.
Replies
Boosts
Views
Activity
Jun ’26
Reply to Ready for Distribution
deleted -- too old OP.
Replies
Boosts
Views
Activity
Jun ’26