Post

Replies

Boosts

Views

Activity

Reply to Guideline 4.3(a) - Design - Spam
Guideline 4.3 is pretty explicit: Don’t create multiple Bundle IDs of the same app. If your app has different versions for specific locations, sports teams, universities, etc., consider submitting a single app and provide the variations using in-app purchase. That seem to be precisely your case. Another thought: I don't know if it is the cause, but there is a Babbel app to train for foreign languages. The name of your app appears pretty close to it.
Jul ’25
Reply to Change Developer Forum Username
If they told you that you cannot do it yourself, why do they advise to ask on the forum ? Did they tell you that it required advanced skills that you don't think you have ? But in documentation: https://developer.apple.com/support/forums-privacy/ it says: You will not be able to change your display user name once created. Only a forum manager can do it. See details in this thread: https://developer.apple.com/forums/thread/780832 -> Send an email to support, with a reference to this thread 780832 and ask them if they could do the same for you. May be they talked of Apple Support Community forum ? If so, see this thread: https://discussions.apple.com/thread/255005381?sortBy=rank
Topic: Community SubTopic: Apple Developers Tags:
Jul ’25
Reply to Repeated Rejections Under Guideline 4.1 “Copycats” – No Specific Feedback from App Review
All content is now original (graphics, UI, icons, name, etc.) Do you mean it was not in earlier submissions ?   The same version was already approved on Google Play That's never been an argument for Appstore approval. They have their own rules which may be stricter than other platform's.   We've removed anything that could even theoretically be misinterpreted as copycat content Could you detail ?, That may have caused previous rejections.   the app “appears to misrepresent itself,” That's what you have to understand. How do you describe the app ? What you can do is attach those comments in the notes to reviewer for a new submission. That may help, unless there is effectively something reviewers have found that violates guideline 4.1.
Jul ’25
Reply to Multi-Selection List : changing Binding Array to Binding Set and back again
I tested the code in Xcode 16.4. I can select colors (but only one by one). It seems to work So could you explicit very clearly what the problem is (are) ? With more details than a single sentence.   buttons on Loader don't update the list on the screen for one Could you explain (possibly with some screenshots) ?   dealing with deleting choices that are in use - how does picker deal with them? Same question: Could you explain (possibly with some screenshots) ? Could you show where set / array is an issue in your code ?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jul ’25
Reply to "The compiler is unable to type-check this expression..."
Is it something new to Xcode 26 or are you using Xcode 16 ? You're right, that's a pretty common issue with SwiftUI and the pain is that there is not hint where the "error" precisely is. That's intrinsic to how SwiftUI works (it is not a compile error but a run time error). In some cases, just adding an element in an addition can cause the problem. I do not usually break it up. A common issue is with arithmetic expressions: always make sure that the type of each value is explicit. To localise the error, I go by dichotomy. I comment out half of the suspect part of code. If it works, problem is likely form the commented out. Otherwise, I comment half of the remaining part, and so on until I get to a single line.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jul ’25