Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
0 votes
2 answers
79 views

Is the new "small, rounded" popup seen now in iOS (eg: weather app) available in latest UIKit?

Example below, Is this popup style now available standard in iOS? (Perhaps as one of the huge number of variations of the new 'popup style buttons'?) I know that some people on here are clever enough ...
Fattie's user avatar
  • 13.9k
2 votes
1 answer
234 views

Animate UIBarButtonItem with iOS 17 pulse symbol effect not working (without UIImageView)

I'm trying to get the new symbol animation from iOS 17 working for a UIBarButtonItem. The WWDC 2023 video linked to below, "Animate symbols in your app," promises the following: First of ...
Mario's user avatar
  • 2,487
0 votes
0 answers
43 views

Wkwebkitview iOS 17 Page break

While printing the page using WkWebkit the line is slashed into two pieces and printed on different pages . The issue is observed only on iOS 17 I had tried page-break but I didn't work Could any one ...
Rajkumar Pamu's user avatar
0 votes
0 answers
83 views

In IOS 17 version, pdf Data is getting truncated at the page end and displaying other half in next page in a Pdf render

I need help for this issue which is happening only in ios 17 ipad devices. I have an application which generates report in a pdf form using uikit built-in functions(UIGraphicsBeginPDFContextToData, ...
Ramesh Gopanwar's user avatar
-1 votes
1 answer
254 views

iOS 17 UIImageView tintColor issue

Applying color picked from UIColorPickerViewController to UIImageview's tintColor(a color having kCGColorSpaceModelRGB ColorSpace), then getting tintColor from that same UIImageView is always giving ...
Mansi Golakiya's user avatar
2 votes
0 answers
259 views

UICollectionView.scrollToItem(at:at:animated:) scroll the section out of view on IOS 17

I found that sometimes call UICollectionView.scrollToItem(at:at:animated:) would scroll to a weird place on IOS 17 device and Mac OS 14 with Xcode 15, It's ok on below IOS 17 device (IOS 16...). Here ...
Austin Huang's user avatar
2 votes
0 answers
148 views

allowsEdgeAntialiasing not working on iOS17

I have some UIImageView rotated (using the transform property) in an app and I have noticed that on iOS17 the edges are heavily aliased, this is something I addressed originally by setting ...
displayname's user avatar
0 votes
0 answers
558 views

Crash when push to webView on iOS 17

After updating iOS 17, pushing from the controller in webview stopped working for me, and it throws the following error when pushing: Thread 1: EXC_BAD_ACCESS (code=2, address=0x16f497ff0)! Anyone who ...
Махмуджан Ниязов's user avatar
1 vote
0 answers
333 views

SKStoreProductViewController fails to present on iOS 17

I experience a serious issue where calling presentViewController: animated: on SKStoreProductViewController is executed and completion is called, but the view controller isn't visible on screen. The ...
gsalti's user avatar
  • 11
3 votes
1 answer
2k views

Swipe back gesture not working in iOS 17 when NavBar is hidden - Swift UI

I have been using the following extension in Swift UI to enable swipe back gestures even when the navigation bar is hidden. However, after updating to iOS 17 (beta), it seems that this code is no ...
0xAli's user avatar
  • 33