mucdong Posted July 1, 2015 Share Posted July 1, 2015 Hello,I would like to make a Push to Talk iOS app, just press one button and Talk, release button to Stop.I downloaded, build MumbleKit, and include to my Xcode project, but I don't know where I should start to use MumbleKit.I tried to find API docs, tutorial but no result.So anybody can help me?Thank you so much! Quote Link to comment Share on other sites More sharing options...
mucdong Posted July 2, 2015 Author Share Posted July 2, 2015 Anybody can help me, please :!: Quote Link to comment Share on other sites More sharing options...
mucdong Posted July 24, 2015 Author Share Posted July 24, 2015 Hello,I did: #import <UIKit/UIKit.h> #import <MKServices.h> #import <MKConnection.h> @interface ViewController : UIViewController<MKConnectionDelegate> @end - (void)viewDidLoad { [super viewDidLoad]; [self loginToMumbleServer]; } - (void)loginToMumbleServer { MKConnection *conn = [[MKConnection alloc] init]; conn.delegate = self; [conn setIgnoreSSLVerification:YES]; [conn connectToHost:@"my server host" port:12345]; } #pragma - mark /// @param conn The connection that was opened. - (void) connectionOpened:(MKConnection *)conn { =>>> This function is called } But I got log:MKConnection: Invalid CryptState or CFSocket.MKConnection: Sent ping message. Can anybody help me to continue, is connection worked or not with that log. How can I start to TALK and LISTEN from other?Thanks a lot! Quote Link to comment Share on other sites More sharing options...
trinizz84 Posted April 4, 2016 Share Posted April 4, 2016 Any resolution to this issue? Quote Link to comment Share on other sites More sharing options...
kk143g Posted January 29, 2019 Share Posted January 29, 2019 Did you configured Mumblekit successfully in iOS project? AM facing some difficulties in integrating, can you help? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.