对齐 Android 无权限强制弹窗、角色下拉与申请页交互,补充 UIButton configuration 适配,并增强景区排队 TTS 与相关单元测试。 Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
485 B
Swift
18 lines
485 B
Swift
//
|
||
// UIButton+Configuration.swift
|
||
// suixinkan
|
||
//
|
||
|
||
import UIKit
|
||
|
||
/// `UIButton` 的现代 configuration 配置辅助能力。
|
||
extension UIButton {
|
||
|
||
/// 设置内容边距,并保留按钮已有的 configuration 内容。
|
||
func setConfigurationContentInsets(_ contentInsets: NSDirectionalEdgeInsets) {
|
||
var updatedConfiguration = configuration ?? .plain()
|
||
updatedConfiguration.contentInsets = contentInsets
|
||
configuration = updatedConfiguration
|
||
}
|
||
}
|