IOS自定义图片放右边的Button

这篇博客介绍了如何在iOS中自定义一个标题在左、图片在右的按钮,详细讲解了WQTitleButton的头文件和实现文件的代码实现过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

自定义一个图片放在按钮右边位置的按钮

1。WQTitleButton.h

#import <UIKit/UIKit.h>

@interface WQTitleButton : UIButton

@end


1.WQTitleButton.m

#import "WQTitleButton.h"
#define ImageW  30


@implementation WQTitleButton

-(instancetype)initWithCoder:(NSCoder *)aDecoder{
    if (self = [super initWithCoder:aDecoder]) {
        
        //设置图片显示的样式
        self.imageView.contentMode = UIViewContentModeCenter;
    }
    return self;
}

-(CGRect)titleRectForContentRect:(CGRect)contentRect{
    CGFloat titleW = contentRect.size.width-ImageW;
    CGFloat titleH = contentRect.size.height;
    return CGRectMake(0, 0, titleW, titleH);
}

-(CGRect)imageRectForContentRect:(CGRect)contentRect{
    CGFloat imageW = ImageW;
    CGFloat imageH = contentRect.size.height;
    CGFloat imageX = contentRect.size.width-ImageW;
    //self.imageView.contentMode = UIViewContentModeCenter;
    return CGRectMake(imageX,0, imageW, imageH);
}

-(void)setHighlighted:(BOOL)highlighted{
}
@end

3. 如果点击按钮的过程中,给按钮图片增加动画,如下:

- (IBAction)clickTitle:(UIButton *)sender {
    
    [UIView animateWithDuration:0.25 animations:^{
        if (CGAffineTransformIsIdentity(sender.imageView.transform)) {
            sender.imageView.transform = CGAffineTransformMakeRotation(M_PI);
        }else{
            sender.imageView.transform = CGAffineTransformIdentity;
        }
       
    }];
    
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值