怎么告诉UITextView很脏?

时间:2011-12-22 11:27:34

标签: ios objective-c uitextview

目前,我通过以下方式测试UITextView是否脏了:

if ([self.textView.undoManager canUndo]) ...

这总是正确的吗?或者isDirty中是否有UITextView类似方法?

1 个答案:

答案 0 :(得分:2)

您可以使用UITextViewDelegate

收听很多内容

查看UITextViewDelegate documentation了解详情

- (void)textViewDidBeginEditing:(UITextView *)textView

- (void)textViewDidEndEditing:(UITextView *)textView

- (void)textViewDidChange:(UITextView *)textView

还有shouldBeginshouldEnd编辑以及选择更改。

希望有所帮助。