Skip to content

Commit

Permalink
Expose AMWaveViewController protocols
Browse files Browse the repository at this point in the history
  • Loading branch information
andreamazz committed Mar 16, 2015
1 parent 9f59109 commit 9c8d5c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 4 additions & 2 deletions AMWaveTransition/AMWaveViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@
// Copyright (c) 2014 Fancy Pixel. All rights reserved.
//

#import "AMWaveTransition.h"

@import UIKit;

@interface AMWaveViewController : UIViewController
@interface AMWaveViewController : UIViewController <UINavigationControllerDelegate, AMWaveTransitioning>

- (NSArray*)visibleCells;
@property (strong, nonatomic) IBOutlet AMWaveTransition *interactive;

@end
7 changes: 2 additions & 5 deletions AMWaveTransition/AMWaveViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@
//

#import "AMWaveViewController.h"
#import "AMWaveTransition.h"

@interface AMWaveViewController () <UINavigationControllerDelegate, AMWaveTransitioning>

@property (strong, nonatomic) IBOutlet AMWaveTransition *interactive;
@interface AMWaveViewController ()

@end

Expand Down Expand Up @@ -46,7 +43,7 @@ - (void)viewDidDisappear:(BOOL)animated
return nil;
}

- (NSArray*)visibleCells
- (NSArray *)visibleCells
{
return nil;
}
Expand Down

0 comments on commit 9c8d5c9

Please sign in to comment.