In this example image, I would like to get “VisionPro_3” using PolySpatial. Is this possible?
This might be what you’re after:
If that’s not it, look around the SystemInfo
(and possibly Application
) class and see if anything else might help.
Otherwise it might require custom native iOS integration, in which case Google is your starting point.
We use the UIDevice.name property to access the device name (through SystemInfo.deviceName, as linked above). According to the docs on that site, you will receive a generic name (presumably “Apple Vision Pro”) unless your app has the specific entitlement to request the customized name.
Thank you I understand
We use the UIDevice.name property to access the device name (through SystemInfo.deviceName, as linked above). According to the docs on that site, you will receive a generic name (presumably “Apple Vision Pro”) unless your app has the specific entitlement to request the customized name.
Thank you.
I see.
So you can’t get the device name entered by the user unless you make a request to Apple.