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
{{ message }}
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.
I implement the ASTableNode with cell contains html. I'm using a third-party UIView wrapped in a ASDisplayNode to display HTML(sometimes html is big and contains a lot of image). So sometime it requires a long calculation/drawing. This is awesome but I can see some problems with the library. I'm really appreciate if you can help me identified some problems?
During debug I see the table calculate the first cell size lastly. So is there any way to calculate first cell size firstly? Because next cells could be big and long drawing, and it takes a long time to display the table.
This is the debug text, showed cell 4 will calculated and layout first
"Cell [0, 4] - ratio 0.131707317073171"
"Cell [0, 4] - ratio 0.131707317073171"
"Cell [0, 3] - ratio 0.131707317073171"
"Cell [0, 3] - ratio 0.131707317073171"
"Cell [0, 2] - ratio 0.214634146341463"
"Cell [0, 2] - ratio 0.214634146341463"
"Cell [0, 1] - ratio 0.131707317073171"
"Cell [0, 1] - ratio 0.131707317073171"
"Cell [0, 0] - ratio 3.28780487804878"
"Cell [0, 0] - ratio 3.28780487804878"
"Cell [0, 0] - ratio 3.28780487804878"
"Cell [0, 0] - ratio 3.28780487804878"
One more problem I could see the table cell did not display the wrapped UIView correctly. Some cells with short text will show the vertical lines. After scroll up and down, the cell is normal again.
3 . And when the wrapped UIView in ASDisplayNode changes the size, the wrapper ASDisplayNode does know about this and does not change at all. Is there any way for the wrapper node know it's UIView size change?
During the delegate for update images (I was using ASNetworkImage), if the image downloaded completely, I update the textView and no way the textContentNode changes the size (I called setNeedLayout ...)
The text was updated successfully, but these errors were encountered:
ghost
changed the title
ASTableNode calculate the first cell size last, is this true?
Some problems with ASTableNode
Sep 22, 2017
I implement the ASTableNode with cell contains html. I'm using a third-party UIView wrapped in a ASDisplayNode to display HTML(sometimes html is big and contains a lot of image). So sometime it requires a long calculation/drawing. This is awesome but I can see some problems with the library. I'm really appreciate if you can help me identified some problems?
This is the debug text, showed cell 4 will calculated and layout first
"Cell [0, 4] - ratio 0.131707317073171"
"Cell [0, 4] - ratio 0.131707317073171"
"Cell [0, 3] - ratio 0.131707317073171"
"Cell [0, 3] - ratio 0.131707317073171"
"Cell [0, 2] - ratio 0.214634146341463"
"Cell [0, 2] - ratio 0.214634146341463"
"Cell [0, 1] - ratio 0.131707317073171"
"Cell [0, 1] - ratio 0.131707317073171"
"Cell [0, 0] - ratio 3.28780487804878"
"Cell [0, 0] - ratio 3.28780487804878"
"Cell [0, 0] - ratio 3.28780487804878"
"Cell [0, 0] - ratio 3.28780487804878"
Screenshot
3 . And when the wrapped UIView in ASDisplayNode changes the size, the wrapper ASDisplayNode does know about this and does not change at all. Is there any way for the wrapper node know it's UIView size change?
My wrapper UIView code:
textContentNode = ASDisplayNode { [unowned self] () -> UIView in let textView = MyCustomHtmlView() textView.attributedString = attrHtml textView.delegate = self textView.edgeInsets = self.insets return textView }
During the delegate for update images (I was using ASNetworkImage), if the image downloaded completely, I update the textView and no way the textContentNode changes the size (I called setNeedLayout ...)
The text was updated successfully, but these errors were encountered: