16-1)UIButton開發(fā)中常見使用

UIButton自定義圖片文字位置

運行如下代碼:

 UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
 button.frame = CGRectMake(40, 100, 200, 70);
 // button.center = self.view.center;
 [button setImage:[UIImage imageNamed:@"icon1"] forState:UIControlStateNormal];
 [button setTitle:@"按鈕1" forState:UIControlStateNormal];
 button.backgroundColor = [UIColor grayColor];
 [self.view addSubview:button];

可以看出UIButton的默認(rèn)顯示樣式是圖片居左腿宰,文字居右扁藕,如下圖1:

image.png

我們操作什么屬性 能夠更改其設(shè)置呢长豁?

水平方向的設(shè)置我們可以通過:UIControlContentHorizontalAlignment
  typedef NS_ENUM(NSInteger, UIControlContentHorizontalAlignment) {
        UIControlContentHorizontalAlignmentCenter = 0,
        UIControlContentHorizontalAlignmentLeft   = 1,
        UIControlContentHorizontalAlignmentRight  = 2,
        UIControlContentHorizontalAlignmentFill   = 3,
        UIControlContentHorizontalAlignmentLeading  API_AVAILABLE(ios(11.0), tvos(11.0)) = 4,
        UIControlContentHorizontalAlignmentTrailing API_AVAILABLE(ios(11.0), tvos(11.0)) = 5,
    };
button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
UIControlContentHorizontalAlignmentLeft.png
UIControlContentHorizontalAlignmentCenter.png
UIControlContentHorizontalAlignmentRight.png
UIControlContentHorizontalAlignmentFill(發(fā)生了重疊瞳别,圖片會變形).png
UIControlContentHorizontalAlignmentLeading.png
UIControlContentHorizontalAlignmentTrailing.png
垂直方向的設(shè)置我們可以通過:UIControlContentVerticalAlignment
 typedef NS_ENUM(NSInteger, UIControlContentVerticalAlignment) {
        UIControlContentVerticalAlignmentCenter  = 0,
        UIControlContentVerticalAlignmentTop     = 1,
        UIControlContentVerticalAlignmentBottom  = 2,
        UIControlContentVerticalAlignmentFill    = 3,
  };
UIControlContentVerticalAlignmentCenter.png
UIControlContentVerticalAlignmentTop.png
UIControlContentVerticalAlignmentBottom.png
UIControlContentVerticalAlignmentFill(會變形).png

但是有時候我們根據(jù)需求需要調(diào)整按鈕中圖片和標(biāo)題的位置槽华,最常見的就是圖片居上壹蔓,文字居下顯示的按鈕,如下圖所示:

image.png

實現(xiàn)這種居中顯示的圖上文下的按鈕方式有很多猫态,比如最簡單的方法:自定義View佣蓉,上面放一個UIButton一個UILabel子控件。

通過UIEdgeInsets調(diào)整位置

UIEdgeInsets有四個參數(shù):top, left, bottom, right亲雪,分別代表上左下右的偏移量勇凭。

top : 為正數(shù)的時候,是往下偏移,為負(fù)數(shù)的時候往上偏移;
left : 為正數(shù)的時候往右偏移,為負(fù)數(shù)的時候往左偏移;
bottom : 為正數(shù)的時候往上偏移,為負(fù)數(shù)的時候往下偏移;
right :為正數(shù)的時候往左偏移,為負(fù)數(shù)的時候往右偏移;

@property(nonatomic)          UIEdgeInsets contentEdgeInsets UI_APPEARANCE_SELECTOR; // default is UIEdgeInsetsZero. On tvOS 10 or later, default is nonzero except for custom buttons.
@property(nonatomic)          UIEdgeInsets titleEdgeInsets;                // default is UIEdgeInsetsZero
reverses to shift between engrave and emboss appearance
@property(nonatomic)          UIEdgeInsets imageEdgeInsets;  

修改圖片標(biāo)題的位置主要是用了UIButton的兩個位置屬性:
titleEdgeInsets
imageEdgeInsets

左文字 右圖片
 UIImage *image = button.imageView.image;
 [button setTitleEdgeInsets:UIEdgeInsetsMake(0, -image.size.width, 0, image.size.width)];
 [button setImageEdgeInsets:UIEdgeInsetsMake(0, button.titleLabel.bounds.size.width, 0, -button.titleLabel.bounds.size.width)];
左文字 右圖片.png

在這里我們相當(dāng)于把文字向左移動可一個圖片都寬度义辕,而圖片向右移動了文字的寬度虾标。在此我們還可以設(shè)置圖片和文字之間的間距:

[button setTitleEdgeInsets:UIEdgeInsetsMake(0, -image.size.width - 10, 0, image.size.width)];
[button setImageEdgeInsets:UIEdgeInsetsMake(0, button.titleLabel.bounds.size.width + 10, 0, -button.titleLabel.bounds.size.width)];
image.png
上圖片 下文字
  [button setTitleEdgeInsets:UIEdgeInsetsMake(button.imageView.frame.size.height ,-button.imageView.frame.size.width, 0.0,0.0)];
  [button setImageEdgeInsets:UIEdgeInsetsMake(-button.imageView.frame.size.height, 0.0,0.0, -button.titleLabel.bounds.size.width)];
image.png
上文字 下圖片
  [button setTitleEdgeInsets:UIEdgeInsetsMake(-button.imageView.frame.size.height ,-button.imageView.frame.size.width, 0,0)];
  [button setImageEdgeInsets:UIEdgeInsetsMake(0, 0,-button.imageView.frame.size.height, -button.titleLabel.bounds.size.width)];
image.png

UIButton漸變色

廢話不多,上代碼

#import <UIKit/UIKit.h>
#import "UIButton+Extensions.h"
#import "Helper.h"

NS_ASSUME_NONNULL_BEGIN

@interface ColorButton : UIButton

/**
 初始化 button (生成漸變色圖片填充button背景圖片)
 */
+ (instancetype)buttonWithFrame:(CGRect)frame layerColors:(NSArray *)layerColors;

@end

NS_ASSUME_NONNULL_END

#import "ColorButton.h"

@implementation ColorButton

+ (instancetype)buttonWithFrame:(CGRect)frame layerColors:(NSArray *)layerColors {
    ColorButton *button = [self buttonWithType:UIButtonTypeCustom];
    button.backgroundColor = [UIColor clearColor];
    button.frame = frame;
    button.titleLabel.font = [UIFont systemFontOfSize:30];
    button.titleLabel.textColor = [UIColor whiteColor];
    button.layer.cornerRadius = 20;
    button.layer.masksToBounds = YES;
    // 設(shè)置漸變色
    NSArray *defaultPercentArray = @[@(0.18),@(1)];
    if (!layerColors) {
        layerColors = @[(id)UIColorRGB(0x6B8FFE),(id)UIColorRGB(0x574FF2)];
    }
    [button gradientButtonWithSize:CGSizeMake(button.frame.size.width, button.frame.size.height)
                        colorArray:layerColors
                   percentageArray:defaultPercentArray
                      gradientType:GradientFromLeftBottomToRightTop];
    return button;
}

@end
#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

typedef NS_ENUM(NSInteger, GradientType) {
    GradientFromTopToBottom = 1,            //從上到下
    GradientFromLeftToRight,                //從做到右
    GradientFromLeftTopToRightBottom,       //從上到下
    GradientFromLeftBottomToRightTop        //從上到下
};

@interface UIImage (Util)

/**
 *  根據(jù)給定的顏色终息,生成漸變色的圖片
 *  @param imageSize        要生成的圖片的大小
 *  @param colors         漸變顏色的數(shù)組
 *  @param percents          漸變顏色的占比數(shù)組
 *  @param gradientType     漸變色的類型
 */
- (UIImage *)imageWithSize:(CGSize)imageSize
            gradientColors:(NSArray *)colors
                percentage:(NSArray *)percents
              gradientType:(GradientType)gradientType;
@end

NS_ASSUME_NONNULL_END
#import "UIImage+Util.h"

@implementation UIImage (Util)


/**
 *  根據(jù)給定的顏色夺巩,生成漸變色的圖片
 *  @param imageSize        要生成的圖片的大小
 *  @param colorArr         漸變顏色的數(shù)組
 *  @param percents          漸變顏色的占比數(shù)組
 *  @param gradientType     漸變色的類型
 */
- (UIImage *)imageWithSize:(CGSize)imageSize
            gradientColors:(NSArray *)colors
                percentage:(NSArray *)percents
              gradientType:(GradientType)gradientType {
    
    NSAssert(percents.count <= 5, @"輸入顏色數(shù)量過多,如果需求數(shù)量過大周崭,請修改locations[]數(shù)組的個數(shù)");
    
    NSMutableArray *ar = [NSMutableArray array];
    for(UIColor *c in colors) {
        [ar addObject:(id)c.CGColor];
    }
    
    CGFloat locations[5];
    for (int i = 0; i < percents.count; i++) {
        locations[i] = [percents[i] floatValue];
    }
    
    
    UIGraphicsBeginImageContextWithOptions(imageSize, YES, 1);
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSaveGState(context);
    CGColorSpaceRef colorSpace = CGColorGetColorSpace([[colors lastObject] CGColor]);
    CGGradientRef gradient = CGGradientCreateWithColors(colorSpace, (CFArrayRef)ar, locations);
    CGPoint start;
    CGPoint end;
    switch (gradientType) {
        case GradientFromTopToBottom:
            start = CGPointMake(imageSize.width/2, 0.0);
            end = CGPointMake(imageSize.width/2, imageSize.height);
            break;
        case GradientFromLeftToRight:
            start = CGPointMake(0.0, imageSize.height/2);
            end = CGPointMake(imageSize.width, imageSize.height/2);
            break;
        case GradientFromLeftTopToRightBottom:
            start = CGPointMake(0.0, 0.0);
            end = CGPointMake(imageSize.width, imageSize.height);
            break;
        case GradientFromLeftBottomToRightTop:
            start = CGPointMake(0.0, imageSize.height);
            end = CGPointMake(imageSize.width, 0.0);
            break;
        default:
            break;
    }
    CGContextDrawLinearGradient(context, gradient, start, end, kCGGradientDrawsBeforeStartLocation | kCGGradientDrawsAfterEndLocation);
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    CGGradientRelease(gradient);
    CGContextRestoreGState(context);
    CGColorSpaceRelease(colorSpace);
    UIGraphicsEndImageContext();
    return image;
}
@end

#import <UIKit/UIKit.h>
#import "UIImage+Util.h"
#import "Helper.h"

NS_ASSUME_NONNULL_BEGIN

@interface UIButton (Extensions)

/**
 *  根據(jù)給定的顏色柳譬,設(shè)置按鈕的顏色
 *  @param btnSize  這里要求手動設(shè)置下生成圖片的大小,防止coder使用第三方layout,沒有設(shè)置大小
 *  @param clrs     漸變顏色的數(shù)組
 *  @param percent  漸變顏色的占比數(shù)組
 *  @param type     漸變色的類型
 */
- (UIButton *)gradientButtonWithSize:(CGSize)btnSize
                          colorArray:(nullable NSArray *)clrs
                     percentageArray:(nullable NSArray *)percent
                        gradientType:(GradientType)type;

@end

NS_ASSUME_NONNULL_END
#import "UIButton+Extensions.h"

@implementation UIButton (Extensions)

- (UIButton *)gradientButtonWithSize:(CGSize)btnSize
                          colorArray:(NSArray *)clrs
                     percentageArray:(NSArray *)percent
                        gradientType:(GradientType)type {
    static UIImage *defaultImage = nil;
    UIImage *backImage = nil;
    if (!percent) {
        percent = @[@(0.18),@(1)];
    }
    if (!clrs) {
        clrs = @[(id)UIColorRGB(0x6B8FFE),(id)UIColorRGB(0x574FF2)];
        if (!defaultImage) {
            defaultImage = [[UIImage alloc] imageWithSize:btnSize gradientColors:clrs percentage:percent gradientType:type];
        }
        backImage = defaultImage;
    } else {
        backImage = [[UIImage alloc] imageWithSize:btnSize gradientColors:clrs percentage:percent gradientType:type];
    }
    [self setBackgroundImage:backImage forState:UIControlStateNormal];
    return self;
}

@end

UIButton擴大按鈕點擊區(qū)域

按鈕擴大點擊區(qū)域续镇,具體原理可查看iOS中觸摸事件傳遞和響應(yīng)原理


#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@interface ExpandTouchButton : UIButton

/**
 擴大熱區(qū)范圍 例如上下左右各擴大10 (-10 , -10, -10 , -10) 如果設(shè)置正值則會將按鈕可點擊區(qū)域縮小
 */
@property (nonatomic, assign) UIEdgeInsets expandEdgeInsets;

/**
 實際可點擊范圍
 */
@property (nonatomic, assign, readonly) CGRect realTouchBouns;


@end

NS_ASSUME_NONNULL_END
#import "ExpandTouchButton.h"

@implementation ExpandTouchButton

- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event {
    
    return CGRectContainsPoint(self.realTouchBouns, point);
}

- (CGRect)realTouchBouns {
    
    return CGRectMake(_expandEdgeInsets.left,
                      _expandEdgeInsets.top,
                      self.frame.size.width - _expandEdgeInsets.left - _expandEdgeInsets.right,
                      self.frame.size.height - _expandEdgeInsets.top - _expandEdgeInsets.bottom);
}

- (BOOL)isExclusiveTouch {
    return YES;
}

@end

示例:

/**
 *  擴大按鈕點擊區(qū)域
 */
- (void)test3 {
    
    ExpandTouchButton *button = [ExpandTouchButton buttonWithType:UIButtonTypeCustom];
    button.frame = CGRectMake(100, 100, 200, 70);
    // button.center = self.view.center;
    [button setImage:[UIImage imageNamed:@"order_waiting_pay"] forState:UIControlStateNormal];
    [button setTitle:@"我是擴大點擊范圍按鈕" forState:UIControlStateNormal];
    button.backgroundColor = [UIColor grayColor];
    button.expandEdgeInsets = UIEdgeInsetsMake(-50, -50, -50, -50);
    [self.view addSubview:button];
    [button addTarget:self action:@selector(logtest) forControlEvents:UIControlEventTouchUpInside];
}

- (void)logtest {
    NSLog(@"按鈕被點擊了-----------");
}

Demo地址

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末美澳,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子摸航,更是在濱河造成了極大的恐慌制跟,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,013評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件酱虎,死亡現(xiàn)場離奇詭異雨膨,居然都是意外死亡,警方通過查閱死者的電腦和手機读串,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,205評論 2 382
  • 文/潘曉璐 我一進(jìn)店門聊记,熙熙樓的掌柜王于貴愁眉苦臉地迎上來撒妈,“玉大人,你說我怎么就攤上這事排监≌遥” “怎么了?”我有些...
    開封第一講書人閱讀 152,370評論 0 342
  • 文/不壞的土叔 我叫張陵舆床,是天一觀的道長棋蚌。 經(jīng)常有香客問我,道長挨队,這世上最難降的妖魔是什么谷暮? 我笑而不...
    開封第一講書人閱讀 55,168評論 1 278
  • 正文 為了忘掉前任,我火速辦了婚禮瞒瘸,結(jié)果婚禮上坷备,老公的妹妹穿的比我還像新娘。我一直安慰自己情臭,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,153評論 5 371
  • 文/花漫 我一把揭開白布赌蔑。 她就那樣靜靜地躺著俯在,像睡著了一般。 火紅的嫁衣襯著肌膚如雪娃惯。 梳的紋絲不亂的頭發(fā)上跷乐,一...
    開封第一講書人閱讀 48,954評論 1 283
  • 那天,我揣著相機與錄音趾浅,去河邊找鬼愕提。 笑死,一個胖子當(dāng)著我的面吹牛皿哨,可吹牛的內(nèi)容都是我干的浅侨。 我是一名探鬼主播,決...
    沈念sama閱讀 38,271評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼证膨,長吁一口氣:“原來是場噩夢啊……” “哼如输!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起央勒,我...
    開封第一講書人閱讀 36,916評論 0 259
  • 序言:老撾萬榮一對情侶失蹤不见,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后崔步,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體稳吮,經(jīng)...
    沈念sama閱讀 43,382評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,877評論 2 323
  • 正文 我和宋清朗相戀三年井濒,在試婚紗的時候發(fā)現(xiàn)自己被綠了灶似。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片列林。...
    茶點故事閱讀 37,989評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖喻奥,靈堂內(nèi)的尸體忽然破棺而出席纽,到底是詐尸還是另有隱情,我是刑警寧澤撞蚕,帶...
    沈念sama閱讀 33,624評論 4 322
  • 正文 年R本政府宣布润梯,位于F島的核電站,受9級特大地震影響甥厦,放射性物質(zhì)發(fā)生泄漏纺铭。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,209評論 3 307
  • 文/蒙蒙 一刀疙、第九天 我趴在偏房一處隱蔽的房頂上張望舶赔。 院中可真熱鬧,春花似錦谦秧、人聲如沸竟纳。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,199評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽锥累。三九已至,卻和暖如春集歇,著一層夾襖步出監(jiān)牢的瞬間桶略,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,418評論 1 260
  • 我被黑心中介騙來泰國打工诲宇, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留际歼,地道東北人。 一個月前我還...
    沈念sama閱讀 45,401評論 2 352
  • 正文 我出身青樓姑蓝,卻偏偏與公主長得像鹅心,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子它掂,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,700評論 2 345

推薦閱讀更多精彩內(nèi)容