This is a read-only archive of the Mumble forums.

This website archives and makes accessible historical state. It receives no updates or corrections. It is provided only to keep the information accessible as-is, under their old address.

For up-to-date information please refer to the Mumble website and its linked documentation and other resources. For support please refer to one of our other community/support channels.

Jump to content

Create groups from ios app


Boris
 Share

Recommended Posts

when i can find how to allow, how to create groups from ios app?

 

i do connect by button, what i can modified to create some group when i connected?

 

- (void)buttonPressed:(UIButton *)button {
    
    NSIndexPath *indexPath = [[self tableView] indexPathForSelectedRow];
    MUFavouriteServer *favServ = [_favouriteServers objectAtIndex:[indexPath row]];
    NSLog(@"Button Pressed");
    NSString *userName = [favServ userName];
    if (userName == nil) {
        userName = [[NSUserDefaults standardUserDefaults] objectForKey:@"DefaultUserName"];
    }
    
    MUConnectionController *connCtrlr = [MUConnectionController sharedController];
    [connCtrlr connetToHostname:@"MY_SERVER_IP"
                           port:64738
                        withUsername:@"USERNAME"
                    andPassword:[favServ password]
       withParentViewController:self];
    [[self tableView] deselectRowAtIndexPath:indexPath animated:YES];
}

 

Link to comment
Share on other sites

 Share

×
×
  • Create New...