Post

Replies

Boosts

Views

Activity

Reply to iPhone 14 strange landscape size classes
I think you have found a typo. It should be: iPhone 14 Portrait: Compact width, regular height Landscape: Compact width, compact height iPhone 14 Pro Portrait: Compact width, regular height Landscape: Compact width, compact height For more details, see https://useyourloaf.com/blog/iphone-14-screen-sizes/
Topic: UI Frameworks SubTopic: UIKit Tags:
Sep ’22
Reply to Emergency SOS feature
Older phones don't have the new hardware which is required to communicate with the satellites. You get 2 years free, from the activation of the phone. Apple have not yet discussed pricing plans beyond that initial 2 year period.
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’22
Reply to error when uploading to App Store ... Type 'MenuItem' has no member 'example'
MenuItem.example is only defined for a DEBUG build. Uploading to the App Store uses a Release build, so MenuItem.example does not exist. Try replacing: #if DEBUG static let example = MenuItem(id: UUID(), name: "Maple French Toast", recipe: "Breakfast Icecream", ingredient: "Sweet, fluffy, and served piping hot, our French toast is flown in fresh every day from Maple City, Canada, which is where all maple syrup in the world comes from. And if you believe that, we have some land to sell you…", instruction: "Cook it", emTipTitle: "Energy management", emTip: "Practice 5 minute rule") #endif with: static let example = MenuItem(id: UUID(), name: "Maple French Toast", recipe: "Breakfast Icecream", ingredient: "Sweet, fluffy, and served piping hot, our French toast is flown in fresh every day from Maple City, Canada, which is where all maple syrup in the world comes from. And if you believe that, we have some land to sell you…", instruction: "Cook it", emTipTitle: "Energy management", emTip: "Practice 5 minute rule")
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Sep ’22
Reply to iPhone 14 strange landscape size classes
I think you have found a typo. It should be: iPhone 14 Portrait: Compact width, regular height Landscape: Compact width, compact height iPhone 14 Pro Portrait: Compact width, regular height Landscape: Compact width, compact height For more details, see https://useyourloaf.com/blog/iphone-14-screen-sizes/
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to Emergency SOS feature
Older phones don't have the new hardware which is required to communicate with the satellites. You get 2 years free, from the activation of the phone. Apple have not yet discussed pricing plans beyond that initial 2 year period.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to So @Apple - What're you going to do with the ongoing spam & consumers being able to post here
Yes, we seem to be in yet another period of excessive spam posts. A proper solution is needed.
Replies
Boosts
Views
Activity
Sep ’22
Reply to presentationMode.wrappedValue.dismiss() Bug iOS 16 | SwiftUI 4
It's not clear at this stage, but discussions on the wider Internet suggest that this may be a bug in Xcode 14.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to error when uploading to App Store ... Type 'MenuItem' has no member 'example'
Did that fix it for you, @arasharcher?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to Developer Mode
On iOS 16 I see: Settings > Privacy & Security > Developer Mode ...which shows a Switch, to turn it on. Which requires a restart. Then after restarting, I had to confirm turning Developer Mode on.
Replies
Boosts
Views
Activity
Sep ’22
Reply to Unity IOS Xcode 14.0 Build errors(Bitcode) on IPhone 16.0 OS
As I said, option 1: rebuild it with bitcode enabled
Replies
Boosts
Views
Activity
Sep ’22
Reply to I want iOS 16 battery status bar for XR
Please don't repeat post. This is a forum for serious developers.
Replies
Boosts
Views
Activity
Sep ’22
Reply to Unity IOS Xcode 14.0 Build errors(Bitcode) on IPhone 16.0 OS
Your error message says you must do one of: rebuild it with bitcode enabled. obtain an updated library from the vendor. disable bitcode for this target. When you tried those 3 solutions, what was the outcome?
Replies
Boosts
Views
Activity
Sep ’22
Reply to Clock and Related Types not Found with Xcode 14.
It may depend on your deployment target, as Clock requires iOS 16. (So if your deployment target is less that 16, the compiler will throw an error.)
Replies
Boosts
Views
Activity
Sep ’22
Reply to Apple you have a very high number of non-developer related issues being posted making it difficult for us developers to assist other developers in need of answers.
And once again, the Forum is entirely overrun by spam. Spam which seems particularly easy to spot. It's extra-annoying when the spammers mark their own answer as correct, to improve their rating.
Replies
Boosts
Views
Activity
Sep ’22
Reply to WebView struct not displaying correctly
Rather than adding your code as a screenshot, use the formatting tools, to format your code as a Code Block. Then we will be able to read it, and see if we can help you.
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to error when uploading to App Store ... Type 'MenuItem' has no member 'example'
MenuItem.example is only defined for a DEBUG build. Uploading to the App Store uses a Release build, so MenuItem.example does not exist. Try replacing: #if DEBUG static let example = MenuItem(id: UUID(), name: "Maple French Toast", recipe: "Breakfast Icecream", ingredient: "Sweet, fluffy, and served piping hot, our French toast is flown in fresh every day from Maple City, Canada, which is where all maple syrup in the world comes from. And if you believe that, we have some land to sell you…", instruction: "Cook it", emTipTitle: "Energy management", emTip: "Practice 5 minute rule") #endif with: static let example = MenuItem(id: UUID(), name: "Maple French Toast", recipe: "Breakfast Icecream", ingredient: "Sweet, fluffy, and served piping hot, our French toast is flown in fresh every day from Maple City, Canada, which is where all maple syrup in the world comes from. And if you believe that, we have some land to sell you…", instruction: "Cook it", emTipTitle: "Energy management", emTip: "Practice 5 minute rule")
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to Time of my launchscreen is too long since I changed my json file
regarding the verification I have already done it with this online software That may be so, but the json in your link still contains errors. I suggest you try an alternative online json validator. do you have a better idea Yes, but let's get the app working first.
Replies
Boosts
Views
Activity
Sep ’22
Reply to iOS 15 - Frequently stuck at [CLLocationManager locationServicesEnabled]
This method can cause UI unresponsiveness if invoked on the main thread. Instead, consider waiting for the -locationManagerDidChangeAuthorization: callback and checking authorizationStatus first.
Replies
Boosts
Views
Activity
Sep ’22