我正在使用UITextView
在我的視圖中,我有要求統計文本視圖所包含的行數使用以下函數來讀取'\n'
。然而,這隻適用於從鍵盤按下返回鍵時,但如果行warapper(當我鍵入連續字符我不會得到新行字符)。如何在不更改返回鍵的情況下更改行時如何讀取新的char?任何人有否知道如何..請分享.. 我follwing這個鏈接Link如何閱讀在UITextView中的行數
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range
replacementText:(NSString *)text
{
// Any new character added is passed in as the "text" parameter
if ([text isEqualToString:@"\n"]) {
// Be sure to test for equality using the "isEqualToString" message
[textView resignFirstResponder];
// Return NO so that the final '\n' character doesn't get added
return NO;
}
// For any other character return YES so that the text gets added to the view
return YES;
}
'BOOL'的兩個值不是'TRUE'和'FALSE';他們是'是'和'否'。 – BoltClock 2010-08-27 15:28:22