Post

Replies

Boosts

Views

Activity

Reply to Use of Prefs: Settings
May be I do not understand your question, but you can access user settings with: func openSettings() { guard let settingsUrl = URL(string: UIApplication.openSettingsURLString) else { return } if UIApplication.shared.canOpenURL(settingsUrl) { UIApplication.shared.open(settingsUrl, completionHandler: nil) } } Isn't it what you're looking for ?
Topic: App & System Services SubTopic: Core OS Tags:
Oct ’21
Reply to What are the SKPhysics settings to make a ball bounce?
The only difference I note in doc is: For init(edgeLoopFrom:), if the path is not already closed, a loop is automatically created by joining the last point to the first. How did you define pathToDraw ? If closed path, the 2 init should be equivalent. If not, problem probably comes from open path when using edgeChainFrom. Note: I cannot why it has impact !
Topic: Programming Languages SubTopic: Swift Tags:
Oct ’21
Reply to Downgrade xcode from 13 to 12.4
I continue to be able to compile the project and launch the app on devices with ios 15 If you target iOS 14, it should run on iOS 15 as well. But you may have problem to download from Xcode to device. If that's the problem, see here for some advice: h t t p s : / / dilumdesilva.medium.com/so-xcode-doesnt-support-your-iphone-s-os-version-here-s-how-to-fix-it-c2db7fd58468
Oct ’21
Reply to Urgent: distributing release build by command line
What do you see when you open Xcode Preferences > Accounts ? Do you see the + sign at the lower left ? What happens when you click there ?
Replies
Boosts
Views
Activity
Oct ’21
Reply to Use of Prefs: Settings
May be I do not understand your question, but you can access user settings with: func openSettings() { guard let settingsUrl = URL(string: UIApplication.openSettingsURLString) else { return } if UIApplication.shared.canOpenURL(settingsUrl) { UIApplication.shared.open(settingsUrl, completionHandler: nil) } } Isn't it what you're looking for ?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’21
Reply to macOS Monterey: "This app will not work with future versions of macOS"
Is it sandboxed ? Ar at least notarised ?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’21
Reply to Termination of Apple Developer Account
That is not necessarily linked to your app but to the use of your account ("documented indications of fraudulent conduct associated with your account"). You alone may know what has occurred on your account.
Replies
Boosts
Views
Activity
Oct ’21
Reply to IOS 15 iPad landscape view for apps that only support portrait view
You should do it in info.plist:
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Oct ’21
Reply to Can you hold the release of an App store
Yes you can. When you send to AppStoreConnect, you can set a release date: immediately after approval manual not before a date
Replies
Boosts
Views
Activity
Oct ’21
Reply to Xcode 11.3.1 running iOS 14.5.1 app error Unable to copy symbols from this device
Is it device or simulator ? What iOS version of it ?
Replies
Boosts
Views
Activity
Oct ’21
Reply to Can't figure out. how to convert Int to CGFloat
How do you try to ,convert, please show code. What you have to do, if you get an Int value from JSON let CGFloatValue = CGFloat(value). Don't try to cast Int to CGFloat with let CGFloatValue = value as CGFloat
Replies
Boosts
Views
Activity
Oct ’21
Reply to ios15 iPhone 13 mini not connecting to car bluetooth properly
Read here that CarPlay issues with iOS 15 should be addressed "soon":    h t t p s : / / w w w.macrumors.com/2021/09/30/ios-15-iphone-13-carplay-issues/
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Oct ’21
Reply to What are the SKPhysics settings to make a ball bounce?
The only difference I note in doc is: For init(edgeLoopFrom:), if the path is not already closed, a loop is automatically created by joining the last point to the first. How did you define pathToDraw ? If closed path, the 2 init should be equivalent. If not, problem probably comes from open path when using edgeChainFrom. Note: I cannot why it has impact !
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’21
Reply to iCloud Files returning Nil
Please show code. Impossible to say why precisely otherwise.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’21
Reply to How do I get documentation of mac OS X 10.15 APIs
appropriate to the latest supported OS X (10.15)? If you open Xcode 12.4, API references there should correspond to 10.15. And not show newer versions of API.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’21
Reply to iOS 15 - New JSONDecoding Decimals issue
Are you sure the problem is new to Xcode 13 ? There are discussions in Swift forum about this, not related to last Swift versions : https://forums.swift.org/t/parsing-decimal-values-from-json/6906
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’21
Reply to iOS 15 - New JSONDecoding Decimals issue
May be you could implement solution described here by defining your own extensions: https://stackoverflow.com/questions/55131400/swift-decode-imprecise-decimal-correctly
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Oct ’21
Reply to Downgrade xcode from 13 to 12.4
I continue to be able to compile the project and launch the app on devices with ios 15 If you target iOS 14, it should run on iOS 15 as well. But you may have problem to download from Xcode to device. If that's the problem, see here for some advice: h t t p s : / / dilumdesilva.medium.com/so-xcode-doesnt-support-your-iphone-s-os-version-here-s-how-to-fix-it-c2db7fd58468
Replies
Boosts
Views
Activity
Oct ’21