Skip to content

Commit 9c8d5c9

Browse files
committedMar 16, 2015
Expose AMWaveViewController protocols
1 parent 9f59109 commit 9c8d5c9

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed
 

‎AMWaveTransition/AMWaveViewController.h

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@
66
// Copyright (c) 2014 Fancy Pixel. All rights reserved.
77
//
88

9+
#import "AMWaveTransition.h"
10+
911
@import UIKit;
1012

11-
@interface AMWaveViewController : UIViewController
13+
@interface AMWaveViewController : UIViewController <UINavigationControllerDelegate, AMWaveTransitioning>
1214

13-
- (NSArray*)visibleCells;
15+
@property (strong, nonatomic) IBOutlet AMWaveTransition *interactive;
1416

1517
@end

‎AMWaveTransition/AMWaveViewController.m

+2-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,8 @@
77
//
88

99
#import "AMWaveViewController.h"
10-
#import "AMWaveTransition.h"
1110

12-
@interface AMWaveViewController () <UINavigationControllerDelegate, AMWaveTransitioning>
13-
14-
@property (strong, nonatomic) IBOutlet AMWaveTransition *interactive;
11+
@interface AMWaveViewController ()
1512

1613
@end
1714

@@ -46,7 +43,7 @@ - (void)viewDidDisappear:(BOOL)animated
4643
return nil;
4744
}
4845

49-
- (NSArray*)visibleCells
46+
- (NSArray *)visibleCells
5047
{
5148
return nil;
5249
}

0 commit comments

Comments
 (0)
Please sign in to comment.