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 Jan 10, 2023. It is now read-only.
For simplicity/readability, we should use the Swift extensions for accessing properties of CGRect's, instead of using their raw form.
eg. view.frame.minX instead of view.frame.origin.x view.frame.maxX instead of view.frame.origin.x + view.frame.size.width view.frame.width instead of view.frame.size.width
The text was updated successfully, but these errors were encountered:
For simplicity/readability, we should use the Swift extensions for accessing properties of CGRect's, instead of using their raw form.
eg.
view.frame.minX
instead ofview.frame.origin.x
view.frame.maxX
instead ofview.frame.origin.x + view.frame.size.width
view.frame.width
instead ofview.frame.size.width
The text was updated successfully, but these errors were encountered: