Post

Replies

Boosts

Views

Activity

Reply to How to apple for CarPlay entitlement certificate correctly ?
Focus on building and finishing the app. Worry about entitlement approval later. Once it works on car play and before rushing to release and getting the entitlement, open a beta testing period via testflight and get real-world feedback before going to the store. Did you log into the developer portal to see if the entitlements where added to the app id? https://developer.apple.com/documentation/carplay/requesting_carplay_entitlements
Topic: App & System Services SubTopic: General Tags:
Mar ’23
Reply to Is Xcode 14.3 Apple Silicon Only - It won't start on my Intel anymore
What I also noticed with Xcode 14.3 on intel vs Apple Silicon is for example in the follow sample code deprecated messages aren't being surfaced under Apple Silicon . /// Access the bytes in the data. /// /// - warning: The byte pointer argument should not be stored and used outside of the lifetime of the call to the closure. @available(swift, deprecated: 5, message: "use `withUnsafeBytes<R>(_: (UnsafeRawBufferPointer) throws -> R) rethrows -> R` instead") public func withUnsafeBytes<ResultType, ContentType>(_ body: (UnsafePointer<ContentType>) throws -> ResultType) rethrows -> ResultType /// Calls the given closure with the contents of underlying storage. /// /// - note: Calling `withUnsafeBytes` multiple times does not guarantee that /// the same buffer pointer will be passed in every time. /// - warning: The buffer argument to the body should not be stored or used /// outside of the lifetime of the call to the closure. @inlinable public func withUnsafeBytes<ResultType>(_ body: (UnsafeRawBufferPointer) throws -> ResultType) rethrows -> ResultType
Mar ’23
Reply to A valid copy of xcode cannot be found
Visual Studio is a Microsoft product: Please go to Microsoft for all questions related to their products https://visualstudio.microsoft.com/vs/support/mac/
Replies
Boosts
Views
Activity
Mar ’23
Reply to this SDK is not supported by the compiler (the SDK is built with 'Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)', while this compiler is 'Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51)'). Please select a t
Because you need to recompile the xcframework with the same version of Xcode swift 5.7.2. If you own the source make the swift package a source package and not a binary package.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Mar ’23
Reply to How to apple for CarPlay entitlement certificate correctly ?
Focus on building and finishing the app. Worry about entitlement approval later. Once it works on car play and before rushing to release and getting the entitlement, open a beta testing period via testflight and get real-world feedback before going to the store. Did you log into the developer portal to see if the entitlements where added to the app id? https://developer.apple.com/documentation/carplay/requesting_carplay_entitlements
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’23
Reply to i updated my xcode from 13 to 14 and i'm getting 0__abort_with_payload error
Read the release notes for Xcode, iOS and macOS on what's in and what's out (WIWO)
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Mar ’23
Reply to i updated my xcode from 13 to 14 and i'm getting 0__abort_with_payload error
Read the release notes for Xcode, iOS and macOS on what's in and what's out (WIWO)
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Mar ’23
Reply to WhatsApp History Gone after latest iOS 16.4 beta update
Sorry, please report your WhatsApp issue to META. These are the risk encountered when using Beta software for everyday uses before an officially supported release.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Mar ’23
Reply to NSBox – What is difference between BoxType.separator and BoxType.primary
Read the API documentation, read the human interface guide ...
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Mar ’23
Reply to WKWebView CSS does not update (MacOS, SwiftUI)
Probably try injecting JS as well to reload the page.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’23
Reply to Previously compatible WiFi network is now not compatible due to iCloud Private Relay.
It’s pretty much an AP from my ISP that is fairly new. Will file the bug report. Thanks.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Mar ’23
Reply to iOS 16 CTCarrier deprecation
Financial institutions also use this API as a means to combat fraud. The alternative to deprecation could have been an entitlement request based on a genuine use case just certain Wifi APIs.
Replies
Boosts
Views
Activity
Mar ’23
Reply to Is Xcode 14.3 Apple Silicon Only - It won't start on my Intel anymore
Sometimes it will load other times just won't
Replies
Boosts
Views
Activity
Mar ’23
Reply to Push To Talk first recording bug
Did you set up any Microphone permission entries in the info plist?
Replies
Boosts
Views
Activity
Mar ’23
Reply to Is Xcode 14.3 Apple Silicon Only - It won't start on my Intel anymore
What I also noticed with Xcode 14.3 on intel vs Apple Silicon is for example in the follow sample code deprecated messages aren't being surfaced under Apple Silicon . /// Access the bytes in the data. /// /// - warning: The byte pointer argument should not be stored and used outside of the lifetime of the call to the closure. @available(swift, deprecated: 5, message: "use `withUnsafeBytes<R>(_: (UnsafeRawBufferPointer) throws -> R) rethrows -> R` instead") public func withUnsafeBytes<ResultType, ContentType>(_ body: (UnsafePointer<ContentType>) throws -> ResultType) rethrows -> ResultType /// Calls the given closure with the contents of underlying storage. /// /// - note: Calling `withUnsafeBytes` multiple times does not guarantee that /// the same buffer pointer will be passed in every time. /// - warning: The buffer argument to the body should not be stored or used /// outside of the lifetime of the call to the closure. @inlinable public func withUnsafeBytes<ResultType>(_ body: (UnsafeRawBufferPointer) throws -> ResultType) rethrows -> ResultType
Replies
Boosts
Views
Activity
Mar ’23
Reply to iOS 16 CTCarrier deprecation
Are you building a product for a financial institution that does this? Or just raising this as a general concern? The product has been built and in use for many years now.
Replies
Boosts
Views
Activity
Mar ’23
Reply to Getting (arm64) could not find object file symbol for every symbol in static library
Rosetta support was removed if building on Apple Silicon. So your C++ library might need to be rebuilt for arm64 or Apple Silicon. In my opinion Xcode 14.3 RC is not ready for prime time as it has trouble launching on Intel as well.
Replies
Boosts
Views
Activity
Mar ’23