We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5da7e46 commit 7fa5c40Copy full SHA for 7fa5c40
Example/Source/ViewController.m
@@ -331,9 +331,12 @@ - (void)showCustomIntro {
331
332
#pragma mark - EAIntroView delegate
333
334
-- (void)introDidFinish:(EAIntroView *)introView {
335
- NSLog(@"introDidFinish callback");
336
- [self.tableView deselectRowAtIndexPath:[self.tableView indexPathForSelectedRow] animated:YES];
+- (void)introDidFinish:(EAIntroView *)introView wasSkipped:(BOOL)wasSkipped {
+ if(wasSkipped) {
+ NSLog(@"Intro skipped");
337
+ } else {
338
+ NSLog(@"Intro finished");
339
+ }
340
}
341
342
#pragma mark - Custom actions
0 commit comments