"Reading from Public Effective User Settings" in iOS 10

Error message : [MC] Reading from public effective user settings & [MC] System group container for systemgroup.com.apple.configurationprofiles path is

It occurs to me. The same logs in console when I use textField. Follow is my operation:

  • From Xcode menu open: Product > Scheme > Edit Scheme
  • On your Environment Variables set OS_ACTIVITY_MODE in the value set disable

I solved it thanks to this discussion.

Reading from public effective user settings Error

This is how I fixed this. I went to the Plist file and added Privacy settingSample Image

For more details please see here [Change Privacy Setting]
https://useyourloaf.com/blog/privacy-settings-in-ios-10/

Error: [MC] Reading from private effective user settings

This message is not an error, this is simply a (somewhat buggy) log message in the debug console stating that the app is reading from user settings. You can safely ignore it.

No Video Output and [MC] Reading from public effective user settings. Error in Swift/iOS 11

The issue is in a different function call in captureOutput. This is the new function call in iOS 11 for captureOutput in AVCaptureVideoDataOutputSampleBufferDelegate:

func captureOutput(_ output: AVCaptureOutput, didOutput sampleBuffer: CMSampleBuffer, from connection: AVCaptureConnection) {
guard let uiImage = imageFromSampleBuffer(sampleBuffer: sampleBuffer) else { return }
DispatchQueue.main.async { [unowned self] in
self.delegate?.captured(image: uiImage)
}
}

Notice the change between "didOutput sampleBuffer:" and "didOutputSampleBuffer sampleBuffer:"



Related Topics



Leave a reply



Submit