2009-05-19 50 views

回答

1

每次當您添加文本時檢查內容大小

UITextView *textView; 
    if(textView.contentSize.height > textView.frame.size.height) 
    { 
     //your text is lager then view 
    } 
+0

這工作得很好,第一次的內容高度超過幀。之後,條件保持真實,每個字符添加到該行,文本視圖將保持滾動。我正在尋找的是僅當添加的文本不在視圖中時才通過測試用例。 ((textView.contentOffset.y + textView.frame.size.height) Boon 2009-05-19 17:02:58

相關問題