Reputation: 711
There are two situations, that I am aware of, that cause the following errors:
ld: warning: instance method 'resetAudioSystem' in category from /opentok-ios-sdk/Opentok.framework/Opentok(OTPublisher+AudioSnoop.o) conflicts with same method from another category
ld: warning: instance method 'attachAudioSnoopBlock:' in category from /opentok-ios-sdk/Opentok.framework/Opentok(OTPublisher+AudioSnoop.o) conflicts with same method from another category
ld: warning: instance method 'setVideoSnoopDelegate:' in category from /opentok-ios-sdk/Opentok.framework/Opentok(OTPublisher+VideoSnoop.o) conflicts with same method from another category
Possibility 1: A category instance method is declared twice. (Described here: SO)
But, When I do a search of any of the 3 instance methods (in Xcode or Grep) I do not find it declared twice.
Possibility 2: Accidentally importing a .m file. (Described here: SO)
But, I checked all my imports and I only import the framework once in the whole project. Also, only shows up once in Build Phases.
My program runs without crashing, presumably because the last category definition added is used and it happens to be correct. (Source)
Question 1: Is there a way to tell, prior to its addition, where the two categories are located?
Question 2: Any other ideas about how to resolve this?
Note: The Opentok Framework is a binary
Occurs in :
xcode 4.6 & xcode 5
iOS6 & iOS7
Upvotes: 20
Views: 12086
Reputation: 21571
In my case the header file containing the categories was imported twice for a class. It wasn't obvious because another header file also imported the same header. In other words
//Class_with_warnings.h:
#import "Offending_Header.h" // import #1
#import "Class_A.h" // import #2
//Whereas Class_A.h:
#import "Offending_Header.h" // import #2
Upvotes: 0
Reputation: 452
I had this error, because I literally pasted my methods' implementation to header file (*.h
). It worked well however; the only symptom - warnings.
Check whether your implementation is in correct (*.m
) file.
Upvotes: 6
Reputation: 2636
I had this warnings because I accidentally imported the implementation file of a category instead of it's header file. So:
wrong: #import 'MyClass+MyCategory.m'
#import 'MyClass+MyCategory.h'
Upvotes: 41
Reputation: 2092
This look like a linker bug. Maybe the SDK got linked more than once, or -ObjC is missing/present where it should not be. Check linker flags. Try deleting all OpenTok frameworks, make sure its missing in your projects, then re-download it and install again.
Upvotes: 4