我正在尝试将屏幕的高度存储在NSInteger中。
NSInteger *screenHeight = self.view.frame.size.height;
我也尝试将它存储在NSString和NSNumber中,但总是有一个错误说Initializing 'NSInteger ' (aka 'int*') with an expression of in compatible type 'CGFloat' (aka 'float')*. 我将返回从我稍后在代码中存储的任何内容中获取屏幕大小,但是我可以在什么中存储浮点数?