iOS Core Graphics 中的 self.bound 和 CGRectMake() 是什么

iOS what is self.bound and CGRectMake() in Core Graphics

我最近在研究Core Graphics,总是看到一些代码在CGRect变量中赋值paperRect,所以我在网上搜索了一下,我不知道什么是self.boundCGRectMake().

谁能给我解释一下吗?

paperRect 属性 的值是一个矩形,它定义了为打印作业选择的纸张尺寸。

请参考 https://developer.apple.com/library/prerelease/ios/documentation/iPhone/Reference/UIPrintPageRenderer_Class/index.html#//apple_ref/occ/instp/UIPrintPageRenderer/paperRect

self.bound

is 指的是 UI 对象 rectangle/bound 关于它的父视图。 而 CGRectMake 是您要为 UI 对象设置的框架。 当你想获得任何 UI 对象的 bounds 属性 时,你可以说 self.view.bounds & for frame self.view.frame.