菜鸟教程小白 发表于 2022-12-12 13:59:49

ios - 为什么为 TARGET_OS_IPHONE 定义不同的 NSTextAlignment 枚举?


                                            <p><p>我只是在查看 UIKit 中的 NSText.h,下面这段代码引起了我的注意</p>

<pre><code>/* Values for NSTextAlignment */
typedef NS_ENUM(NSInteger, NSTextAlignment) {
    NSTextAlignmentLeft      = 0,    // Visually left aligned
#if TARGET_OS_IPHONE
    NSTextAlignmentCenter    = 1,    // Visually centered
    NSTextAlignmentRight   = 2,    // Visually right aligned
#else /* !TARGET_OS_IPHONE */
    NSTextAlignmentRight   = 1,    // Visually right aligned
    NSTextAlignmentCenter    = 2,    // Visually centered
#endif
    NSTextAlignmentJustified = 3,    // Fully-justified. The last line in a paragraph is natural-aligned.
    NSTextAlignmentNatural   = 4,    // Indicates the default alignment for script
} NS_ENUM_AVAILABLE_IOS(6_0);
</code></pre>

<p>为什么 NSTextAlignmentRight 和 NSTextAlignmentCenter 的值被翻转为 TARGET_OS_IPHONE 而不是?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 iOS 6 之前,iOS 没有 <code>NSTextAlignment</code>。 iOS 使用 <code>UITextAlignment</code>。 <code>Center</code> 值为 <code>1</code>,<code>Right</code> 值为 <code>2</code>。</p>

<p>然后在 iOS 6 中,添加了 <code>NSTextAlignment</code>。为了保持向后兼容性,<code>NSTextAlignmentCenter</code> 被赋予与 <code>UITextAlignmentCenter</code> 相同的值。 <code>Right</code> 也一样。</p>

<p>iOS 上的 <code>NSTextAlignment</code> 枚举与已弃用的 <code>UITextAlignment</code> 匹配比与 OS X 中的值相同更为重要。</p >

<p>iOS 上的 <code>UITextAlignment</code> 和 OS X 上的 <code>NSTextAlignment</code> 之间最初的区别可能是一个简单的疏忽。但这是一个简单的猜测。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 为什么为 TARGET_OS_IPHONE 定义不同的 NSTextAlignment 枚举?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/28175864/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/28175864/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 为什么为 TARGET_OS_IPHONE 定义不同的 NSTextAlignment 枚举?