I had a problem while testing my application, everything worked fine until I turned on the personal access point, and the blue bar is displayed at the top, all the shortcuts and buttons are moved down:

Edit: (23-4-2013)
Code viewDidLoad:
- (void)viewDidLoad
{
day1Times = [[NSMutableArray alloc] init];
day2Times = [[NSMutableArray alloc] init];
day3Times = [[NSMutableArray alloc] init];
day4Times = [[NSMutableArray alloc] init];
day5Times = [[NSMutableArray alloc] init];
day6Times = [[NSMutableArray alloc] init];
day7Times = [[NSMutableArray alloc] init];
[self performSelector:@selector(sendTokenIDSelector) withObject:nil afterDelay:0.1];
[self performSelectorInBackground:@selector(getTimes) withObject:nil];
[super viewDidLoad];
}
Edit: (24-4-2013)
The configuration of the constraints is as follows:

How can I fix their location and keep doing this without moving regardless of the status bar?
source
share