Post

Replies

Boosts

Views

Activity

Reply to In Review for 35 days!
I noticed that cancelling a submission is rarely a good idea. Just as if the app falls at the end of the list of apps to review. I just prefer to let submission complete and resubmit immediately if a new build is needed. This being said, 35 days is abnormal. Did you try to contact support and ask for a phone contact ?
Apr ’25
Reply to App Stuck in "Waiting For Review," for 2 weeks+ unhelpful support.
I had to cancel and resubmit my app a few times That's effectively a bad idea. I've noticed that it may create issues, with endless waiting for review (I don't know the reason why, but it seems so). Waiting for 1 day for review is not abnormal (even though it is often much faster). What category of app is it ? Did you try to ask support contact by phone ? It is usually very efficient.
Apr ’25
Reply to How can this be resolved - load_eligibility_plist: Failed to open //private/var/db/os_eligibility/eligibility.plist: Operation not permitted(1)
Problem could be that you have multiple constraints for UILayoutGuide:0x3030f0c40'UIViewSafeAreaLayoutGuide'.centerY (related to each button), creating inconsistency when you move buttons as the position of others have not yet changed. Where (in which func) do you change the constraints ? Do you call viewWillNeedLayout after change ? Could you post a minimal code example of the issue ? Why do you constrain to UIViewSafeAreaLayoutGuide and not simply to safeArea center ? PS: another solution would be to duplicate (or triplicate) the buttons and change their isHidden property as needed.
Topic: Design SubTopic: General
Apr ’25
Reply to Issue with calculating the distance between two points on a map
You should either declare from and to in: an init() - just declare type in the general declaration and set value in init in .onAppear as a modifier of the VStack But there are many errors in the code that you have to correct first: you call distance in the distance func. That will cause infinite loop return from.distance(from: to) You need to set values of parameters, let distanceFrom = from.distance(from: to) such as let distanceFrom = from.distance(from: from, to: to) from is a CLLocationCoordinate2D But distance is defined for CLLocation only…
Apr ’25