为什么这个循环总是给我0(列和行的值总是为0)?有什么错吗?我找不到了!
- (void)drawView:(UIView *)theView
{
glLoadIdentity();
glClearColor(1.0, 1.0, 1.0, 1.0);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
for (int columns = 0; columns < 6; columns++)
{
for (int rows = 0; rows < 2; rows++)
{
NSLog(@"Drawing n%f: { rows: %f }, { columns: %f }, { x: %f }, { y: %f }, { z: %f }", rows, columns, columns * rows);
}
}
}
答案 0 :(得分:3)
使用%d
代替%f
来打印整数。