Post

Replies

Boosts

Views

Activity

Reply to Cannot convert value of type 'ChooseModel.Angle' to expected argument type 'Angle'
struct ChooseModel: Codable { var id = UUID()     var decision: String     var choices: [String]     var startAngle: ChooseModel.Angle // Qualify Your type Angle by the `ChooseModel` namespace     var endAngle: ChooseModel.Angle // Qualify Your type Angle by the `ChooseModel` namespace     @CodableColor var color: UIColor     struct Angle: Codable, Equatable {         var degrees: Double     } } // Do this `-90 + chooseMV.model.[startAngle|endAngle].degrees` instead of `ChooseModel.Angle(degrees: -90.0).degrees` since the instance of `ChooseModel.Angle` is not used beyond these two lines. path.addArc(                         center: center,                         radius: width * 0.5,                         startAngle: -90.0 + chooseMV.model.startAngle.degrees, // startAngle are CGFloat types and not Angle types so you will to use the `degrees` properties of the Angle objects for the computation to CGFloat                         endAngle: -90.0 + chooseMV.model.endAngle.degrees, // endAngle are CGFloat types and not Angle types so you will to use the `degrees` properties of the Angle objects for the computation to CGFloat                         clockwise: false)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Dec ’21
Reply to My app update is rejected
You're supposed to do exactly what #1 & #2 outline. Before just prompting the user with the Contacts permission request, show a screen to the user explaining to them why your app needs access to their private contacts data, what you're going to do with the data (Their entire address book) before calling the API for access to their Contacts. If all you need is an email or phone number, just create a screen and ask them to provide the email or phone number as part of your onboarding flow. Don't have a website? get one so you can provide a link to the privacy policy that governs your data usage policies.
Dec ’21
Reply to iOS app crashes at launch on Testflight for iOS 14 and below but not iOS 15+
Take a look at the most recent set of framework APIs added, this could be an API only available to iOS 15 and higher.
Replies
Boosts
Views
Activity
Dec ’21
Reply to SIGTRAP crash occurred in dispatch_event_loop_end_ownership
if this is hybrid you'll have to follow up with the javascript framework creators seeing there is no visible objective-c or swift stack trace associated with what looks like controller which is not native - 'box.medusa.bbammsimagesearchviewcontroller1229'.
Replies
Boosts
Views
Activity
Dec ’21
Reply to Using Iphone 7
Please post question -> https://discussions.apple.com/welcome and here https://faq.whatsapp.com/iphone
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to What API sends iOS notifications to Apple Watch
If you don't know where in the Apple Docs to begin take a look here: https://www.raywenderlich.com/11395893-push-notifications-tutorial-getting-started
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to SiriExtension.entitlements error once Localization is enabled
Select the Xcode project from the navigator, then under targets select the SiriExtenstion Target, under the Signing & Capability tab ensure you have Automatically manage signing and the team selected.
Replies
Boosts
Views
Activity
Dec ’21
Reply to Cannot convert value of type 'ChooseModel.Angle' to expected argument type 'Angle'
struct ChooseModel: Codable { var id = UUID()     var decision: String     var choices: [String]     var startAngle: ChooseModel.Angle // Qualify Your type Angle by the `ChooseModel` namespace     var endAngle: ChooseModel.Angle // Qualify Your type Angle by the `ChooseModel` namespace     @CodableColor var color: UIColor     struct Angle: Codable, Equatable {         var degrees: Double     } } // Do this `-90 + chooseMV.model.[startAngle|endAngle].degrees` instead of `ChooseModel.Angle(degrees: -90.0).degrees` since the instance of `ChooseModel.Angle` is not used beyond these two lines. path.addArc(                         center: center,                         radius: width * 0.5,                         startAngle: -90.0 + chooseMV.model.startAngle.degrees, // startAngle are CGFloat types and not Angle types so you will to use the `degrees` properties of the Angle objects for the computation to CGFloat                         endAngle: -90.0 + chooseMV.model.endAngle.degrees, // endAngle are CGFloat types and not Angle types so you will to use the `degrees` properties of the Angle objects for the computation to CGFloat                         clockwise: false)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to My app update is rejected
You're supposed to do exactly what #1 & #2 outline. Before just prompting the user with the Contacts permission request, show a screen to the user explaining to them why your app needs access to their private contacts data, what you're going to do with the data (Their entire address book) before calling the API for access to their Contacts. If all you need is an email or phone number, just create a screen and ask them to provide the email or phone number as part of your onboarding flow. Don't have a website? get one so you can provide a link to the privacy policy that governs your data usage policies.
Replies
Boosts
Views
Activity
Dec ’21
Reply to How to tell Xcode13 to use GCC for building C++ projects?
GCC is no longer supported by Xcode.
Replies
Boosts
Views
Activity
Dec ’21
Reply to Code C in VS Code Error(ld: symbol(s) not found for architecture arm64)
The wrong forum, please the Microsoft support forums for Visual Studio Code.
Replies
Boosts
Views
Activity
Dec ’21
Reply to Developing IOS apps for third parties
Read here: https://developer.apple.com/business/distribute/
Replies
Boosts
Views
Activity
Dec ’21
Reply to Hiding keyboard when VoiceOver is active
For the particular UI containing the keyboard, resign the current first responder control when UIAccessibility.isVoiceOverRunning is true.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to HELPP
I have had the same thing happen in the past where these bogus apple emails don't deliver to the actual mailbox.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to When will the iOS 15 Safari Google Captcha Glitch get resolved?
That is as real as it will be. Captcha is session-based.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to Udid
Device Settings, about. Finder
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Dec ’21