I have an app that runs on the iPhone and iPod Touch, it can run on the Retina iPad and everything but there needs to be one adjustment. I need to detect if the current device is an iPad. What code can I use to detect if the user is using an iPad in my UIViewController and then change something accordingly?
I have an app that runs on the iPhone and iPod Touch, it can
Share
There are quite a few ways to check if a device is an iPad. This is my favorite way to check whether the device is in fact an iPad:
The way I use it
Other Examples
For a Swift solution, see this answer: https://stackoverflow.com/a/27517536/2057171