我无法定义一个常数。
这是我的定义:
const float tableOffset = 200;
这是我尝试使用它的方式(见最后):
[self.voteTbl setFrame:CGRectMake(0,200,self.view.frame.size.width, self.view.frame.size.height - bottomBar.frame.size.height - tableOffset)];
但是,这不起作用,实际上设置了正确的高度。此代码确实有效:
[self.voteTbl setFrame:CGRectMake(0,200,self.view.frame.size.width, self.view.frame.size.height - bottomBar.frame.size.height - 200)];
我试过切换到 int 没有运气。编译器不给出警告或错误。