12345678910111213141516171819202122232425262728293031 |
- //
- // JXCustomButton.m
- // shiku_im
- //
- // Created by 1 on 17/8/15.
- // Copyright © 2017年 Reese. All rights reserved.
- //
- #import "JXCustomButton.h"
- @implementation JXCustomButton
- -(CGRect)titleRectForContentRect:(CGRect)contentRect{
-
- if (!CGRectIsEmpty(self.titleRect) && !CGRectEqualToRect(self.titleRect, CGRectZero)) {
- return self.titleRect;
- }
- return [super titleRectForContentRect:contentRect];
- }
- -(CGRect)imageRectForContentRect:(CGRect)contentRect{
-
- if (!CGRectIsEmpty(self.imageRect) && !CGRectEqualToRect(self.imageRect, CGRectZero)) {
- return self.imageRect;
- }
- return [super imageRectForContentRect:contentRect];
- }
- @end
|