Post

Replies

Boosts

Views

Activity

Reply to Uploading multiple apps.
Welcome to the forum. #1. No, there is no limit for the number of apps you publish on the appstore. But there are limits on how you upload: AFAIK, there is a limit for the number of apps uploaded in a certain period of time. Here they say 20 (but no official number): https://medium.com/@tranhuuphuc20051995/the-reality-behind-app-store-connect-has-a-limit-of-n-binary-uploads-per-day-90a85ed072fd forbidden to spam the Appstore with multiple variations of the same app (you risk account cancellation if you do so). Reaching the daily limit is hard and could lead to spam suspicion. More here: https://stackoverflow.com/questions/26462287/number-of-app-limit-on-appstore #2. What do you mean ? If you publish a new release, of course you can. Which means it has a new build and version numbers (incremented). If that answers your questions, don't forget to close the thread by marking the answer as correct. Otherwise, explain your question more in depth.
May ’25
Reply to The folding and unfolding effect of the NBA sand table
That's just my own analysis, not backed by any evidence… AFAIK, there is no such built in animation effect (but I'm not fluent in VisionOS). So my guess is that you have to rebuild programmatically. What I see, is the field is split in stripes (30 or 40). In each stripe, there are about 20 tiles, each with a specific orientation, higher at the border. So, to animate, you should have to compute at each step the orientation of each tile and draw it accordingly. Not very difficult but pretty tedious to fine tune. Good luck.
Topic: Spatial Computing SubTopic: General Tags:
May ’25
Reply to mağaza kalite kiti
Sorunuz nedir? Bu haliyle, gönderiniz forumda sadece gürültüden ibaret. What is your question ? As is, your post is just noise in the forum.
May ’25
Reply to User changes Settings for my app, any notification?
If you define UserDefaults that cover all the settings you have through System settings of the app and register defaults, that connects UserDefaults to Root.pList. UserDefaults.standard.register(defaults: defaults) Define a notification name extension Notification.Name { public static let kRefreshPrefs = Notification.Name("refreshPrefs") } Then, in AppDelegate, post notification when you enter foreground because you return from System Settings func applicationWillEnterForeground(_ application: UIApplication) { NotificationCenter.default.post(name: .kRefreshPrefs, object: self) } or do the same in SceneDelegate func sceneWillEnterForeground(_ scene: UIScene) { NotificationCenter.default.post(name: .kRefreshPrefs, object: self) } In ViewControllers when you need to know setting has changed, add an observer NotificationCenter.default.addObserver(self, selector: #selector(refreshUserPrefs), name: .kRefreshPrefs, object: nil) and do what you need to do in the selector
May ’25
Reply to Animation does not work with List, while works with ScrollView + ForEach
@Kopyl I tested with longer duration (3.0) and the difference is crystal clear. I have a real answer, but it is apparently a known issue with List https://stackoverflow.com/questions/74253108/why-is-animation-not-working-in-a-list-but-is-working-in-vstack List manages its own scrolling (List has an implicit ScrollView (as does Form)), making it pretty inflexible for defining behaviour for animation and forcing to use ScrollView instead. May also read this: https://stackoverflow.com/questions/76418666/swiftui-list-animations-are-not-smooth-when-adding-elements-to-a-vstack-in-a-lis
Topic: UI Frameworks SubTopic: SwiftUI Tags:
May ’25
Reply to App validation fails because of companyName
Welcome to the forum. Did you register as individual developer or company ? I would not for in Organizer Window, but register the app from the appstore Portal. Did you try it ? Some users had problems, because they had to sign the agreement. Is it your case ? https://developer.apple.com/forums/thread/699991 Also see here, for similar issue and a solution: https://cloud.tencent.com/developer/article/1919660 You may have a look here to find some hints: https://discussions.apple.com/thread/3821416?sortBy=rank
May ’25
Reply to 1 app with 4 different names in 4 different countries' app stores
Welcome on the forum. For iOS, just localise the name that appears on the device's home screen via InfoPlist.strings /* Bundle name */ "CFBundleName" = "MyAppNo"; // In Norway InfoPlist file "CFBundleName" = "MyAppDk"; // In Danish InfoPlist file Get details here: https://stackoverflow.com/questions/10616650/how-to-make-ios-app-name-localizable If that's OK, don't forget to close the thread by marking the answer as correct. Otherwise, explain more in detail what you are looking for. For Android, you should ask on an Android forum.
May ’25
Reply to onReceive(_:perform:) on Frontmost Window Only?
don't even know what this @FocusedBinding guy is. I find this is more and more a problem with SwiftUI. At the beginning, it was made to be very simple (and it is for very simple apps). But with the need to get more flexibility (closer to UIKit), it is now adding a lot of concepts such as @FocusedBinding, to "turn around" the limits of State based architecture. Simplicity has gone. In your case, can't you add a user info, with the ID of the window for instance ? And test in each window if the notification if for itself.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
May ’25
Reply to Checking the contents of a TextField variable method not working
You don't say on which line is the error (are you sure it is in this part of code ?), but this appears wrong for char in charArray { if char != allowed { char is a Character but allowed is probably an array of Character (you don't show much code, so we have to check, which is a bit boring). Correct syntax would be (if I understand correctly your intent and if charArray is effectively an array of Character, which is likely as cards.firstCardLatitude is a String) for char in charArray { if !allowed.contains(char) { If that works, don't forget to close the thread by marking the correct answer ; otherwise show more code.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
May ’25
Reply to Facing the same error
@Brij_iOS25 Seems you are new here, so welcome to the forum. You should read the excellent post of Quinn's on how to properly use the forum, (which is not a social network wall to post one's own feelings, except maybe in forums feedback, but a place to ask questions to other developers). https://developer.apple.com/forums/thread/706527 Have a good day.
Topic: App & System Services SubTopic: StoreKit Tags:
May ’25
Reply to App Rejection due to Public distribution
@Prajwalceg12 Welcome to the forum. What is your question ? You just post the guideline, which is pretty useless without a question you ask to developers. And the solution is in the guideline itself… PS: avoid duplicating posts on the forum.
Replies
Boosts
Views
Activity
May ’25
Reply to Uploading multiple apps.
Welcome to the forum. #1. No, there is no limit for the number of apps you publish on the appstore. But there are limits on how you upload: AFAIK, there is a limit for the number of apps uploaded in a certain period of time. Here they say 20 (but no official number): https://medium.com/@tranhuuphuc20051995/the-reality-behind-app-store-connect-has-a-limit-of-n-binary-uploads-per-day-90a85ed072fd forbidden to spam the Appstore with multiple variations of the same app (you risk account cancellation if you do so). Reaching the daily limit is hard and could lead to spam suspicion. More here: https://stackoverflow.com/questions/26462287/number-of-app-limit-on-appstore #2. What do you mean ? If you publish a new release, of course you can. Which means it has a new build and version numbers (incremented). If that answers your questions, don't forget to close the thread by marking the answer as correct. Otherwise, explain your question more in depth.
Replies
Boosts
Views
Activity
May ’25
Reply to nquiry About the Apple Small Business Program Commission Rate Adjustment Timeline
Appstore compute the sales on a daily basis. So, logically, it should be April 21. Congratulations for reaching so rapidly the $1M threshold.
Replies
Boosts
Views
Activity
May ’25
Reply to The folding and unfolding effect of the NBA sand table
That's just my own analysis, not backed by any evidence… AFAIK, there is no such built in animation effect (but I'm not fluent in VisionOS). So my guess is that you have to rebuild programmatically. What I see, is the field is split in stripes (30 or 40). In each stripe, there are about 20 tiles, each with a specific orientation, higher at the border. So, to animate, you should have to compute at each step the orientation of each tile and draw it accordingly. Not very difficult but pretty tedious to fine tune. Good luck.
Topic: Spatial Computing SubTopic: General Tags:
Replies
Boosts
Views
Activity
May ’25
Reply to mağaza kalite kiti
Sorunuz nedir? Bu haliyle, gönderiniz forumda sadece gürültüden ibaret. What is your question ? As is, your post is just noise in the forum.
Replies
Boosts
Views
Activity
May ’25
Reply to User changes Settings for my app, any notification?
If you define UserDefaults that cover all the settings you have through System settings of the app and register defaults, that connects UserDefaults to Root.pList. UserDefaults.standard.register(defaults: defaults) Define a notification name extension Notification.Name { public static let kRefreshPrefs = Notification.Name("refreshPrefs") } Then, in AppDelegate, post notification when you enter foreground because you return from System Settings func applicationWillEnterForeground(_ application: UIApplication) { NotificationCenter.default.post(name: .kRefreshPrefs, object: self) } or do the same in SceneDelegate func sceneWillEnterForeground(_ scene: UIScene) { NotificationCenter.default.post(name: .kRefreshPrefs, object: self) } In ViewControllers when you need to know setting has changed, add an observer NotificationCenter.default.addObserver(self, selector: #selector(refreshUserPrefs), name: .kRefreshPrefs, object: nil) and do what you need to do in the selector
Replies
Boosts
Views
Activity
May ’25
Reply to Create Ios app using Xojo
You'd better ask on XOJO forum.
Replies
Boosts
Views
Activity
May ’25
Reply to Animation does not work with List, while works with ScrollView + ForEach
@Kopyl I tested with longer duration (3.0) and the difference is crystal clear. I have a real answer, but it is apparently a known issue with List https://stackoverflow.com/questions/74253108/why-is-animation-not-working-in-a-list-but-is-working-in-vstack List manages its own scrolling (List has an implicit ScrollView (as does Form)), making it pretty inflexible for defining behaviour for animation and forcing to use ScrollView instead. May also read this: https://stackoverflow.com/questions/76418666/swiftui-list-animations-are-not-smooth-when-adding-elements-to-a-vstack-in-a-lis
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
May ’25
Reply to App validation fails because of companyName
Welcome to the forum. Did you register as individual developer or company ? I would not for in Organizer Window, but register the app from the appstore Portal. Did you try it ? Some users had problems, because they had to sign the agreement. Is it your case ? https://developer.apple.com/forums/thread/699991 Also see here, for similar issue and a solution: https://cloud.tencent.com/developer/article/1919660 You may have a look here to find some hints: https://discussions.apple.com/thread/3821416?sortBy=rank
Replies
Boosts
Views
Activity
May ’25
Reply to 1 app with 4 different names in 4 different countries' app stores
Welcome on the forum. For iOS, just localise the name that appears on the device's home screen via InfoPlist.strings /* Bundle name */ "CFBundleName" = "MyAppNo"; // In Norway InfoPlist file "CFBundleName" = "MyAppDk"; // In Danish InfoPlist file Get details here: https://stackoverflow.com/questions/10616650/how-to-make-ios-app-name-localizable If that's OK, don't forget to close the thread by marking the answer as correct. Otherwise, explain more in detail what you are looking for. For Android, you should ask on an Android forum.
Replies
Boosts
Views
Activity
May ’25
Reply to onReceive(_:perform:) on Frontmost Window Only?
don't even know what this @FocusedBinding guy is. I find this is more and more a problem with SwiftUI. At the beginning, it was made to be very simple (and it is for very simple apps). But with the need to get more flexibility (closer to UIKit), it is now adding a lot of concepts such as @FocusedBinding, to "turn around" the limits of State based architecture. Simplicity has gone. In your case, can't you add a user info, with the ID of the window for instance ? And test in each window if the notification if for itself.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
May ’25
Reply to Copy Whats new Text from a previous release
If you want to copy so that users may see recent modifications, that's probably useless. In fact, user can see the complete history of 'what's new' in all versions, just by tapping on the what's new label. Isn't it enough ? And that would avoid duplicate text in the history.
Replies
Boosts
Views
Activity
May ’25
Reply to Xcode 16.3 - very slow to run on simulator
Tested with an app in Debug mode. No issue here. Does you app use libraries ? Does it occur after rebooting and rebuilding the app ?
Replies
Boosts
Views
Activity
May ’25
Reply to Checking the contents of a TextField variable method not working
You don't say on which line is the error (are you sure it is in this part of code ?), but this appears wrong for char in charArray { if char != allowed { char is a Character but allowed is probably an array of Character (you don't show much code, so we have to check, which is a bit boring). Correct syntax would be (if I understand correctly your intent and if charArray is effectively an array of Character, which is likely as cards.firstCardLatitude is a String) for char in charArray { if !allowed.contains(char) { If that works, don't forget to close the thread by marking the correct answer ; otherwise show more code.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
May ’25
Reply to Facing the same error
@Brij_iOS25 Seems you are new here, so welcome to the forum. You should read the excellent post of Quinn's on how to properly use the forum, (which is not a social network wall to post one's own feelings, except maybe in forums feedback, but a place to ask questions to other developers). https://developer.apple.com/forums/thread/706527 Have a good day.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
May ’25