iOS 7 status bar overlapping UI

You can resolve this issue if you are using storyboards, as in this question: iOS 7 – Status bar overlaps the view If you’re not using storyboard, then you can use this code in your AppDelegate.m in did finishlaunching: if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) { [application setStatusBarStyle:UIStatusBarStyleLightContent]; self.window.clipsToBounds =YES; self.window.frame = CGRectMake(0,20,self.window.frame.size.width,self.window.frame.size.height-20); } … Read more

Xcode 5 Round Rect Buttons

Open the storyboard and choose the button you want to change. Open the Identity Inspector in the Utility Panel (right panel, 3rd button on top). Add (+) a new User Defined Runtime Attribute — Key Path: layer.cornerRadius, Type: Number, Value: {integer}. The higher the number, the more rounded the corners. 50 is a circle for … Read more

Xcode 5 Error CertUIFramework.axbundle

Temporary workaround: click iOS Simulator > Reset Content and Settings… and run again. This error message may reappear at random. For me, it happens when I launch a different application. There are several threads in Apple dev forums and in StackOverflow about this problem, but none have a definitive answer. This seems to be a … Read more