how to implement iOS 26 design

Asked on 06/11/2025

1 search

To implement the iOS 26 design, you should focus on adopting the new design system introduced by Apple, which includes a material called Liquid Glass. This material is central to the new design, providing a translucent, dynamic, and lively appearance across the system. Here are some steps and resources to help you implement the iOS 26 design:

  1. Recompile with the iOS 26 SDK: Start by recompiling your app using the iOS 26 SDK. This will automatically update many of your app's UI components to the new design.

  2. Adopt Liquid Glass: Liquid Glass is a new material that gives a dynamic and adaptive look to your app. It is used in various components like navigation bars, toolbars, and controls. You can learn more about it in the session Build a UIKit app with the new design.

  3. Use Standard Containers: Utilize standard containers like UISplitViewController and UITabBarController to support flexible layouts and the new design aesthetics. This is discussed in the session What’s new in UIKit.

  4. Update Navigation and Toolbars: Navigation bars and toolbars now have a glass appearance and float above the content. Learn more about this in the session Build a UIKit app with the new design.

  5. Customize with New APIs: Use new APIs to tailor the design to your app, especially for custom views and controls. This is covered in the session Platforms State of the Union.

  6. Review and Refine: Audit your app screen by screen to identify which views stand out and refine them to match the new design. Consider whether standard UIKit controls may be a better fit for your custom controls.

For a comprehensive guide, you can watch the session Build a SwiftUI app with the new design to see how these principles apply to SwiftUI apps as well.