Post

Replies

Boosts

Views

Activity

Reply to App Store Connect: No "Sales and Trends" with Safari 15
I filed a bug report and it seems to be corrected now in the last version of Safari Technology Preview, but not in this version of Safari. A workaround. The URL is: https://appstoreconnect.apple.com/trends/insights?pageid=8 remove the end to keep only: https://appstoreconnect.apple.com/trends/ Ignore the error message We're Sorry. We can't find the page you're looking for. Please click on a link in the left sidebar. And click on Units or Sales. You'll get the usual page. But overview will not work. You should file a bug report. Here is the reference of bug report I filed for Safari Technology Preview: Sep 15, 2021 at 7:16 PM – FB9627832 You can mention it in your bug report.
Sep ’21
Reply to "Unexpectedly found nil while unwrapping an Optional value" with UIColor
You unwrap something that may be nil: UIColor(named: "ButtonBorderColor") So, to avoid crash, replace by: layer.borderColor = UIColor(named: "ButtonBorderColor")?.cgColor ?? UIColor.clear.cgColor // Or choose another default color How did you define ButtonBorderColor ? It should be in Assets. Read here how to create color in assets: h t t p s : / / medium.com/developerinsider/xcode-pro-tips-how-to-use-asset-catalogs-to-support-named-colors-8959ab51fd84 Note: to be sure of the cause, add a print: if (traitCollection.hasDifferentColorAppearance(comparedTo: previousTraitCollection)) { print("Color is", UIColor(named: "ButtonBorderColor")) layer.borderColor = UIColor(named: "ButtonBorderColor")?.cgColor ?? UIColor.clear.cgColor }
Topic: Programming Languages SubTopic: Swift Tags:
Sep ’21
Reply to MacBook Pro storage
How large is your disk ? How much available ? How much would you need. Of course, you can do usual cleaning: empty trash can remove some apps (if possible) have a look at iCloud. remove attached files in mail. But the core is system folder. Take care before suppressing anything. However, look here for a way to "clean" it: https://discussions.apple.com/thread/7683120
Topic: App & System Services SubTopic: Hardware Tags:
Sep ’21
Reply to Device Orientation Bug
I do not see anything on your screen that shows rotation. It looks like a uniform color screen. What am I missing ? I did repeat the test on an app, with Xcode 13 and iOS 15 (simulator), it works correctly.
Replies
Boosts
Views
Activity
Sep ’21
Reply to I can't view the new agreement in App Store Connect
Did you connect to: https://appstoreconnect.apple.com/agreements/#/ You should see the list of your contracts and those which need to be signed..
Replies
Boosts
Views
Activity
Sep ’21
Reply to App store connect operation error while distributing build to app store connect
Could it be the data center is overloaded ? I would try at night or early morning, at a time of lower traffic.
Replies
Boosts
Views
Activity
Sep ’21
Reply to App Store Connect: No "Sales and Trends" with Safari 15
I filed a bug report and it seems to be corrected now in the last version of Safari Technology Preview, but not in this version of Safari. A workaround. The URL is: https://appstoreconnect.apple.com/trends/insights?pageid=8 remove the end to keep only: https://appstoreconnect.apple.com/trends/ Ignore the error message We're Sorry. We can't find the page you're looking for. Please click on a link in the left sidebar. And click on Units or Sales. You'll get the usual page. But overview will not work. You should file a bug report. Here is the reference of bug report I filed for Safari Technology Preview: Sep 15, 2021 at 7:16 PM – FB9627832 You can mention it in your bug report.
Replies
Boosts
Views
Activity
Sep ’21
Reply to Xcode says not enough disk space when there is
43 GB is really a lower limit to install Xcode: 12 GB for compressed Plus more than 30GB decompressed plus some extra space during installation before removing older version. I noticed you need at least 50 to avoid problems. I personally check to have 60, but it is not always possible. Make sure also to empty trash.
Replies
Boosts
Views
Activity
Sep ’21
Reply to React native build fails after mac update (macOS Big Sur 11.6)
Did you contact React ? Haven't they issued updates recently ?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’21
Reply to My macbook air 11
That's more a question to ask to Apple support (Contact at the bottom of this page) or Netflix.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Sep ’21
Reply to "Unexpectedly found nil while unwrapping an Optional value" with UIColor
You unwrap something that may be nil: UIColor(named: "ButtonBorderColor") So, to avoid crash, replace by: layer.borderColor = UIColor(named: "ButtonBorderColor")?.cgColor ?? UIColor.clear.cgColor // Or choose another default color How did you define ButtonBorderColor ? It should be in Assets. Read here how to create color in assets: h t t p s : / / medium.com/developerinsider/xcode-pro-tips-how-to-use-asset-catalogs-to-support-named-colors-8959ab51fd84 Note: to be sure of the cause, add a print: if (traitCollection.hasDifferentColorAppearance(comparedTo: previousTraitCollection)) { print("Color is", UIColor(named: "ButtonBorderColor")) layer.borderColor = UIColor(named: "ButtonBorderColor")?.cgColor ?? UIColor.clear.cgColor }
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’21
Reply to MacBook Pro storage
How large is your disk ? How much available ? How much would you need. Of course, you can do usual cleaning: empty trash can remove some apps (if possible) have a look at iCloud. remove attached files in mail. But the core is system folder. Take care before suppressing anything. However, look here for a way to "clean" it: https://discussions.apple.com/thread/7683120
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Sep ’21
Reply to Xcode 13 crashes unexpectedly on opening xcworkspace
my projects which i developed in xcode 12      Does it occur with several projects or only one ? Can you try to reopen with Xcode 12 ? But first, be sure you have back up of your full project folder.
Replies
Boosts
Views
Activity
Sep ’21
Reply to Custom Screen resolutions
I can increase the resolution to 2560x1440.       Resolution of MacBook or Dell display ?
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Sep ’21
Reply to Splash screen not displaying correctly
Try to change Layout : Autoresizing mask to Inferred (constraints) and see if you can add constraints to center the view.
Replies
Boosts
Views
Activity
Sep ’21
Reply to Can i still submit my app without Xcode 13 and Ipad Mini?
You should be able to submit with 12.5.
Replies
Boosts
Views
Activity
Sep ’21
Reply to App on appstore was made using xcode but upcoming version was made using xamarin, are there problems?
Do you keep the exact same appstore references for the app ? And is it the same developer account that will submit the app. Otherwise it will be considered a different one. And if too close in functionality, may be seen as a Spam.
Replies
Boosts
Views
Activity
Oct ’21