Can I develop a React Native app and run it on my iPhone without signing up for an Apple Developer account?

I would like to develop an app with Expo and run it on my own iPhone only. I don’t want to distribute it through the app store. It will be solely for my personal use. Is there a way to do this?

you can run npx expo prebuild and then open the ios project in xcode, sign in to your free apple account, and build the app for your phone using a development certificate. this will be valid on your phone for 7 days, and then you’ll need to build it again.

I would say try with eas build ios command and will give you your apk file for ios which should work normally.
We have tried for android and its working.

Ps. Plz check command i might be wrong.