菜鸟教程小白 发表于 2022-12-12 21:03:23

ios - UITableView 中 UILabel 的大小类随机忽略


                                            <p><p>我有一个带有自定义单元格的 <code>UITableView</code>,其中包含 <code>UILabels</code>。标签的文字大小在 iPhone 和 iPad 上应该是不同的,所以我为常规大小类设置了不同的字体 <a href="http://i.stack.imgur.com/JMZ3Q.png" rel="noreferrer noopener nofollow">in interface builder</a> .</p>

<p>问题是有时在 iPad 上的字体大小不受尊重,并且 <code>UILabel</code> 以小文本大小显示(来自 iPhone 的那个)。此外,常规大小类的字体大小为 <a href="http://i.stack.imgur.com/o8D60.png" rel="noreferrer noopener nofollow">ignored randomly for some table view cells</a> .</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我认为您可以使用此代码来识别设备大小:</p>

<pre><code> #define iOSVersionGreaterThanOrEqualTo(v) ([[ systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)

+(NSString*)deviceSize {

CGFloat screenHeight = 0;

if (iOSVersionGreaterThanOrEqualTo(@&#34;8&#34;)) {
screenHeight = MAX([ bounds].size.height, [ bounds].size.width);
}else
screenHeight = [ bounds].size.height;

if (screenHeight == 480)
return &#34;Screen 3.5 inch&#34;;
else if(screenHeight == 568)
return &#34;Screen 4 inch&#34;;
else if(screenHeight == 667){
if (.scale &gt; 2.9) return Screen5Dot5inch;
    return&#34;Screen 4.7 inch&#34;;
}else if(screenHeight == 736)
return &#34;Screen 5.5 inch&#34;;
else
return &#34;UnknownSize&#34;;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UITableView 中 UILabel 的大小类随机忽略,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/38158343/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/38158343/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UITableView 中 UILabel 的大小类随机忽略