IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Swift 实现一个简单的带标题的按钮 -> 正文阅读

[移动开发]Swift 实现一个简单的带标题的按钮

由于项目需要,需要实现一个带图标的按钮,而自带的的 UIButton 并不能很好的满足需要,所以就自己实现一个,可以实现自定义标题位置,可以指定标题位置相对于图标的位置,支持上、下、左、右。

代码如下:

//
//  Titleself.iconButton.swift
//  Genyida
//
//  Created by mac min on 2021/8/19.
//  Copyright ? 2021 huangzhengguo. All rights reserved.
//

import Foundation

enum TitlePosition: Int8 {
    case Top = 0
    case Right = 1
    case Bottom = 2
    case Left = 3
}

class TitleButton: UIView {
    
    var titleLabel = UILabel(frame: CGRect.zero)
    var iconButton = UIButton(frame: CGRect.zero)
    var clickCallback: ((Bool) -> Void)?

    init(frame: CGRect, image: String, selectedImage: String, title: String, selectedTitle: String, selected: Bool, titlePosition: TitlePosition = .Bottom, textColor: UIColor = .white) {
        super.init(frame: frame)
        
        self.translatesAutoresizingMaskIntoConstraints = false
        self.layer.cornerRadius = GlobalConstant.DEFAULT_VIEW_CORNER_RADIUS
        self.backgroundColor = .clear
        self.layer.borderWidth = 1.0
        self.layer.borderColor = UIColor.clear.cgColor
        self.isUserInteractionEnabled = true
        
        let viewTap = UITapGestureRecognizer(target: self, action: #selector(viewTapAction))

        self.addGestureRecognizer(viewTap)

        self.titleLabel.translatesAutoresizingMaskIntoConstraints = false
        self.titleLabel.textColor = textColor

        self.iconButton.tag = 10001
        self.iconButton.tintColor = .lightGray
        self.iconButton.isUserInteractionEnabled = false
        self.iconButton.translatesAutoresizingMaskIntoConstraints = false
        self.iconButton.setImage(UIImage(named: image), for: .normal)
        self.iconButton.setImage(UIImage(named: selectedImage), for: .selected)
        
        self.addSubview(self.titleLabel)
        self.addSubview(self.iconButton)
        
        self.updateViews(selected: selected, title: title, selectedTitle: selectedTitle)
        
        let labelLeading = NSLayoutConstraint(item: self.titleLabel, attribute: .leading, relatedBy: .equal, toItem: self, attribute: .leading, multiplier: 1.0, constant: 0.0)
        let labelTrailing = NSLayoutConstraint(item: self.titleLabel, attribute: .trailing, relatedBy: .equal, toItem: self, attribute: .trailing, multiplier: 1.0, constant: 0.0)
        let labelTop = NSLayoutConstraint(item: self.titleLabel, attribute: .top, relatedBy: .equal, toItem: self, attribute: .top, multiplier: 1.0, constant: 3.0)
        let labelBottom = NSLayoutConstraint(item: self.titleLabel, attribute: .bottom, relatedBy: .equal, toItem: self, attribute: .bottom, multiplier: 1.0, constant: 0.0)
        let labelWidth = NSLayoutConstraint(item: self.titleLabel, attribute: .width, relatedBy: .equal, toItem: self, attribute: .width, multiplier: 0.5, constant: 0.0)
        let labelHeight = NSLayoutConstraint(item: self.titleLabel, attribute: .height, relatedBy: .equal, toItem: nil, attribute: .notAnAttribute, multiplier: 1.0, constant: 21.0)
        
        let buttonLeading = NSLayoutConstraint(item: self.iconButton, attribute: .leading, relatedBy: .equal, toItem: self.titleLabel, attribute: .trailing, multiplier: 1.0, constant: 3.0)
        let buttonTrailing = NSLayoutConstraint(item: self.iconButton, attribute: .trailing, relatedBy: .equal, toItem: self.titleLabel, attribute: .leading, multiplier: 1.0, constant: -8.0)
        var buttonTop = NSLayoutConstraint(item: self.iconButton, attribute: .top, relatedBy: .equal, toItem: self, attribute: .top, multiplier: 1.0, constant: 3.0)
        var buttonBottom = NSLayoutConstraint(item: self.iconButton, attribute: .bottom, relatedBy: .equal, toItem: self, attribute: .bottom, multiplier: 1.0, constant: -3.0)
        let buttonWidthHeight = NSLayoutConstraint(item: self.iconButton, attribute: .width, relatedBy: .equal, toItem: self.iconButton, attribute: .height, multiplier: 1.0, constant: 0.0)
        let buttonCenterX = NSLayoutConstraint(item: self.iconButton, attribute: .centerX, relatedBy: .equal, toItem: self.titleLabel, attribute: .centerX, multiplier: 1.0, constant: 0.0)
        
        if titlePosition == .Top {
            // 顶部标题
            self.titleLabel.textAlignment = .center
            buttonTop = NSLayoutConstraint(item: self.iconButton, attribute: .top, relatedBy: .equal, toItem: self.titleLabel, attribute: .bottom, multiplier: 1.0, constant: 3.0)
            
            self.addConstraints([labelLeading, labelTop, labelTrailing, labelHeight])
            self.addConstraints([buttonCenterX, buttonTop, buttonBottom, buttonWidthHeight])
        } else if titlePosition == .Bottom {
            // 底部标题
            self.titleLabel.textAlignment = .center
            buttonBottom = NSLayoutConstraint(item: self.iconButton, attribute: .bottom, relatedBy: .equal, toItem: self.titleLabel, attribute: .top, multiplier: 1.0, constant: -3.0)
            
            self.addConstraints([labelLeading, labelBottom, labelTrailing, labelHeight])
            self.addConstraints([buttonCenterX, buttonTop, buttonBottom, buttonWidthHeight])
        } else if titlePosition == .Right {
            // 右部标题
            self.titleLabel.textAlignment = .left
            self.addConstraints([labelTrailing, labelTop, labelBottom, labelWidth])
            self.addConstraints([buttonTrailing, buttonTop, buttonBottom, buttonWidthHeight])
        } else {
            // 左部标题
            self.titleLabel.textAlignment = .right
            self.addConstraints([labelLeading, labelTop, labelBottom, labelWidth])
            self.addConstraints([buttonLeading, buttonTop, buttonBottom, buttonWidthHeight])
        }
    }
    
    func updateViews(selected: Bool, title: String, selectedTitle: String) -> Void {
        if selected == true {
            self.titleLabel.text = selectedTitle
        } else {
            self.titleLabel.text = title
        }
        
        self.iconButton.isSelected = selected
    }
    
    required init?(coder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    
    @objc func viewTapAction(sender: UITapGestureRecognizer) -> Void {
        let view = sender.view
        
        let btn: UIButton = view?.viewWithTag(10001) as! UIButton
        
        btn.isSelected = !btn.isSelected
        
        self.clickCallback?(btn.isSelected)
    }
}

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-09-12 13:16:58  更:2021-09-12 13:18:41 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 17:14:10-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码