Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这必须在某个地方的文档中,但我找不到它。.f使用CGSizeMakeas in定义矩形是什么意思CGSizeMake(200.0f, 100.0f);?
.f
CGSizeMake
CGSizeMake(200.0f, 100.0f);
.f 表示该值为float。如果你直接写1.0它被初始化为double. 使用更少的空间1.0f更好。
float
1.0
double
1.0f