Lewis E. Garrett
Lewis E. Garrett
This is still a problem. I have been unable to make any Data Detector work with this WKWebView even though Data Detectors have been configured properly with: ` config.dataDetectorTypes =...
This is still an issue. I fixed similar to menuhui22's fix, by inserting: ` // Save the selection location [self.editorView evaluateJavaScript:@"zss_editor.prepareInsert();" completionHandler:^(NSString *result, NSError *error) { }]; ` at beginning...
I'm sorry but I am not in a position to do a pull request, but here is the entire changed -insertLink:url:title function: `- (void)insertLink:(NSString *)url title:(NSString *)title { // Save...
I solved the problem of extreme delay by eliminating the call to `-tidyHTML` in `-getHTML`: ``` - (void)getHTML:(void (^ _Nullable)(_Nullable id, NSError * _Nullable error))completionHandler { [self.editorView evaluateJavaScript:ZSSEditorHTML completionHandler:^(NSString *result,...
I encountered the same problem (loss of formatting) of a previously edited and saved document on the iOS target of my Catalyst app. At the same time the macOS target...
Thanks Pavel. I knew that I can probably use the Chatto Additions Photo message classes to develop a Files message classes. I would also need to develop file picker classes...
> @101airborne there is no need to develop file picker. You can add a new input item for selecting files and use `UIDocumentMenuViewController`. > I used the PhotoMessageCell to present...
> @101airborne there is no need to develop file picker. You can add a new input item for selecting files and use `UIDocumentMenuViewController`. > I used the PhotoMessageCell to present...
I have created a **zoomViewController** to display a photo message's image in a full screen view. The problem is that I have not been able to determine the **viewController** from...
> I have created a zoomViewController to display a photo message's image in a full screen view. The problem is that I have not been able to determine the viewController...