Sandip Patel (SM)

Results 4 comments of Sandip Patel (SM)

Instead of rejoining the room every time, do set the presence of the group when the user relaunches the app. Set presence with below code function iterate through all your...

**Yes, you can open manual entry screen first as below:** - Pass false for scanningEnabled let cardIOVC = CardIOPaymentViewController(paymentDelegate: self, scanningEnabled: false) cardIOVC?.modalPresentationStyle = .formSheet present(cardIOVC!, animated: true, completion: nil)

Solution for the above issue is: Put the below code into SGViewController.m - (void)webViewDidFinishLoad:(UIWebView *)webView{ NSString *title = [webView.request.URL absoluteString]; self.title = title; self.textField.text = title; }