UIButton 的 contentEdgeInsets 支持 NSDirectionalEdgeInsets 吗?

问题描述 投票:0回答:1

我想将

NSDirectionalEdgeInsets
用于
UIButton
contentEdgeInsets
titleEdgeInsets
。这可能吗?

背景

出于本地化目的,iOS 应用程序在设置组件的插图时可能需要适应从左到右和从右到左的语言。

Apple 在 iOS11 中引入了

NSDirectionalEdgeInsets
,不幸的是,这仅应用于少数属性,例如
directionalLayoutMargins
,弃用了用于
UIEdgeInsets
layoutMargins

NSDirectionalEdgeInsets
使用 leadingtrailing 修饰符来尊重界面布局方向,而不是其对应的 UIEdgeInsets 使用的 left
right

当前不正确的解决方案

对每个修改过的

UIEdgeInsets
属性的每个按钮/视图使用以下代码非常麻烦,并且在进行更改时容易出错:

let isRTL: UIUserInterfaceLayoutDirection = // logic to determine language direction 

if isRTL == .leftToRight {
    nextButton.contentEdgeInsets = UIEdgeInsets(top: 0, left: 10, bottom: 0, right: 0)
} else {
    nextButton.contentEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 10)
}
ios localization uikit uiedgeinsets insets
1个回答
4
投票

解决方案

import UIKit

extension UIView {
    // Returns `UIEdgeInsets` set using `leading` and `trailing` modifiers adaptive to the language direction
    func getDirectionalUIEdgeInsets(top: CGFloat, leading: CGFloat, bottom: CGFloat, trailing: CGFloat) -> UIEdgeInsets {
        // NOTE: this wil be deprecated when Apple use `NSDirectioanlEdgeInsets` (https://developer.apple.com/documentation/uikit/nsdirectionaledgeinsets) for your insets property instead of `UIEdgeInsets`

        if self.userInterfaceLayoutDirection == .leftToRight {
            return UIEdgeInsets(top: top, left: leading, bottom: bottom, right: trailing)
        } else {
            return UIEdgeInsets(top: top, left: trailing, bottom: bottom, right: leading)
        }
    }

    /// Returns text and UI direction based on current view settings
    var userInterfaceLayoutDirection: UIUserInterfaceLayoutDirection
    {
        if #available(iOS 9.0, *) {
            return UIView.userInterfaceLayoutDirection(for: self.semanticContentAttribute)
        } else {
            return UIApplication.shared.userInterfaceLayoutDirection
        }
    }
}

使用方法

nextButton.contentEdgeInsets = nextButton.getDirectionalUIEdgeInsets(top: 0, leading: 10, bottom: 0, trailing: 0)

我在 Stackoverflow 上寻找答案,但一无所获。因此我分享我的答案。

学分

感谢 David RysanekStackoverflow 回答 提供了

userInterfaceLayoutDirection
扩展。

© www.soinside.com 2019 - 2024. All rights reserved.