My app’s layout is broken when the status bar of a call or access point is displayed

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:

enter image description here

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:

enter image description here

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

+5
source share
1 answer

, . , .

→ Command + 3.

, ( ). , .

+1

All Articles