From the below tests ran on my iPhone 12, the model and name API from UI device both return "iPhone" only, is there any other way that we can get "iPhone 12" instead of iPhone?
Since the API stop returning full model information from iOS16+, we have been getting not sufficient model information for our app, so seeking for a API that does not require entitlement review/update for such purpose (as we have fail that request once before)
code:
print("UIDevice.current.model: (UIDevice.current.model)")
print("UIDevice.current.name: (UIDevice.current.name)")
log:
UIDevice.current.model: iPhone
UIDevice.current.name: iPhone