我在自定义目标c框架中有以下两种方法
- (void) callWithProfile:(UserProfile *) user number:(NSString *) number name:(NSString *)name instructions:(NSString *)instructions
{
//
}
// Make call connection
- (void) startConnecting
{
//
}
我可以用
调用startConnecting let socket : SocketSingleton = SocketSingleton()
socket.startConnecting()
但它不会让我调用callWithProfile。这两种方法都在头文件中声明,框架中没有错误。如何从我的快速项目中调用其他方法?