We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you open a new window and instantiate the camera, take a picture and then close that window, when opening again always throws an error like this
line = 2; [ERROR] : message = "<_UIBackdropViewSettingsDark : 0x16dc5ac0>\n averageHue: 0.00\n averageSaturation: 0.00\n averageBrightness: 0.00\n contrast: 0.00\n grayscaleTintLevel: 0.11\n grayscaleTintAlpha: 0.73\n colorTint: (null)\n colorTintAlpha: 1.00\n: An -observeValueForKeyPath:ofObject:change:context: message was received but not handled.\nKey path: adjustingExposure\nObserved object: <AVCaptureFigVideoDevice: 0x16def0b0 [Back Camera][com.apple.avfoundation.avcapturedevice.built-in_video:0]>\nChange: {\n kind = 1;\n new = 0;\n}\nContext: 0x0"; [ERROR] : sourceId = 47308256;
The text was updated successfully, but these errors were encountered:
Btw, I was able to fix the issue.
breaks when the context is nil, comment this from BeK0sukeTicameraView.m and recompile.
I can provide a binary file is anyone needs it. Cheers.
/* [captureDevice addObserver:self forKeyPath:@"adjustingExposure" options:NSKeyValueObservingOptionNew context:nil]; */
Sorry, something went wrong.
Or, put this code in dealloc section.
AVCaptureDevice *device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo]; [device removeObserver:self forKeyPath:@"adjustingExposure"];
#3
2d0c2e8
No branches or pull requests
If you open a new window and instantiate the camera, take a picture and then close that window, when opening again always throws an error like this
line = 2;
[ERROR] : message = "<_UIBackdropViewSettingsDark : 0x16dc5ac0>\n averageHue: 0.00\n averageSaturation: 0.00\n averageBrightness: 0.00\n contrast: 0.00\n grayscaleTintLevel: 0.11\n grayscaleTintAlpha: 0.73\n colorTint: (null)\n colorTintAlpha: 1.00\n: An -observeValueForKeyPath:ofObject:change:context: message was received but not handled.\nKey path: adjustingExposure\nObserved object: <AVCaptureFigVideoDevice: 0x16def0b0 [Back Camera][com.apple.avfoundation.avcapturedevice.built-in_video:0]>\nChange: {\n kind = 1;\n new = 0;\n}\nContext: 0x0";
[ERROR] : sourceId = 47308256;
The text was updated successfully, but these errors were encountered: