Boris Posted April 20, 2021 Share Posted April 20, 2021 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]; } 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.