iOS开发Swift开发UI页面链式调用库推荐

首页链接

https://github.com/zhiguangqiao/ChainableUIKit

安装方法

  pod 'ChainableUIKit'

调用片段

UIButton

import ChainableUIKit

    private let button = UIButton().chain
        .setTitleColor(.init(hex: "#9583EB"), state: .normal)
        .setTitle("全部视频", state: .normal)
        .setTitleColor(.white, state: .selected)
        .fixSize(CGSizeMake(54, 32))
        .titleFont(.systemFont(ofSize: 12))
        .cornerRadius(4)
        .view

UILabel

import ChainableUIKit

    private let videoNumber = UILabel()
        .chain
        .text("1")
        .textColor(.init(hex: "#141B26"))
        .font(.boldSystemFont(ofSize: 30))
        .view

UIStackView

import ChainableUIKit

    private lazy var videoNumberStackView = UIStackView().chain
        .axis(.horizontal)
        .alignment(.center)
        .backgroundColor(.white)
        .arrangedViews([
            UILabel()
            .chain
            .text("video")
            .textColor(.init(hex: "#141B26"))
            .font(.boldSystemFont(ofSize: 10))
            .view
            ,videoNumber])
        .view

UITextField

import ChainableUIKit

    private let scoreTF = UITextField()
        .chain
        .backgroundColor(.init(hex: "#FFE3A6"))
        .textAlignment(.center)
        .keyboardType(.numberPad)
        .textColor(.init(hex: "#141B26"))
        .view
相关推荐
MasterNeverDown4 小时前
WPF 使用iconfont
hadoop·ui·wpf
不惑_18 小时前
深度学习 · 手撕 DeepLearning4J ,用Java实现手写数字识别 (附UI效果展示)
java·深度学习·ui
Хайде19 小时前
Qt Desiogn生成的ui文件转化为h文件
ui
资深设备全生命周期管理1 天前
以Python 做服务器,N Robot 做客户端,小小UI,拿捏
服务器·python·ui
iks3251 天前
ui文件转py程序的工具
ui
UWA1 天前
为什么UI导入png图会出现白边
ui·editor·rendering·asset
Archy_Wang_12 天前
ASP.NET Core 中的 JWT 鉴权实现
后端·ui·asp.net
_可乐无糖2 天前
Appium 检查安装的驱动
android·ui·ios·appium·自动化
军训猫猫头2 天前
54.DataGrid数据框图 C#例子 WPF例子
ui·c#·wpf
假装自己很用心3 天前
iOS 内购接入StoreKit2 及低与iOS 15 版本StoreKit 1 兼容方案实现
ios·swift·storekit·storekit2