More than 10% of iPhone owners eyeing a folding phone – survey
#Mobile

More than 10% of iPhone owners eyeing a folding phone – survey

Mobile Reporter
4 min read

A recent CNET survey shows 14% of U.S. iPhone users are interested in a folding device, a figure higher than many analysts expected. The result hints at a modest but real demand that could shape Apple’s future hardware roadmap and affect cross‑platform mobile development.

More than 10% of iPhone owners eyeing a folding phone – survey

Featured image

Apple has not officially confirmed a folding iPhone, but a new CNET poll of U.S. adults reveals that 14 % of iPhone owners say they would consider a foldable handset. The overall interest in new form factors sits at 13 % across all smartphone users, with price (55 %) and battery life (52 %) remaining the top decision factors.

Why the numbers matter to developers

Even a modest uptake can have ripple effects for the iOS ecosystem and for teams that ship apps on both iOS and Android:

  1. Screen‑size variability – A foldable iPhone would likely launch with a 6.7‑inch unfolded display and a compact 5‑inch folded mode. Apps that rely on fixed‑size layouts will need to adopt more flexible UI techniques such as UISplitViewController, UIWindowScene size classes, and SwiftUI’s adaptive stacks.
  2. Multitasking expectations – Apple’s current iPad multitasking model (Slide Over, Split View) could be extended to a foldable iPhone. Developers should start testing multi‑window support on iPadOS 18 and consider how their app’s state restoration works when the device transitions between screen configurations.
  3. Performance budgeting – Early rumors peg the first folding iPhone at a $2,000‑plus price point, which suggests premium hardware (high‑refresh OLED, large memory pool). Nevertheless, developers must still respect the lower‑end iPhone 15 line that will dominate market share. Profiling with Instruments on both high‑end and legacy devices will remain essential.
  4. Cross‑platform parity – Android already has several foldables (Galaxy Z Fold, Huawei Mate X). Teams using Flutter, React Native, or Kotlin Multiplatform will find a new iOS target that mirrors the Android experience, reducing the need for platform‑specific work‑arounds.

Migration checklist for a folding‑ready iOS app

If you maintain an iOS codebase and want to be ready for a potential foldable launch, follow these steps:

  1. Audit layout constraints
    • Replace hard‑coded widths with UILayoutGuide and NSLayoutDimension constraints that respect view.safeAreaInsets.
    • Test with the Xcode 16 simulator’s Foldable iPhone configuration (available in the Device dropdown).
  2. Enable size‑class awareness
    • In SwiftUI, wrap UI in GeometryReader and use @Environment(\. horizontalSizeClass) to adjust view hierarchies.
    • In UIKit, override traitCollectionDidChange(_:) to switch between compact and regular layouts.
  3. Implement state preservation
    • Store UI state in SceneDelegate’s stateRestorationActivity so the app can resume seamlessly after a fold/unfold event.
  4. Review multitasking support
    • Add the UIRequiresFullScreen = NO key in Info.plist.
    • Ensure your app’s UIScene configuration supports multiple windows on iPadOS; this will carry over to a foldable iPhone if Apple follows the iPad model.
  5. Test on Android foldables
    • Run the same UI tests on a Galaxy Z Fold using Android Studio’s emulator. Tools like Appium or Detox can run the same test suite across both platforms, catching layout regressions early.

Cross‑platform considerations

For teams that share code between iOS and Android, a folding iPhone narrows the gap between the two ecosystems:

  • Flutter: The framework already abstracts screen size via MediaQuery. Adding a custom FoldableLayout widget that reacts to window.physicalSize changes will provide a unified API for both platforms.
  • React Native: Use the useWindowDimensions hook and listen for Dimensions.addEventListener('change', ...) to handle fold/unfold events. The community library react-native-foldable (still in beta) can be a starting point.
  • Kotlin Multiplatform Mobile (KMM): Share UI logic that calculates layout breakpoints. The iOS implementation can pull the current UIScreen.main.bounds while Android reads WindowMetrics.

By designing with flexibility now, you avoid a massive rewrite when Apple finally releases a folding device.

What to watch next

  • Apple’s WWDC 2026 keynote – Keep an eye on any mention of “flexible displays” or new UIWindowScene APIs.
  • Pricing disclosures – If the first folding iPhone lands above $2,000, developers may need to adjust monetization strategies (e.g., premium in‑app purchases) to match the higher‑end user base.
  • Developer beta releases – Xcode 16 beta 2 includes a Foldable iPhone simulator profile. Early testing will give you a head start.

The survey suggests that a non‑trivial slice of the iPhone community is at least curious about a foldable form factor. While price will likely keep the product niche at launch, the development implications are real. Preparing your code now can turn that curiosity into a smooth user experience when (or if) Apple finally folds its way into the market.


Ben Lovejoy is a British technology writer and EU editor for 9to5Mac. He also writes fiction, including technothriller novels and short stories.

Dell 49-inch curved monitor

Comments

Loading comments...