who is issuing my UIKeyboardDidHideNotification?

后端 未结 2 1320
自闭症患者
自闭症患者 2021-01-25 12:37

I want to register to UIKeyboardDidHideNotification that only my UIViewController is issuing.

When I do :

    [[NSNotificationCenter default         


        
2条回答
  •  时光取名叫无心
    2021-01-25 13:24

    Object for UIKeyboardDidHideNotification is always nil. Try to add observer in viewWillAppear and remove in viewDidDisapper methods.

提交回复
热议问题