Read PlayerPrefs from XCode

I’m trying to create a messages app that responds to changes in playerprefs in the companion app. I think I can do this with XCode and NSUserDefaults but I’m not exactly sure how to find the playerprefs data.

I have a playerprefs int saved under the key “LevelReached” - then in my messages viewDidLoad I want to read that integer value. How would I do this?

Thanks!
a

I think that PlayerPrefs are written to a storage location that is private for a given app. A companion app won’t be able to read another app’s data and vice versa.

Do you think it would be possible with a plugin that stored data into UserDefaults?