In Xcode, I started getting warnings while trying to write some unit tests using OCUnit (SenTestingKit).
warning: creating selector for nonexistent method 'myMethodName1:'
warning: creating selector for nonexistent method 'myMethodName2:'
...
warning: creating selector for nonexistent method 'release'
warning: creating selector for nonexistent method 'retain'
warning: creating selector for nonexistent method 'alloc'
warning: creating selector for nonexistent method 'init'
Is this something I should worry about, or can I somehow disable these types of warnings with some compiler flag?
source
share