Я пытаюсь добавить новый вид в свое приложение, используя presentModalViewController
.
ASpotImageViewController *aSpotImage = [[ASpotImageViewController alloc] initWithNibName:@"ASpotImageView" bundle:nil spotID:spotid];
aSpotImage.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
//NSLog(@"frame is %@", aSpotImage.view.frame);
//NSLog(@"origin is %@", aSpotImage.view.frame.origin);
NSLog(@"description is %@", aSpotImage.description);
[aSpotImage setModalPresentationStyle:UIModalPresentationFullScreen];
[self presentModalViewController:aSpotImage animated:YES];
Но когда я использую это, новый вид появляется примерно на 40 пикселей вниз по экрану, а внизуотрезанЧто может быть причиной этого?У меня нет этой проблемы в других случаях, когда я использую этот код.