Posts

Post marked as solved
1 Replies
484 Views
Hello tonight in App Store connect when I tapping in Contact us part I received this error is it normal and server error or it is just for me !! 403 Forbidden You don't have permission to access /contact/ on this server. Apache Server at itunespartner.apple.com Port 443
Posted Last updated
.
Post not yet marked as solved
0 Replies
323 Views
near 4 Weeks when I sent one Message to Apple Contact us I received one Auto no-Replay Email we will back to you in one or Two business day !!! But Appel Answer me in 2 weeks Later , what happe !!! in All Part form Contact Us
Posted Last updated
.
Post marked as solved
1 Replies
439 Views
I found problem with my both two devices after setting up  iOS 14.5 . I have two devices , one is iPhone XS Max and another one is iPhone 12 Pro Max  . Yesterday , I decided to update the iOS of my both devices to the version 14.5 , during the installation , my devices freeze (can't finish installation) and now both are not working any more .  I have one White Apple logo plus one Complete White Line and I can't rest my phones at all !!! is it just me or ? Please help me I download last version released from apple to setting iPhone not beta at all
Posted Last updated
.
Post not yet marked as solved
3 Replies
738 Views
my code works in iOS 12 last version but after iOS 13 this code can't call the selectorI used **UIGestureRecognizerDelegate** for iOS 13here is my code let panGest = UIPanGestureRecognizer(target: self, action: #selector(self.handleTap(_:))) panGest.delegate = self txtVw.addGestureRecognizer(panGest)here is my let txtVw = subVws as! UITextView ,txtVw = subVws as! UITextViewthis function with sef.view its work but i do'nt have self.view i have one subview I I used one code like this : let panGest = UIPanGestureRecognizer(target: self, action: #selector(self.handleTap(_:))) self.view.addGestureRecognizer(panGest) its work with self.view but for subview how can i call ? is not work self.handleTap and its not call gestureRecognizer(_:shouldRecognizeSimultaneouslyWith:)gestureRecognizer(_:shouldRecognizeSimultaneouslyWith:)
Posted Last updated
.
Post not yet marked as solved
2 Replies
2.4k Views
Here is my Code it work perfectly in iOS 12 but for iOS 13 code can't give exactly values let pdfViewGestureRecognizer = PDFViewGestureRecognizer() pdfView.autoScales = true pdfView.displayMode = .singlePage pdfView.displayDirection = .horizontal pdfView.usePageViewController(true, withViewOptions: [UIPageViewControllerOptionInterPageSpacingKey: 20]) pdfView.addGestureRecognizer(pdfViewGestureRecognizer) pdfView.document = pdfDocumenthere is first problem is not go here I adding great delegate for Gesture and other details find here but isn't work too !!class PDFViewGestureRecognizer: UIGestureRecognizer { var isTracking = false override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent) { isTracking = true print ("but not iOS 13.2.3") } override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent) { isTracking = false } override func touchesCancelled(_ touches: Set<UITouch>, with event: UIEvent) { isTracking = false }}here is second part let pdfSubVws = pdfView.subviews print("subVws ",pdfSubVws) for subVws in pdfSubVws { if (String(describing: subVws).range(of:"UIPageViewControllerContentView") != nil) { let pageVc = subVws.subviews for subVws in pageVc { if (String(describing: subVws).range(of:"UIQueuingScrollView") != nil) { let QueueVc = subVws.subviews // print("QueueVcQueueVc ", QueueVc) for subVws in QueueVc { if (String(describing: subVws).range(of:"UIView") != nil) { let viewVc = subVws.subviews // print("\n\nviewVcVcQueueVc ", viewVc) for subVws in viewVc { if (String(describing: subVws).range(of:"UIView") != nil) { let SubviewVc = subVws.subviews // print("\n\nSubviewVcSubviewVc ", SubviewVc) for subVws in SubviewVc { if (String(describing: subVws).range(of:"UIScrollView") != nil) { let finalVw = subVws.subviews // print("\n\nfinalVw ", finalVw) // for subVws in finalVw { if (String(describing: subVws).range(of:"UIView") != nil) //here is ok iOS 12 It's ok but not iOS 13.2.3 {
Posted Last updated
.