CGRectInset和UIEdgeInsets

1、CGRectInset

CGRect CGRectInset (

CGRect rect,

CGFloat dx,

CGFloat dy

);

该结构体的应用是以原rect为中心,再参考dx,dy,进行缩放或者放大。

这个的frame就会减少dx*2,dy*2;

  

typedef struct UIEdgeInsets {

CGFloat top, left, bottom, right; 

} UIEdgeInsets;构造出,分别表示其中的内容/标题/图片离各边的距离

你可能感兴趣的:(CGRectInset和UIEdgeInsets)