简体   繁体   中英

how to hide FBProfilepictureview

i get picture in FBProfilepicture view. I placed one button in this view.When button click show device photo and fetched image in button. but this image is placed in fbprofile picture view back side.please help.

- (IBAction)act_AddPhotoFacebLogin:(id)sender {

mPicker = [[UIImagePickerController alloc] init];
mPicker.delegate = self;
mPicker.allowsEditing = YES;

   mPicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self presentViewController:mPicker animated:YES completion:NULL];
userProfileImage.frame = CGRectZero;

}

show image in my button [self dismissViewControllerAnimated:YES completion:^{}];

  [btn_ProfileFb1Picture setImage:[info objectForKey:UIImagePickerControllerOriginalImage]        forState:UIControlStateNormal];
   forControlEvents:UIControlEventTouchUpInside];

userProfileImage is a fbprofilepicture view and this view contain btn_ProfileFb1Picture.

FBProfilepictureview is subClass of UIView and its also support hide property of UIView so just set it hide on your button click if you have object like this

@property (strong, nonatomic) IBOutlet FBProfilePictureView *useProfileImage;

then set like this

useProfileImage.hidden = YES;

or you can do like

useProfileImage.frame = CGRectZero

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM