[iOS]UIButton内、外边距设置

    - (void)viewDidLoad {
        [super viewDidLoad];
        /*
         UIButton设置对应的边距image跟title的边距属性
            titleEdgeInsets     内边距
            contentEdgeInsets   外边距
         */
        // {top, left, bottom, right}
        _twoBut.contentEdgeInsets = UIEdgeInsetsMake(0, 10, 0, 10);
     
        _threeBut.titleEdgeInsets = UIEdgeInsetsMake(0, 10, 0, 10);
        
        _fourBut.contentEdgeInsets = UIEdgeInsetsMake(0, 10, 0, 10);
        _fourBut.titleEdgeInsets = UIEdgeInsetsMake(0, 10, 0, 10);
        
        _fiveBut.imageEdgeInsets = UIEdgeInsetsMake(10, 10, 0, 0);
     
        _sixBut.imageEdgeInsets = UIEdgeInsetsMake(0, _sixBut.titleLabel.intrinsicContentSize.width, 0, -_sixBut.titleLabel.intrinsicContentSize.width);
        _sixBut.titleEdgeInsets = UIEdgeInsetsMake(0, -_sixBut.currentImage.size.width, 0, _sixBut.currentImage.size.width);
    }

posted @   brave-sailor  阅读(1964)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
历史上的今天:
2018-07-23 手把手教你打造ImageView支持手势放大缩小
2015-07-23 android中获取 bitmap 像素的颜色 之吸管取色功能
2015-07-23 android获取View上某点的颜色
2014-07-23 android Json解析详解
点击右上角即可分享
微信分享提示