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 Dec 12, 2022. It is now read-only.
MXKImageView is used for many cases, from displaying image in full screen to display read receipts avatars.
For example UIScrollView allocation in �initLayout method� is time consuming and not needed for most cases like avatar display.
I/O operations and network calls are also made on main thread.
Those issues slow down UI.
We should at least:
Perform I/O operations and network calls in background
Use a separate viewer for displaying images in full screen
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
MXKImageView is used for many cases, from displaying image in full screen to display read receipts avatars.
For example UIScrollView allocation in
�initLayout
method� is time consuming and not needed for most cases like avatar display.I/O operations and network calls are also made on main thread.
Those issues slow down UI.
We should at least:
The text was updated successfully, but these errors were encountered: