重新设定BUtton图片尺寸 和文字

@interface BottomButton: UIButton

- (CGRect)imageRectForContentRect:(CGRect)contentRect;

- (CGRect)titleRectForContentRect:(CGRect)contentRect;

@end

#import "BottomButton.h"

@implementation BottomButton

- (CGRect)imageRectForContentRect:(CGRect)contentRect

{

return CGRectMake(30, 9, kbuttonIconImageW, kbuttonIconImageH);//图片的位置大小

}

-(CGRect)titleRectForContentRect:(CGRect)contentRect

{

return CGRectMake(60, 9, kbuttonLabelW, kbuttonLabelH);//文本的位置大小

}

@end

你可能感兴趣的:(重新设定BUtton图片尺寸 和文字)