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

iOS 7.0.2 is here!

Posted on:

Just few minutes ago all my devices showed available update to 7.0.2. The biggest change is fix for lockscreen bypass bug. You can find details here: http://support.apple.com/kb/HT5957

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