UIImagePickerController以简单的方式在相机中显示库按钮

时间:2013-11-26 18:34:56

标签: ios uiimagepickercontroller

我试图在相机视图(UIImagePickerController)上显示库按钮。这是我的代码:

- (void)takePhoto{
    _imagePicker = [[UIImagePickerController alloc] init];
    [_imagePicker setSourceType:UIImagePickerControllerSourceTypeCamera];
    [_imagePicker setDelegate:self];
    _imagePicker.allowsEditing = YES;
    CGRect frame = self.view.frame;
    int y = frame.size.height;
    int x = frame.size.width;

    UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(x-100, y-50-1, 100, 30)];
    [button setTitle:@"Library" forState:UIControlStateNormal];
    [button setBackgroundColor:[UIColor clearColor]];
    [button addTarget:self action:@selector(gotoLibrary:) forControlEvents:UIControlEventTouchUpInside];

    [_imagePicker.view addSubview:button];

    [self presentViewController:_imagePicker animated:NO completion:nil];


}
-(IBAction)gotoLibrary:(id)sender
{
    UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
    [imagePicker.view setFrame:CGRectMake(0, 80, 450, 350)];
    [imagePicker setSourceType:UIImagePickerControllerSourceTypeSavedPhotosAlbum];
    imagePicker.allowsEditing = YES;
    [imagePicker setDelegate:self];

    [_imagePicker presentViewController:imagePicker animated:YES completion:nil];
}

当我尝试拍照时,图像出现问题。拍照时如何隐藏图书馆按钮? How it looks like

And problem as this

1 个答案:

答案 0 :(得分:0)

穷人解决这个问题的方法是将标签放在顶部,居中,这样就不会与照片按钮发生冲突;)

不是最好的解决方案 - 但它超级快速