Post

Replies

Boosts

Views

Activity

Reply to Temporarily unpublish app
https://developer.apple.com/help/app-store-connect/manage-your-apps-availability/restore-an-app-to-the-app-store/. But if you remove the app from the store, you risk to loose the name of the app… And may have problem to re establish. I do advise not to do to avoid any bad side effect. The simplest is probably to remove all countries where the app is available (except a tiny country if Appstore Connect requests at least one). And reset when you publish new version.
Sep ’24
Reply to App Reviewer wants to remove our app without specific reason
Question asked by reviewer is very precise. Does your app encourage users to perform digital tasks in exchange for compensation, watch ads and/or perform other marketing-oriented tasks, If so, that's what you have to address. Relasing a new update every week does not matter here. The fact that you estimate that other apps are doin it is not an argument. First you may not know all the details about those apps, second, they may fail another time. But you should focus on your app, not look into others dishes.
Sep ’24
Reply to Reducing space between list rows
Only solution that works for me is to use environment: List (myList, id: \.self) { list in // your code here } .environment(\.defaultMinListRowHeight, 12) // << NEW .overlay( // your code here I get this (I've added some bk color to see it better as well as separators Interesting discussion here: https://stackoverflow.com/questions/60474057/swiftui-reduce-spacing-of-rows-in-a-list-to-null
Topic: UI Frameworks SubTopic: SwiftUI
Sep ’24
Reply to It is possible to get a status update about a problem reported in a FB ticket that was filed by another party?
what is the recommendation to be informed about the status of a problem when you know that a FB ticket was already filed by another party ? File a FB ticket on the same topic with a reference to the original FB ticket and pray ? Yes, that's the best. Filing a new FB helps push the topic… Note that there are some issues that are closed whilst you will never see in the status.
Sep ’24
Reply to Using truncationMode
I don't understand your question. truncationMode lets you define how truncation is done: at the end (tail, in the middle or at the beginning (head). If not defined, I think default is tail (not sure).
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Sep ’24
Reply to App crash on button press
Please provide more detailed information. My app crashes when a button is pressed Any button ? A specific one ? Is it UIKit or SwiftUI ? If specific, how is it defined ? In Storyboard ? In code ? If in code, please show the code. Also show the action code for the button.
Topic: App & System Services SubTopic: General Tags:
Sep ’24
Reply to how to setup info.plist
Haven't you a backup of your ptoject ? You should. See here how to recreate it: https://stackoverflow.com/questions/1337403/how-to-regenerate-an-iphone-xcode-info-plist-file To create an empty info.plist file: just select "New File from template..." on the "File" menu in Xcode. In the "New File" window you pick "Resources" on the left hand and then "Property List". Then, define the keys that are needed, such as: /* Bundle name */ "CFBundleName" = "your app name"; /* Privacy - Camera Usage Description */ "NSCameraUsageDescription" = "app needs to access camera to snap a photo."; /* Privacy - Photo Library Usage Description */ "NSPhotoLibraryUsageDescription" = "app needs to access photo rolls to search for."; Don't forget the semi colons.
Sep ’24
Reply to Xcode 16 Do not display comments correctly
And never do that ever again. Understood? you should never speak like this, it's coarse and arrogant… 😕 Have a good day
Replies
Boosts
Views
Activity
Sep ’24
Reply to Temporarily unpublish app
https://developer.apple.com/help/app-store-connect/manage-your-apps-availability/restore-an-app-to-the-app-store/. But if you remove the app from the store, you risk to loose the name of the app… And may have problem to re establish. I do advise not to do to avoid any bad side effect. The simplest is probably to remove all countries where the app is available (except a tiny country if Appstore Connect requests at least one). And reset when you publish new version.
Replies
Boosts
Views
Activity
Sep ’24
Reply to App Reviewer wants to remove our app without specific reason
Question asked by reviewer is very precise. Does your app encourage users to perform digital tasks in exchange for compensation, watch ads and/or perform other marketing-oriented tasks, If so, that's what you have to address. Relasing a new update every week does not matter here. The fact that you estimate that other apps are doin it is not an argument. First you may not know all the details about those apps, second, they may fail another time. But you should focus on your app, not look into others dishes.
Replies
Boosts
Views
Activity
Sep ’24
Reply to Reducing space between list rows
Only solution that works for me is to use environment: List (myList, id: \.self) { list in // your code here } .environment(\.defaultMinListRowHeight, 12) // << NEW .overlay( // your code here I get this (I've added some bk color to see it better as well as separators Interesting discussion here: https://stackoverflow.com/questions/60474057/swiftui-reduce-spacing-of-rows-in-a-list-to-null
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Sep ’24
Reply to Reducing space between list rows
.frame(maxWidth: .infinity, minHeight: 20, alignment: .leading) // Reduced height This will not reduce height ; try defining idealHeight as well in addition to minHeight (is it a computed value or a fixed value ?)
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Sep ’24
Reply to App Rejected - It can deceive users
Do you understand what reviewer hints at when he/she write: The app includes trick or joke functionality That's the first step to have a chance to solve.
Replies
Boosts
Views
Activity
Sep ’24
Reply to It is possible to get a status update about a problem reported in a FB ticket that was filed by another party?
what is the recommendation to be informed about the status of a problem when you know that a FB ticket was already filed by another party ? File a FB ticket on the same topic with a reference to the original FB ticket and pray ? Yes, that's the best. Filing a new FB helps push the topic… Note that there are some issues that are closed whilst you will never see in the status.
Replies
Boosts
Views
Activity
Sep ’24
Reply to How do you let SwiftUI View know that ViewModel's computed property has changed?
Did you try to use publish ? See details here: https://stackoverflow.com/questions/62740812/swiftui-observableobject-with-a-computed-property Or here to use @Observable: https://medium.com/@jywvgkchm/understanding-observation-in-swift-simplifying-swiftui-development-73853a06e86a
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to Using truncationMode
I don't understand your question. truncationMode lets you define how truncation is done: at the end (tail, in the middle or at the beginning (head). If not defined, I think default is tail (not sure).
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to Xcode 16 missing minimum deployment dropdown for app target
I just tested in Xcode 16.0 ; deployment targets are there. Both for PROJECT and TARGETS
Replies
Boosts
Views
Activity
Sep ’24
Reply to Xcode 16 missing minimum deployment dropdown for app target
Did you also complete the installation of IOS simulators ?
Replies
Boosts
Views
Activity
Sep ’24
Reply to Xcode 16 missing minimum deployment dropdown for app target
On the screenshot, you have 2 versions of Xcode opened. Did you try by opening only 16.0 ? It was still there in 16.1ß, I'll check on 16.0 release.
Replies
Boosts
Views
Activity
Sep ’24
Reply to App rejection
Normally, you don't need to do anything else if you replied properly. What exact privacy concern was it ?
Replies
Boosts
Views
Activity
Sep ’24
Reply to App crash on button press
Please provide more detailed information. My app crashes when a button is pressed Any button ? A specific one ? Is it UIKit or SwiftUI ? If specific, how is it defined ? In Storyboard ? In code ? If in code, please show the code. Also show the action code for the button.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to how to setup info.plist
Haven't you a backup of your ptoject ? You should. See here how to recreate it: https://stackoverflow.com/questions/1337403/how-to-regenerate-an-iphone-xcode-info-plist-file To create an empty info.plist file: just select "New File from template..." on the "File" menu in Xcode. In the "New File" window you pick "Resources" on the left hand and then "Property List". Then, define the keys that are needed, such as: /* Bundle name */ "CFBundleName" = "your app name"; /* Privacy - Camera Usage Description */ "NSCameraUsageDescription" = "app needs to access camera to snap a photo."; /* Privacy - Photo Library Usage Description */ "NSPhotoLibraryUsageDescription" = "app needs to access photo rolls to search for."; Don't forget the semi colons.
Replies
Boosts
Views
Activity
Sep ’24