通知

1.发送通知

 selector:收到通知做出的响应  name:通知的名称 object:监听的对象  
        [[NSNotificationCenter defaultCenter] 
            addObserver:self 
            selector:@selector(textDidChange) 
            name:UITextViewTextDidChangeNotification 
            object:self];


2,通知的常用种类

UITextView通知
UITextViewTextDidChangeNotification  

键盘通知
 键盘的frame发生改变时发出的通知(位置和尺寸)
    UIKeyboardWillChangeFrameNotification
    UIKeyboardDidChangeFrameNotification
 键盘显示时发出的通知
    UIKeyboardWillShowNotification
    UIKeyboardDidShowNotification
 键盘隐藏时发出的通知
    UIKeyboardWillHideNotification


你可能感兴趣的:(通知)