You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is working. I have already tried that. You can't use self.textView like that. Instead, create your own textfield (no need to be iboutlet, just UITextfield) and make sure delegate is set to your view. After that, add this one. It is super cool.
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
[self sendText:string]; // actually this one. I write inside that func >> [self.textDocumentProxy insertText:str];
return NO;
}
-add CYRKeyboardButton on Custom keyboard extension.
https://github.com/kulpreetchilana/Custom-iOS-Keyboards
how can add CYRKyboardButton on PMCustomKeyboard.m file please help me.
The text was updated successfully, but these errors were encountered: