UIViewの左端とか右端とか真ん中とかに何かを表示させる…などの時に便利な関数
CGFloat x0 = CGRectGetMaxX(self.view.frame); //frameのX座標の最大値
CGFloat x1 = CGRectGetMinX(self.view.frame); //frameのX座標の最小値
CGFloat x2 = CGRectGetMidX(self.view.frame); //frameのX座標の中間値
これのY座標版もある。
CGFloat x3 = CGRectGetWidth(self.view.frame); //frameのWidth
CGFloat x4 = CGRectGetHeight(self.view.frame); //frameのHeight
0 件のコメント:
コメントを投稿