UIImageView-GeometryConversion
UIImageView-GeometryConversion copied to clipboard
A category on UIImageView that provides methods for converting points and rects from the image to view coordinates.
Results
2
UIImageView-GeometryConversion issues
Sort by
recently updated
recently updated
newest added
Just noticed this in the .swift file, thanks!
There ist a small error in "convertRect(fromViewRect viewRect : CGRect)" `let imageTopLeft = convertPoint(fromImagePoint: viewTopLeft) let imageBottomRight = convertPoint(fromImagePoint: viewBottomRight)` should be replaced with `let imageTopLeft = convertPoint(fromViewPoint: viewTopLeft) let...