【发布时间】:2014-09-12 20:45:08
【问题描述】:
我有一个标签栏,它像这样调用UIImagePickerController:
UIImagePickerController *photo = [[UIImagePickerController alloc] init];
photo.delegate = self;
photo.allowsEditing = NO;
photo.sourceType = UIImagePickerControllerSourceTypeCamera;
[[UIApplication sharedApplication] setStatusBarHidden:YES];
[self presentViewController:photo animated:YES completion:nil];
但即使setStatusBarHidden 到YES,状态栏仍然存在。
【问题讨论】:
标签: ios ios7 uiimagepickercontroller statusbar