MenuButton.m 510 Bytes
Newer Older
admin's avatar
admin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//
//  MenuButton.m
//  redstar
//
//  Created by admin on 15/10/27.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import "MenuButton.h"

@implementation MenuButton

- (CGRect)titleRectForContentRect:(CGRect)contentRect
{
    CGFloat w = self.frame.size.width;
    CGFloat h = self.frame.size.height;
17
    return CGRectMake(w / 2 - 30, 0, 32, h);
admin's avatar
admin committed
18 19 20 21
}
- (CGRect)imageRectForContentRect:(CGRect)contentRect;
{
    CGFloat w = self.frame.size.width;
22
    return CGRectMake(w / 2 + 3, 15, 13, 15);
admin's avatar
admin committed
23 24
}

25

admin's avatar
admin committed
26 27

@end