0
當我想爲我的UILabels
獲得動態幀大小時,SizeThatFits
看起來很容易,我想知道使用哪一個的優點/缺點是什麼?什麼時候使用sizeWithAttributes vs sizeThatFits?
SizeWithAttributes
它看起來很複雜。
當我想爲我的UILabels
獲得動態幀大小時,SizeThatFits
看起來很容易,我想知道使用哪一個的優點/缺點是什麼?什麼時候使用sizeWithAttributes vs sizeThatFits?
SizeWithAttributes
它看起來很複雜。
它們是不同類別的方法。 sizeThatFits:
適用於UIView
子類,而sizeWithAttributes
適用於NSString
。
第一個告訴你視圖應該基於它的子視圖的大小。後者用於瞭解給定字符串的維度,具有潛在高級屬性(NSAttributedString
)。