来自 frame.height 的 CGFloat 值

CGFloat value from frame.height

我遇到了一些非常愚蠢的事情:无法使用从视图大小获取的 CGFloat 进行操作。有人可以帮我解释一下我做错了什么吗:

代码如下:

 CGFloat containedViewHeight = self.containedView_.frame.size.height;
 NSLog(@"========================   containedViewHeight  ================= %d", containedViewHeight);
 NSLog(@"========================   containedViewHeight1  ================= %d", self.containedView_.frame.size.height);

这是我得到的:

 ========================   containedViewHeight  ================= 1587588653

 ========================   containedViewHeight1  ================= 775

值“775”看起来不错,但我无法将它保存到任何变量。 我也尝试过这样的事情:

int offset = containerHeight - (int)(self.containedView_.frame.size.height);

(int)(self.containedView_.frame.size.height) is always equal 0

请指点一下哪里出了问题...

*** 如果我使用 %f 作为内部日志,我得到:

========================   containedViewHeight  ================= 0.000000
=======================   containedViewHeight1  ================= 0.000000

您正在将 %d 传递给 NSLog 的字符串格式。将 containedViewHeight 解释为整数。你想要 %f.