Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
32 views

In iOS 26.1, a new system setting allows users to toggle the Liquid Glass design between 'Tinted' and 'Clear' modes. I need to programmatically read this preference to adapt my UI. Which specific ...
刘笑尘's user avatar
-1 votes
0 answers
56 views

For UIAlertController In iOS version < 26, text color was Black for title and message. In iOS version = 26, text color of title is black. What is font/color of message label? Please see below ...
pkc's user avatar
  • 8,548
1 vote
1 answer
111 views

before updating to iOS 26 my list was looking fine but now it has abnormal paddings and because I am using fixed height, I had to increase the height from 40 to 60 to fit the text. There are currently ...
iosDev73's user avatar
-3 votes
0 answers
58 views

When my view controllers appears, large navigation title is appearing. But when I scroll, then small navigation title is not appearing. I am facing this issue only in iOS 26. In older iOS versions, ...
pkc's user avatar
  • 8,548
0 votes
0 answers
53 views

UITabBarAppearance Background Not Applying UITabBarAppearance *appearance = UITabBarAppearance.alloc.init; [appearance.stackedLayoutAppearance.normal setTitleTextAttributes:@{...
aberlt's user avatar
  • 1
0 votes
0 answers
68 views

I am trying to apply .glassEffect to some controls that are in a horizontal scroll view in a bottom .safeAreaBar. No matter what I try, there is a persistent pesky flickering of the background that I ...
Andrei G.'s user avatar
  • 2,686
-1 votes
0 answers
42 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
59 views

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

After updating from iOS 26 to iOS 26.1, all my transparent system elements (i.e. UITabBar, UIBarButtonItem) started rendering with a dark background tint. In iOS 26 the same configuration looked fully ...
Krzysztof Orłowski's user avatar
1 vote
0 answers
61 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
2 answers
206 views

I have an iOS 26 app in which I have defined the app wide tintColor to be green: UIView.appearance().tintColor = UIColor.systemGreen I have a done button in my navigation bar whose style is ....
sudoExclamationExclamation's user avatar
1 vote
1 answer
109 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
1 answer
109 views

For more customization, I made my own menu style Picker in SwiftUI using a Menu component. This is the bare bones version of it that allows the user to select a color: Menu { ForEach(Color....
Ser Pounce's user avatar
  • 14.3k
-12 votes
1 answer
254 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,591
1 vote
0 answers
118 views

I'm trying to use UIPickerView as the textfield's inputView and also add UIToolBar as the textfield's inputAccessoryView. In iOS 26, it adds some weird transparent background (like a liquid glass ...
Nati's user avatar
  • 21
0 votes
0 answers
50 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
0 votes
0 answers
51 views

I'm testing an app with the new background extension. Unfortunately, every time I try to upload to App Store Connect the process fails with the error below. Confirmed that both the extension and app ...
Leon Vladimirov's user avatar
1 vote
1 answer
98 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
-2 votes
0 answers
66 views

The buttons in the navigation bar are not available in the element tree after iOS 26 upgrade of the test phones. The same IPA version, the same XCode version, but different trees on different phones. ...
Erkan Erol's user avatar
  • 1,350
1 vote
1 answer
102 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
1 vote
1 answer
73 views

When wrapping SwiftUI.Menu inside a GlassEffectContainer, the menu open/close morph animation stops working. My question is, how to make it work again? Here's a minimal example to check the issue 👇 ...
Amir M's user avatar
  • 396
2 votes
1 answer
259 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
164 views

I'm trying to recreate Apple's cool-looking toolbar buttons in app like Journal on the iPad. When I hover over them with my Pencil - they behave like normal glass buttons. But when the button is ...
Anna's user avatar
  • 121
1 vote
1 answer
167 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
0 votes
0 answers
225 views

Navigation bar back button sometimes has a white background on its liquid glass layer when I navigate to the screen. I want it to be of clear background as shown below. I am not setting any tint or ...
Tejeshwer's user avatar
1 vote
0 answers
107 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
0 answers
117 views

After the update to iOS 26, we are not able to open the iPhone's WiFi settings page programmatically. We had been using the URL App-Prefs:root=WIFI, but now this URL just opens the app's own settings ...
mrAlmond's user avatar
  • 409
0 votes
1 answer
148 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
1 vote
1 answer
123 views

Steps: I click select, on list select option, list is collapsed. After that on other platforms select stay focused. On iOS26 only (Chrome and Safari both) body gain focus. WebKit in Safari 26 ...
user31742007's user avatar
2 votes
1 answer
249 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
1 answer
182 views

I am having a UISplitViewController with style doubleColumn. Although the documentation said that setting primaryBackgroundStyle to none will allow you to control the background appearance of the ...
Noura's user avatar
  • 744
0 votes
0 answers
60 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
3 votes
1 answer
401 views

I am encountering an issue when building my SwiftUI app with the iOS 26 SDK. When I use a custom background color for the navigation bar in a Form view, the navigation header disappears. This only ...
PSkyMax's user avatar
  • 31
1 vote
2 answers
300 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
3 votes
0 answers
267 views

Changing the color of the selected tab icon works as before: let appearance = UITabBarAppearance() appearance.stackedLayoutAppearance.selected.iconColor = UIColor(Color.bg.whitePrimary) UITabBar....
szhukov's user avatar
  • 48
0 votes
0 answers
53 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
1 vote
1 answer
160 views

I want these buttons separate from the capsule, but still side by side as they are. I think it'll look a lot cleaner like this rather than being crammed in this capsule and reduced in size. Maybe this ...
JSCoding's user avatar
0 votes
1 answer
44 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
2 votes
0 answers
214 views

For various reasons, people create their own tab bar from scratch. Previously, it was fairly simple by adding a horizontal stack with the buttons for each tab and a UIVisualEffectView with ...
sudoExclamationExclamation's user avatar
1 vote
1 answer
193 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
0 votes
2 answers
761 views

Since updating to iOS 26, the system back button in my UINavigationController now has a rounded, translucent glass-like background (a “magnifying glass” capsule). This breaks my app’s design, where I ...
ahoo ahooo's user avatar
7 votes
0 answers
249 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
101 views

On iPadOS 26, the same .popover placed on a button in .principal placement behaves differently than when placed in .primaryAction. Take a look at this gif: Notice how in the .primaryAction the ...
Anna's user avatar
  • 121
0 votes
1 answer
215 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
2 votes
0 answers
178 views

After closing the first select by clicking outside, quickly clicking the second select often opens it briefly and then immediately closes. This might be caused by event handling or focus issues. How ...
Trolife Yo's user avatar
1 vote
1 answer
158 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 votes
2 answers
188 views

On one of my app screens, when a user taps a Button on a .toolbar, it displays a popover that has a list of file links. When a link is tapped, a fullScreenCover should appear displaying the contents ...
Ser Pounce's user avatar
  • 14.3k
1 vote
0 answers
147 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
0 votes
0 answers
70 views

I’m trying to display a search bar directly inside the navigation bar (not below it), so it stays visible all the time — similar to Telegram’s design. When I assign the search bar to the navigation ...
Aziz Bibitov's user avatar
3 votes
1 answer
276 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