I am trying to store the height of the screen in NSInteger.
NSInteger *screenHeight = self.view.frame.size.height;
I also tried to store it in NSString and NSNumber, but there is always an error that says Initializing 'NSInteger' (aka 'int*') with an expression of incompatible type 'CGFloat' (aka 'float')*. I will go back to get the screen size from whatever I store it in later in the code, but what can I store a float in?