Open peebits opened 8 years ago
+1
I have an issue with images not displaying, adding the first image is fine but then trying to add any more images just goes through the motions without displaying anything. Also updating images doesn't work.
i launch the demo, also have this problem
@lehom have a look at this and see if it helps you. https://github.com/nnhubbard/ZSSRichTextEditor/issues/134
Try removing [webView stopLoading] from ZSSRichTextEditor.m (- (void)webView:(UIWebView )webView didFailLoadWithError:(NSError )error)
In my case some times images went to fail block so other images also stopped loading because of stopLoading method in failure block
@lehom I am now working on a fix for the images.
Find him and comment
// element.empty();
In my issue is the ATS forbid downloading image, so add following lines in Info.plist.
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
+1
Please help