Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
17 views

https://youtube.com/shorts/YXl0ijziTyM?si=RMP2ZQuyFlVsfg8e After the iOS 26 update, unwanted animations appear on UIButton. I'm using the attributedTitle property of UIButton.Configuration to change ...
 Macmillan's user avatar
0 votes
0 answers
39 views

libobjc.A.dylib _objc_retain_x0 16 AVKit -[AVSampleBufferDisplayLayer(AVPictureInPictureSuppport) avkit_sampleBufferDisplayLayerPlayerController] 36 AVKit -[AVSampleBufferDisplayLayer(...
SUN GUANGXIN's user avatar
1 vote
0 answers
41 views

I'm trying to present an action sheet from a regular UIButton on iOS 26 without showing the popover arrow. What I’ve tried so far: I watched the WWDC 2025 session “Build a UIKit app with the new ...
Luceefer's user avatar
0 votes
0 answers
70 views

How can I make the background of a ToolbarItemGroup clear with a glass (blur) effect in iOS 26? Is there a supported way to achieve this? I have tried to make the background clear but it didn't work ...
Mahmoud Abdelshafi's user avatar
1 vote
1 answer
81 views

Updating apps for iOS 26. Noticed that the toolbar (bottom placement) is laid out behind the tab bar in iPhone. So, in portrait mode you can't see the toolbar buttons. You can see them in landscape ...
Phantom59's user avatar
  • 1,127
0 votes
0 answers
96 views

I've been working on a small, SwiftUI/SwiftData app for personal usage. This has been going well until yesterday when I decided I should refactor the SwiftData side of things (split some tables up, ...
Peter M's user avatar
  • 7,583
0 votes
0 answers
45 views

When I run an ARSCNView session on iOS 26, I notice unexpected vertical margins at the top and bottom of the screen. Could you please explain why this happens and how I can make the ARSCNView fill ...
simd-float4x4's user avatar
1 vote
1 answer
90 views

I have an issue with navigation title jumping to top of the screen when search is being presented. Also, is there a way to keep the navigation transparency on the clock area while searching? Video ...
Vlad's user avatar
  • 13
1 vote
1 answer
72 views

I'm trying to achieve this in UIKit but have had no luck so far 👇 VStack(spacing: 4) { Menu { Button("Me", systemImage: "location.north.fill") { } ...
Amir M's user avatar
  • 396
2 votes
1 answer
183 views

I'm trying to create an SwiftUI iOS app with a fullscreen WebView and having trouble with content going behind status bar. Eg with the following code: import SwiftUI import WebKit struct ContentView: ...
Robbie Clarken's user avatar
1 vote
1 answer
161 views

I have this view with a GroupBox at the bottom. I apply the concentric clipShape and it looks great: struct ContentView: View { var body: some View { VStack { Spacer() ...
Darren's user avatar
  • 10.5k
1 vote
0 answers
87 views

I'm using .NET MAUI and targeting iOS 26. I have an Entry like this: <Entry Text="{Binding ItemQuantityInput, Mode=TwoWay}" Placeholder="Enter Quantity" FontSize=...
Deon's user avatar
  • 11
0 votes
1 answer
145 views

I am having some trouble with tab views with a color header and a large title. Upon first tab selection, the large title with green header appears great. But once the iPhone is rotated from portrait ...
Galen Smith's user avatar
2 votes
1 answer
207 views

I have an iOS app that uses UIKit. I have many view controllers using UITextField and all of them previously had rounded corners due to the border style: round, which is exactly what I wanted. Now, ...
IMSsam's user avatar
  • 97
0 votes
0 answers
58 views

When you build for iOS 26, app icons still have the iOS 26 Liquid Glass look when installed on previous iOS versions. (First three apps seem to be compiled for iOS 26, but install on iOS 18) After ...
Gizmodo's user avatar
  • 3,024
1 vote
2 answers
259 views

Prior to iOS 26 I would write something like this: let location = CLLocation(latitude: coor.latitude, longitude: coor.longitude) CLGeocoder().reverseGeocodeLocation(location) { placemarks, error in ...
kittonian's user avatar
  • 1,534
0 votes
0 answers
50 views

We have a UICollectionView whose cells have custom context menu highlight previews. In the delegate method collectionView(_:contextMenuConfiguration:highlightPreviewForItemAt:) we build a ...
Ugur's user avatar
  • 156
0 votes
1 answer
41 views

My app has a home widget feature , that when the user is selecting the configuration for their widget, they see the color of the item in the configuration intent, shaped as a filled square : ...
J.Doe's user avatar
  • 366
1 vote
1 answer
162 views

I have an old app which had been working fine till iOS 26 came out. In my app, I am using the .valueChanged event of UISlider to get the phase and do different things if it's .began, .moved, or .ended....
sudoExclamationExclamation's user avatar
6 votes
0 answers
230 views

I have an issue on iOS 26 with an app built with iOS 18. After a navigation stack pop, the keyboard safe area is not being taken into account which causes UI to be obscured. This happens on App Store ...
Nikolay Suvandzhiev's user avatar
0 votes
1 answer
173 views

I have a UINavigation controller which on the second viewController has a Google Map view. In iOS 18 you would navigate normally around the map, and swipe your finger from the left side of the screen ...
Nic Hubbard's user avatar
  • 42.3k
1 vote
1 answer
155 views

How to prevent the button background darkening after closing a popover? The attached gif shows the button becoming darker before it resets to glass. Here is the code for the button and the popover: ...
Sebastian Fay's user avatar
1 vote
0 answers
139 views

In iOS 26, you can easily create a Liquid Glass element like this: let glassView = UIVisualEffectView(effect: UIGlassEffect(style: .clear)) glassView.frame = CGRect(x: 100, y: 200, width: 200, ...
Gizmodo's user avatar
  • 3,024
3 votes
1 answer
251 views

I had some code set up in some XCUITest to uninstall the app before starting it again to make sure it is in a clean state. That code looks like: let app = XCUIApplication() app.launch() app.terminate()...
streem's user avatar
  • 9,172
1 vote
2 answers
139 views

Before iOS 26 existing code working good, but from iOS 26 onwards getting nil/empty ssid data. My old code for below iOS 26 - func fetchSSIDInfo() -> String { var currentSSID = "" ...
Naresh's user avatar
  • 18.1k