ABCIntroView icon indicating copy to clipboard operation
ABCIntroView copied to clipboard

[self.IntroView removeFromSuperView] doesn't work

Open Keymo opened this issue 9 years ago • 2 comments

how to show my homepage when pressed "Let's go" button? thank u so much

Keymo avatar May 26 '16 00:05 Keymo

@Keymo Could you please send me a small gist of the code you are trying to run? I will do my best to help you debug the issue! :)

AdamBCo avatar May 26 '16 05:05 AdamBCo

thanks for your reply,right now my issue is that my homepage can't display after ABCIntroView removed from superview.

-(void)onDoneButtonPressed{

// Uncomment so that the IntroView does not show after the user clicks "DONE"

// NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];

// [defaults setObject:@"YES"forKey:@"intro_screen_viewed"];

// [defaults synchronize];

[UIView animateWithDuration:1.0 delay:0 options:UIViewAnimationOptionCurveEaseInOut animations:^{

    self.introView.alpha = 0;

} completion:^(BOOL finished) {

    [self.introView removeFromSuperview];

}];

}

when i pressed "let's go" button,homepage didn't display,there is only a black background.

On Wed, May 25, 2016 at 10:16 PM, Adam Cooper [email protected] wrote:

@Keymo https://github.com/Keymo Could you please send me a small gist of the code you are trying to run? I will do my best to help you debug the issue! :)

— You are receiving this because you were mentioned. Reply to this email directly or view it on GitHub https://github.com/AdamBCo/ABCIntroView/issues/6#issuecomment-221779735

Keymo avatar May 26 '16 21:05 Keymo