This is not a question really for this forum which is about helping developers to develop their apps.
You'd better post on Apple support : https://discussions.apple.com/welcome
But it is known that System uses a significant storage.
You may have a look here: https://discussions.apple.com/thread/255463853?sortBy=rank
Or here if mobileSync is using a lot of storage: https://apple.stackexchange.com/questions/63207/what-is-mobile-sync-backup-and-why-is-it-taking-so-much-space
Post
Replies
Boosts
Views
Activity
Welcome to the forum.
Could you show the complete message ?
Would your app fit for web app ?
Or is it reserved for specific customers ?
Read Guideline 4.2
4.2 Minimum Functionality
Your app should include features, content, and UI that elevate it beyond a repackaged website. If your app is not particularly useful, unique, or “app-like,” it doesn’t belong on the App Store. If your App doesn’t provide some sort of lasting entertainment value or adequate utility, it may not be accepted. Apps that are simply a song or movie should be submitted to the iTunes Store. Apps that are simply a book or game guide should be submitted to the Apple Books Store.
Is it the full reviewer message ?
Guidelines explain what regulated means, with a few examples:
as such as banking and financial services, healthcare, gambling, legal cannabis use, and air travel
Is your app in one of those categories or something similar ?
You could also contact Developers' support.
I am seeking guidance on how to determine the size of the wall so that the portal can fully occupy it.
Are you looking on how to compute (in terms of geometry) the sizes of elements ? If so, could you explain what is the issue to calculate the size of the wall.
Or to find the size of the wall in an image ?
Or on how to implement in code ?
If that may help, I noticed other cases (SwiftUI Mac app) where Xcode 16 generates code that does not work properly when run on MacOS 14 but OK on MacOS 15.
And the same code works OK when compiled on Xcode 15.
Here is the FB for reference: FB15429756
Where did you download Apple developer app ?
Creating an Apple account is free, and you get access to development tools like Xcode.
https://developer.apple.com/support/compare-memberships/
Read also DTS support answer here: https://forums.developer.apple.com/forums/thread/742367
So what is it exactly you paid $50 for ? Are you sure it was from Apple ? Or was it a third party app ?
No, it is not possible, as explained by Apple support here: https://forums.developer.apple.com/forums/thread/702447
Welcome to the forum.
But this is a forum for developers to get help on their app development, not about product issues.
You'd better ask on the support forum: https://discussions.apple.com/welcome
It is a bit tricky with drag and tap.
Have a look here to see how you can achieve it: https://stackoverflow.com/questions/64573755/swiftui-scrollview-with-tap-and-drag-gesture
If I understand what you are looking for, you could use accentColor:
struct ContentView: View {
@State var selectedIndex: Int = 1
var body: some View {
TabView(selection: $selectedIndex) {
Text("Hello 1")
.tag(1)
.tabItem {
Image(systemName: "house.fill")
Text("Home")
}
Text("Hello 2")
.tag(2)
.tabItem {
Image(systemName: "gearshape")
Text("Settings")
}
}
.accentColor(Color.red)
}
}
But now, you should use colorScheme.
Get more here: https://sarunw.com/posts/swiftui-tabbaritem-color/
And https://sarunw.com/posts/swiftui-accentcolor/
Which iOS version do you run ? Must be iOS 16 or over.
Then, it is located at the very bottom of privacy and security page.
If not OK with iOS 16, have a look here: https://forums.developer.apple.com/forums/thread/716697
This may help as well: https://medium.com/@kshitijsharma94/how-to-enable-developer-mode-on-your-ios-device-and-find-your-udid-b3e46cea58a8#:~:text=Open%20Settings%3A%20Go%20to%20your,Tap%20it.
There is something surprising me in the screenshot: you have 2 versions referenced for release (17.0 and 16.0 iOS). Why is it so ?
You should also have a look at the build settings of the PROJECT and check if what you have here (it might be empty, but should not iOS be 12 for instance):
Welcome to the forum.
But the forum is not really intended for such "warnings". It is to help solve issues.
The fact is not that reviewer does not want you to update, it is that in the new review, he/she has evaluated your games as spam (for good reason or not, that's a question we cannot answer).
Have you answered to the review explaining why you consider your apps are not spam ?
You have certainly read the guidelines; it may help you understand the reason for rejection and better explain in your comments:
4.3 Spam
(a) 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.
(b) Also avoid piling on to a category that is already saturated; the App Store has enough fart, burp, flashlight, fortune telling, dating, drinking games, and Kama Sutra apps, etc. already. We will reject these apps unless they provide a unique, high-quality experience. Spamming the store may lead to your removal from the Apple Developer Program.
You didn't provide any information that could help to help you, so a few questions:
Are your 2 games similar ? that could fall in 4.3.a and cause rejection of both
What type of game is it ? Is it in a very crowded game category ? that could fall in 4.3.b
Have you identified games that are close to yours on the appstore ?
Finally, it is not because app was accepted in a previous review that it will be in a next one. It may just mean that issue was not detected before.
Good luck.
Welcome to the forum.
programming tool and that is, they are not compatible with Sequoia 1.15.1. This includes Xcode
What is the incompatibility you get ?
C++ is supported in all versions of Xcode: https://developer.apple.com/xcode/cpp/
And Xcode can of course be installed on MacOS 15.1.
PS: the exact OS number is MacOS 15.1
What code do you mean precisely ?
Now, all apps which are published or notarised get a unique ID. This ID "knows" about the developer identifier. So, AFAIU, that contains somehow the "creator code".
PS: why do you mind ?