Reputation: 110
import UIKIt
Class SocketIOManager : NSObject {
}
Upvotes: 1
Views: 247
Reputation: 422
SocketIOManager class already exist in your socketIO framework, therefore you do not need to create another class for It. I think this is happening with you.
Upvotes: 2
Reputation: 110
Actaully Class name with SocketIOManager is already defined in SocketIO-CLient Swift Library thats why it was showing this error .
Upvotes: 1
Reputation: 3141
SocketIOManager already exists in Socket.IO, you need to prefix your class with your own prefix:
Class MySocketIOManager : SocketIOManager {
}
Upvotes: 2