Status Bar then ViewDidLoad

88 Views Asked by At

My App is a classic tab bar Application. When one of the view controllers of the Tab Bar is already loaded when i receive a call, the the windows scrolls down perfectly, and up again at the end of the call. If, while in a call ( the status bar is present ) the user selects a tab bar Item that was never selected before then the associated view controller is loaded, but the images are totally off.

In the viewDidLoad methods, i programmatically place images at absolute coordinates and also define the size for each object. If i add a Y offset (20 points of the Status bar), the object are still off.

It is very interesting to note that the offset is not constant (images at the top of the screen and really off than those at the bottom are a little less... ( i would understand, may be, a constant misalignment, but i have no idea what's going on here) ...

The use auto layout is checked, but i have not enter any constraints and place the object programmatically ( i.e. not with storyboard )

I have simple constant and C arrays where i store the coordinates and size for my images.

Here is the code in ViewDidload

for (int i =0; i< 16; i++ ){
  [imgView setFrame:CGRectMake(xCoord[i],yCoord[i],buttonSize,buttonSize)];
  UIImage *img= [UIImage imageNamed: [ KP_BW objectAtIndex: KP_BW_Index]] ; 

  [imgView setImage:img]; 
  [self.view addSubview:imgView];
}
0

There are 0 best solutions below