This question already has an answer here:
Is there any way to identify View Mode( In setting > Display & Brightness ) programmatically ?
Many apps design are behaving differently in Standard Mode and Zoomed Mode.
Please refer image :
Any Help would be appreciated. :)
You can use either
[UIScreen mainScreen].nativeScale
witch will gives you2.6f
if normal, and2.8f
if zoomed on iPhone 6 plus, or the defined macros :I was facing same issue when I install Application in 2 types of devices iPhone 6 (Standard mode) and iPhone 6 (Zoom mode) but later on I try to catch the height and width of the iPhone when it launch.
in your
ViewController.h
class inviewDidLoad
method try to check the height and width in console.By checking this you can get difference between Standard and Zoom mode.
From the Vizllx answer u can also check like below what I tried.
Thanks.