3
A
回答
7
要獲得RTLabel的高度用 「optimumSize」 屬性。
RTLabel *someLabel = [[RTLabel alloc] init];
someLabel.frame = CGRectMake(0.f, 0.f, 300.f,100.f);
someLabel.text = @"<p>Some <b>HTML</b></p>";
CGSize optimumSize = [someLabel optimumSize];
someLabel.frame = CGRectMake(0.f, 0.f, 300.f,optimumSize.height);
0
我認爲這只是
CGFloat height = CGRectGetHeight(rtLabel.bounds)
相關問題
- 1. 如何根據內容提供RTLabel和ScrollView的高度?
- 2. 如何獲得textView的高度
- 3. Android:如何獲得準確的高度?
- 4. 如何獲得TextView的高度
- 5. CSS如何獲得相同的高度?
- 6. 如何獲得iframe跨域的高度
- 7. 如何獲得AlertDialog的高度在Android
- 8. 如何獲得TextBox的真實高度?
- 9. 如何獲得UIView的高度
- 10. 如何獲得UITableViewCell的總高度?
- 11. 如何獲得listView的確切高度
- 12. 我的iPhone如何獲得高度?
- 13. Android上的GPS如何獲得高度?
- 14. 如何獲得mediacontroller的默認高度?
- 15. 如何獲得select2下拉的高度?
- 16. 如何獲得自動高度的標籤的實際高度
- 17. 如何獲得高度爲:auto的元素的高度?
- 18. 如何獲得整頁高度的高度?
- 19. 如何獲得高度:100%div的高度:auto div?
- 20. 如何獲得Bootstrap Popover高度?
- 21. Android:如何獲得文字高度
- 22. 如何獲得Android軟鍵盤高度?
- 23. Swift如何獲得UIAlertController標題高度
- 24. 如何在px中獲得x%高度?
- 25. 如何獲得當前高度ios7
- 26. 如何獲得實際屏幕高度?
- 27. 如何獲得圖像高度屬性
- 28. setRotationX/setRotationY寬度/高度增加後。如何獲得新的寬度和高度?
- 29. 獲得元素的高度
- 30. IOS - 獲得高度的NSString
更好的位將使用讀出來'CGRectGetHeight()','即高度CGFloat的= CGRectGetHeight(rtLabel.bounds);'此外,蘋果建議不要用命名實例變量[前導下劃線]( http://stackoverflow.com/questions/3521254/prefixing-property-names-with-an-underscore-in-objective-c),只是要記住。 –
更新,我剛剛從Github -https://github.com/honcheng/RTLabel使用RTLabel項目,但將其更改爲rtLabel。 – ansible