Issue:
In iOS 26 (tested on Developer Beta), AVCaptureMetadataOutputObjectsDelegate no longer receives callbacks when using .face detection.
metadataOutput.metadataObjectTypes = [.face]
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
NFC reading starts but after BAC, during the reading of DG2 the NFC stops reading and returns with Tag connection Lost error .
It almost fails everytime on iPhone 15 Pro max with the following error. What's the solution for this?
This is really important because our app entirely relies on the NFC data to proceed forward. This always fails in iPhone 15 & 16. Same card works fine on older iPhone models. What change should we do or include for the newer models.
Error Domain=NFCError Code=102 "Tag response error / no response" UserInfo={NSLocalizedDescription=Tag response error / no response, NSUnderlyingError=0x303bd6af0 {Error Domain=nfcd Code=29 "Tag Error" UserInfo={NSLocalizedDescription=Tag Error, NSUnderlyingError=0x303bd6910 {Error Domain=com.apple.nfstack Code=20 "No response from tag" UserInfo={NSLocalizedDescription=No response from tag}}}}}
I have a framework (Framework1) that uses another NFC framework.
I want to check if the NFC framework is imported in the parent app and, if so, reference files dependent on the NFC framework inside Framework1.
Is this possible in Swift on iOS using Xcode?
We use CoreNFC feature for few clients. For clients who don't use NFC or add NFC related permission, the app is rejected on App Store.
is there a way to make CoreNFC optional in the library and not lead to app store rejection for parent app who do not use this feature?
Trying to access camera hardware using
let deviceDiscoverySession = AVCaptureDevice.DiscoverySession(deviceTypes: [.builtInWideAngleCamera], mediaType: AVMediaType.video, position: AVCaptureDevice.Position.front)
guard let captureDevice = deviceDiscoverySession.devices.first else {
print("Failed to get the camera device")
}
In many devices I get the Failed to get camera device error.
Devices like
iPhone XS
iPhone X
iPhone 7
iPhone 11
iPhone 11 Pro Max
iPhone 8
iPhone14,7
iPhone 12
iPhone XR
iPhone SE (2nd generation)
iPhone 13
iPhone 13 Pro
iPhone 6s
iPhone 6s Plus
Is there a reason why this might happen if the hardware is functioning properly. Please help as a lot of users are facing this issue.
Is it possible to display the screen same as the size of iphone on Ipad even if the app supports iPad.
Want to prevent resize of screens on iPad for a library even though the app supports iPad.
is that possible?
We are building a framework which will be used by other apps. Want to integrate crash reporting and diagnostics for our framework. Want to report crashes to our backend happening inside our framework only and ignore app level crashes. Is it possible to filter crashes like that ?