react / react/react-native

[iOS] TextInput `autoFocus` called in `didMoveToWindow` causing transition glitches with UIKit

オープン
#56,595 コメント 1 件 リアクション 13 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

Component: TextInput Needs: Triage :mag: Platform: iOS
主要言語
C++
スター
127k
フォーク
25.3k
平均マージ
1日 23時間
マージ済み PR(30日)
4

説明

Description

In react-native iOS apps its very common to have a setup where screens are represented as individual UIViewControllers. The most common case is when using:

There is a problem is with transitions between two UIViewController when the new screen contains a <TextInput autoFocus={true} />:

https://github.com/user-attachments/assets/cecca207-bc5f-47d8-a2cc-5e5304592879

There are three issues with the transition:

  • (Not very well visible in the video, but) there is a hang before the screen transition starts
  • The transition doesn't progress forward all the way. At one point it seems like its slightly reset back, before moving forward again
  • The keyboard changes its color weirdly from dark to light (i also noticed that's not visible in the video, you can see on the second video below)

Now, your first reaction might be that this is a bug with react-native-screens. It's not, let me explain.
The "problem" is that react-native TextInput implementation calls becomeFirstResponder in didMoveToWindow:

https://github.com/facebook/react-native/blob/fb0d28c6fd7dd3ed961f7d96c7072cf37b2d228d/packages/react-native/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputComponentView.mm#L120-L127

If you try the same in a native iOS app, you can reproduce the issue! I created a sample native iOS app and tried this (the second transition in the recording is actually fine, so this is a bit of a race condition thing it seems):

https://github.com/user-attachments/assets/a621d2b8-2242-409f-b2bf-5c5144ed08d9

Code can be found here

It seems like this was added back in 2019/2020 to react-native, and back then it seemed to be the correct way to handle the transition correctly (ironically without that code it was causing the same issue i am reporting now)

And it seems like this was working fine, until iOS 16 came out. Since then new issue reports appeared on react-native-screens about this:

And in that sense, this seems to me a bit also like an iOS regression. Now, is this a bug we should just delegate to apple to fix in iOS?
I was contemplating about that, and I think it would be good to raise the issue, but at the same time it seems like its not 100% apple's fault.

After some research and talking to some iOS developers they all told me that you'd usually request focus for an input in viewDidAppear, not in didMoveToWindow. In didMoveToWindow we don't know if there is a transition is still in progress, where viewDidAppear seems to be the place we can be absolutely sure our view is present, and the VC fully appeared.
This does change the style of the transition a bit, as you will see the screen transition finish and only then the keyboard appears [but as a pay off it's never buggy]:

https://github.com/user-attachments/assets/2f2c53ce-87d8-4e8c-8f3d-427384ef4ee3

I checked all native iOS apps on my phone, including some of apple's, and it seems like all open the keyboard after the VC transition finished. I vaguely recall that when iOS 16 came out people were complaining that apple "broke the keyboard".

I will open the discussion on how we may want to address in the comments below.

Steps to reproduce
  1. Clone the reproducer
  2. Run it, click the button
React Native Version

0.85.2

Affected Platforms

Runtime - iOS

Output of npx @react-native-community/cli info
info Fetching system and libraries information...
System:
  OS: macOS 26.4.1
  CPU: (16) arm64 Apple M4 Max
  Memory: 117.55 MB / 48.00 GB
  Shell:
    version: "5.9"
    path: /bin/zsh
Binaries:
  Node:
    version: 22.14.0
    path: /nix/store/04fc23dsflkxl4s9p6lkigia1hq3vjp2-nodejs-22.14.0/bin/node
  Yarn:
    version: 1.22.22
    path: /Users/hannogoedecke/.yarn/bin/yarn
  npm:
    version: 10.9.2
    path: /nix/store/04fc23dsflkxl4s9p6lkigia1hq3vjp2-nodejs-22.14.0/bin/npm
  Watchman:
    version: 2024.03.11.00
    path: /Users/hannogoedecke/.nix-profile/bin/watchman
Managers:
  CocoaPods:
    version: 1.15.2
    path: /Users/hannogoedecke/.nix-profile/bin/pod
SDKs:
  iOS SDK:
    Platforms:
      - DriverKit 25.2
      - iOS 26.2
      - macOS 26.2
      - tvOS 26.2
      - visionOS 26.2
      - watchOS 26.2
  Android SDK: Not Found
IDEs:
  Android Studio: 2025.3 AI-253.30387.90.2532.14935130
  Xcode:
    version: 26.2/17C52
    path: /usr/bin/xcodebuild
Languages:
  Java: Not Found
  Ruby:
    version: 3.4.2
    path: /Users/hannogoedecke/.rbenv/shims/ruby
npmPackages:
  "@react-native-community/cli":
    installed: 20.1.0
    wanted: 20.1.0
  react:
    installed: 19.2.3
    wanted: 19.2.3
  react-native:
    installed: 0.85.2
    wanted: 0.85.2
  react-native-macos: Not Found
npmGlobalPackages:
  "*react-native*": Not Found
Android:
  hermesEnabled: true
  newArchEnabled: true
iOS:
  hermesEnabled: true
  newArchEnabled: true
Stacktrace or Logs
No logs are relevant for this issue
MANDATORY Reproducer

https://github.com/hannojg/ios-textinput-autofocus-transition-uikit-issues

Screenshots and Videos

No response

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

調査の方向性

packages/react-native/React/Fabric/Mounting/ComponentViews/TextInput/RCTTextInputComponentView.mm、特に didMoveToWindow の実装から始め、必須の iOS reproducer を実行して遷移を確認します。リンクされている過去の pull request を比較し、フォーカスのタイミングについて合意された動作を決定します。遷移とキーボードの表示が安定し、autoFocus にリグレッションがないことをもって完了とします。

索引モデルが issue の本文から書いたものです。

評価

技術スタック
ios, objective-c, react-native
領域
mobile
issue の種類
バグ
難易度
4/5
見積もり時間
3〜5日
活発さ
静か
明瞭さ
おおむね明確
初心者へのやさしさ
48/100

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。