在相机上加载工具栏

时间:2014-04-08 09:24:39

标签: ios camera toolbar

我想在ios上显示相机上的工具栏。如果我评论我加载相机的行,工具栏显示正常并且有效。所以我的问题是相机显示在工具栏上。

我使用所有条形按钮在xib文件中创建工具栏。

是否可以在相机上加载工具栏?怎么做?

2 个答案:

答案 0 :(得分:0)

  • 我们必须在完成后设置toolBarItems PresentModalViewAnimation。
 [self presentViewController:imagePicker animated:YES completion:^{
        imagePicker.toolbar.items = [NSArray arrayWithObjects:cameraBarButton,flexibleBarSpace,cancelBarButton,nil];
}];

答案 1 :(得分:0)

使用工具栏创建叠加视图并将其指定给imagePickerController。 e.g。

overlayView = [[UIView alloc] initWithFrame:imagePickerController.view.frame];
overlayView.backgroundColor = [UIColor clearColor];
overlayView.layer.opaque = NO;
overlayView.opaque = NO;
[imagePickerController.cameraOverlayView addSubview:overlayView];