This can seem trivial, but I saw lot of people complaining about not working tint color when using UIImage. Here is the proper way: UIImageView *imageView = [[UIImageView […]
iOS
Posted on:
Rotating and moving UIImageView
Just simple conclusion – NEVER EVER try to move UIImageView which you are rotating using CATransform3DMakeRotation or CGAffineTransformMakeRotation. Even combining CGAffineTransformRotate with CGAffineTransformMakeTranslation together in CGAffineTransformConcat function gives […]