Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 7 found a place where it prints a line with a log error

I have a log in XCode output console:

Use -removeDeferredKeyObserver: instead of -removeKeyObserver:

I've searched trough the project using keyword removeKeyObserver but have not found any matches.

My question is how to found a place (line) after Xcode prints this line in console.

like image 927
Matrosov Oleksandr Avatar asked Dec 18 '25 05:12

Matrosov Oleksandr


1 Answers

As it can comes from a library or inside core frameworks, you should :

  1. Open terminal
  2. use grep "removeKeyObserver:" * -r to find where the method is called

It used this method today for about the same purpose.

like image 156
David 'mArm' Ansermot Avatar answered Dec 20 '25 23:12

David 'mArm' Ansermot



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!