iOS

iOS 7.0.5 is out!

Posted on:

Just about an hour ago some devices started to show available update. Patch is targeted only for some models of iPhones 5s and 5c (presenting themselves as 5,4 […]

iOS

Quick tip: How to hide status bar in iOS 7

Posted on:

It may seem trivial, but usual: [[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationFade]; is not working, nor: [UIApplication sharedApplication].statusBarHidden = YES; Now everything is simplified and minimalistic, so all you have […]

iOS

Rotating and moving UIImageView

Posted on:

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 […]