OC中如何修改按钮中的子控件位置

其实只要为按钮自定义一个类,重写下面的几个方法即可,具体要调到什么位置都可以自己在返回CGRectMake中调整,其中contentRect是按钮的frame。

#define kImageRatio0.6

//1、-(void)setHighlighted:(BOOL)highlighted{

}

//2、返回按钮内部UIImage的边框

-(CGRect) imageRectForContentRect:(CGRect)contentRect{

CGFloaticonX = (contentRect.size.width- contentRect.size.width*0.7);

returnCGRectMake(iconX,2, contentRect.size.width*0.4, contentRect.size.height*kImageRatio);

}

//3、返回按钮内部titlelabel的边框

-(CGRect)titleRectForContentRect:(CGRect)contentRect{

returnCGRectMake(0, contentRect.size.height*kImageRatio, contentRect.size.width, contentRect.size.height-contentRect.size.height*kImageRatio);

}

你可能感兴趣的:(OC中如何修改按钮中的子控件位置)