Maybe you can refer to
[UIScreen mainScreen].scale and [UIScreen mainScreen].bounds
The scale tells you the pixels per point.
The bounds provides you the whole screen size in point.
To get the real size per pixel:
scale * bounds
Cheers
Jack.S Mu
2013/11/25 Roland King
> Is there yet a sup
Hi,
I am OSX developer. The problem I encountered is described as below:
- (void)method1:(NSObject *)arg1
contextInfo:(NSObject *)arg2
{
...
[self method2:arg1
screen:[self.windowController window].screen];
...
}
- (void)method2:(NSObject *)arg1
scre