what changes do i have to make in my app to support liquid glass

Asked on 06/12/2025

1 search

To support Liquid Glass in your app, you can follow these steps based on the sessions from WWDC:

  1. Build with Xcode 26: Start by building your app with Xcode 26. Many of the new design elements, including Liquid Glass, will be automatically applied to standard controls in your app. This is a good first step to see how your app looks with the new design system.

  2. Audit Your App: Go through your app screen by screen to identify which views stand out and may need adjustments. Pay special attention to custom controls and decide if standard UIKit, SwiftUI, or AppKit controls might be a better fit with Liquid Glass.

  3. Use System Views and Controls: Where possible, use system views and controls to ensure the best experience with Liquid Glass. This helps maintain a consistent look and feel across your app.

  4. Limit Liquid Glass to Important Elements: Liquid Glass is designed to be an interactive layer that floats above your content. Limit its use to the most important elements of your app to avoid visual clutter and maintain a clear hierarchy.

  5. Adopt New APIs: Consider adopting new APIs to tailor the design to your app. This might include using the new UI Visual Effect view for custom views or the NS glass effect view in AppKit.

  6. Customize Appearance: You can customize the appearance of Liquid Glass using properties like corner radius and tint color. This allows you to maintain your app's unique identity while adopting the new design.

  7. Consider Accessibility: Liquid Glass offers several accessibility features, such as reduced transparency and increased contrast, which can be automatically applied based on system settings.

For more detailed guidance, you can refer to the following sessions:

These sessions provide a comprehensive overview of how to integrate Liquid Glass into your app across different frameworks.