I have the following two methods in an custom objective c framework
- (void) callWithProfile:(UserProfile *) user number:(NSString *) number name:(NSString *)name instructions:(NSString *)instructions
{
//
}
// Make call connection
- (void) startConnecting
{
//
}
and I can call startConnecting with
let socket : SocketSingleton = SocketSingleton()
socket.startConnecting()
but it won't let me call callWithProfile. Both methods are declared in the header file and there are no errors in the framework. How can I call the other method from my swift project?