Posts

Post not yet marked as solved
1 Replies
0 Views
Hello, you can find an example of the implementation on the Apple Developer Documentation here: https://developer.apple.com/documentation/avfoundation/capture_setup/setting_up_a_capture_session/. If you scroll down you should be able to find the Display A Camera Preview section. Here is the example code: class PreviewView: UIView { override class var layerClass: AnyClass { return AVCaptureVideoPreviewLayer.self } /// Convenience wrapper to get layer as its statically known type. var videoPreviewLayer: AVCaptureVideoPreviewLayer { return layer as! AVCaptureVideoPreviewLayer } } self.previewView.videoPreviewLayer.session = self.captureSession
Post not yet marked as solved
3 Replies
0 Views
Hello, I've noticed the same thing on an iPhone 13 Pro Max and an iPad Air 4 both running iOS 16 Beta 1. I've opened a radar: FB10313246. I've tried different configurations but couldn't get it to work.
Post not yet marked as solved
17 Replies
0 Views
Same happened to me with an iPhone 12 Pro Max with iOS14.4 installed along with Xcode 12.4. The only solution that worked for me was restarting the iPhone. I've just opened a bug report FB9019586
Post not yet marked as solved
5 Replies
0 Views
Currently Apple Official UI Kits are not available, please file a feedback on http://feedbackassistant.apple.com requesting it. Thanks!!
Post marked as solved
4 Replies
0 Views
Hello, first of all have you tried with the delegate textViewDidChange? https://developer.apple.com/documentation/uikit/uitextviewdelegate/1618599-textviewdidchange Probably this is going to act the same as your Notification, but worth a try. Otherwise the only thing I would see is to use the shouldChangeTextIn and fixing the problem it has doing so: func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool { 	 	 let	char = string.cString(using: String.Encoding.utf8)! 	 	 let isBackSpace = strcmp(char, "\\b") 	 	 var currentText = "" 	 	 if (isBackSpace == -92) { 			currentText = textField.text!.substring(to: textField.text!.index(before: textField.text!.endIndex)) 	 } 	 else { 			 currentText = textField.text! + string 	 } return true } This removes the backspaced string from your currentText as well as adds it if you have typed it in.
Post not yet marked as solved
8 Replies
0 Views
Have you tried using a sample UIColor like UIColor.black? The only thing that comes to my mind is that iOS 12 doesn't handle dark mode and if your color is on the .xcassets with dark mode set maybe it gives it some problems
Post not yet marked as solved
8 Replies
0 Views
Hello, I think the best place to send Apple feedbacks is through their dedicated website: https://feedbackassistant.apple.com/welcome Thank you and I agree with what you are suggesting!
Post not yet marked as solved
3 Replies
0 Views
Hello, if you have any suggestion for Apple, please open a feedback @ https://feedbackassistant.apple.com Thanks!
Post not yet marked as solved
8 Replies
0 Views
Hello! In order to help you better, could you post the code you used in order to set the background color? Thank you!
Post not yet marked as solved
2 Replies
0 Views
Try maybe to set isTranslucent of the searchBar to false.
Post not yet marked as solved
2 Replies
0 Views
Replied In Upload error
Hello, could you describe better the error maybe trought some screenshots? Probably useless question.. : Are you sure you are using the right account with iTunes Connect Access?
Post not yet marked as solved
14 Replies
0 Views
Down in Italy too... Bug report submitted