@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