Post

Replies

Boosts

Views

Activity

errors encountered while discovering extensions: Error Domain=PlugInKit Code=13 "query cancelled" UserInfo={NSLocalizedDescription=query cancelled}
I got this error when i try to choose photo from Library on real device only , i added privacy in info.plist i use this code: @objc func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any])   {     if let image = info[UIImagePickerController.InfoKey.originalImage] as? UIImage {       self.profileImage.image = image     }else{       debugPrint("Something went wrong")     }     dismiss(animated: true, completion: nil)   } and it never set the image to the imageView
1
0
662
Nov ’20
Prevent screen recording
I have an app that provides videos that i want to prevent leaking by screen recording i just used UIScreen.main.isCaptured and add uiview to top of window it worked but if i closed the app from the background and start recording then i opened the app it doesn't work so how can i prevent this from happening . Thanks in advance
2
0
622
Sep ’20