Post

Replies

Boosts

Views

Activity

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 Override primaryColor and so on
"PrimaryColor" color asset name resolves to a conflicting Color symbol "primary". Try renaming the asset. The message is pretty explicit. You cannot override by giving the same name. See detailed answer in Swift.org: https://forums.swift.org/t/changing-color-primary-and-color-secondary/58838 They are static properties that are controlled by the OS, with the color displayed depending on context (e.g., heading vs. general text) and the user's system settings (such as dark mode vs. light mode). As you may know, you can set an accentColor which is a broad theme color that is applied to views and controls. May or may not get you in the direction of what you're trying to achieve: https://developer.apple.com/documentation/swiftui/color/accentcolor
Sep ’24
Reply to Text Max Character Number SwiftUI
Did you set a frame for the Text or TextField ? And use truncationMode Text("This is a block of text that will show up in a text element as multiple lines. The text will fill the available space, and then, eventually, be truncated.") .frame(width: 150, height: 150) .truncationMode(.tail)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Sep ’24
Reply to App review screenshot has wrong dimensions
What screenshot should it be ? This size is for 6.7" 6.9" -> 1320 x 2868 6.7" -> 1290 x 2796 6.5" -> 1284 × 2778 Did you use the screenshot for the 6.7" screen size in AppstoreConnect (and not for 6.5") ? It seems that now (very recently) AppstoreConnect requests 6.9" screen size (iPhone 16 ProMax), but it may be optional. If you cannot generate the screenshots for 6.9 and if it is optional, provide only 6.5" Otherwise, try to resize in Preview App to the right dimension.
Sep ’24
Reply to Unable to test builds on testflight, "The requested app is not available or doesn’t exist."
Welcome to the forum. We may understand your frustration, but it would be more useful to have precise and factual information. Which version of Xcode ? How do you try to install the builds ? AppStore Connect ? Other mean ? Once you archived your app, did you receive a mail that it was processed and available for TestFlight ? Did you try to contact support ?
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
Reply to Override primaryColor and so on
"PrimaryColor" color asset name resolves to a conflicting Color symbol "primary". Try renaming the asset. The message is pretty explicit. You cannot override by giving the same name. See detailed answer in Swift.org: https://forums.swift.org/t/changing-color-primary-and-color-secondary/58838 They are static properties that are controlled by the OS, with the color displayed depending on context (e.g., heading vs. general text) and the user's system settings (such as dark mode vs. light mode). As you may know, you can set an accentColor which is a broad theme color that is applied to views and controls. May or may not get you in the direction of what you're trying to achieve: https://developer.apple.com/documentation/swiftui/color/accentcolor
Replies
Boosts
Views
Activity
Sep ’24
Reply to Text Max Character Number SwiftUI
Did you set a frame for the Text or TextField ? And use truncationMode Text("This is a block of text that will show up in a text element as multiple lines. The text will fill the available space, and then, eventually, be truncated.") .frame(width: 150, height: 150) .truncationMode(.tail)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to App review screenshot has wrong dimensions
What screenshot should it be ? This size is for 6.7" 6.9" -> 1320 x 2868 6.7" -> 1290 x 2796 6.5" -> 1284 × 2778 Did you use the screenshot for the 6.7" screen size in AppstoreConnect (and not for 6.5") ? It seems that now (very recently) AppstoreConnect requests 6.9" screen size (iPhone 16 ProMax), but it may be optional. If you cannot generate the screenshots for 6.9 and if it is optional, provide only 6.5" Otherwise, try to resize in Preview App to the right dimension.
Replies
Boosts
Views
Activity
Sep ’24
Reply to Unable to test builds on testflight, "The requested app is not available or doesn’t exist."
Welcome to the forum. We may understand your frustration, but it would be more useful to have precise and factual information. Which version of Xcode ? How do you try to install the builds ? AppStore Connect ? Other mean ? Once you archived your app, did you receive a mail that it was processed and available for TestFlight ? Did you try to contact support ?
Replies
Boosts
Views
Activity
Sep ’24
Reply to Как оплатить членство в Беларуси | How to pay for membership in Belarus
Have you checked with your bank that it is allowed to trade despite sanctions ?
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to -1 in connect
That's not an issue, that's a refund. It can occur in the following day of the download.
Replies
Boosts
Views
Activity
Sep ’24