在iOS的界面布局中我們可以使用CGRectGetMaxX 這個方法來方便的獲取當前控件的x坐標值+寬度的數值,這樣便可以方便布局。
同理CGRectGetMaxY是獲取y坐標值+控件高度的值,當然這個系列的方法還有很多大家可以試下。
/* Return the leftmost x-value of `rect'. */ CG_EXTERN CGFloat CGRectGetMinX(CGRect rect) CG_AVAILABLE_STARTING(__MAC_10_0, __IPHONE_2_0); /* Return the midpoint x-value of `rect'. */ CG_EXTERN CGFloat CGRectGetMidX(CGRect rect) CG_AVAILABLE_STARTING(__MAC_10_0, __IPHONE_2_0); /* Return the rightmost x-value of `rect'. */ CG_EXTERN CGFloat CGRectGetMaxX(CGRect rect) CG_AVAILABLE_STARTING(__MAC_10_0, __IPHONE_2_0); /* Return the bottommost y-value of `rect'. */ CG_EXTERN CGFloat CGRectGetMinY(CGRect rect) CG_AVAILABLE_STARTING(__MAC_10_0, __IPHONE_2_0); /* Return the midpoint y-value of `rect'. */ CG_EXTERN CGFloat CGRectGetMidY(CGRect rect) CG_AVAILABLE_STARTING(__MAC_10_0, __IPHONE_2_0); /* Return the topmost y-value of `rect'. */ CG_EXTERN CGFloat CGRectGetMaxY(CGRect rect) CG_AVAILABLE_STARTING(__MAC_10_0, __IPHONE_2_0); /* Return the width of `rect'. */ CG_EXTERN CGFloat CGRectGetWidth(CGRect rect) CG_AVAILABLE_STARTING(__MAC_10_0, __IPHONE_2_0); /* Return the height of `rect'. */ CG_EXTERN CGFloat CGRectGetHeight(CGRect rect) CG_AVAILABLE_STARTING(__MAC_10_0, __IPHONE_2_0);