- May 27, 2025
- Mins Read
Custom transition between viewcontrollers holding tableviews. Each cell is animated to simulate a ‘wave effect’.
Read more about transitions here and UIKit Dynamics here
pod 'AMWaveTransition'
to your Podfilepod install
open App.xcworkspace
github “andreamazz/AMWaveTransition”
AMWaveViewController
and override visibleCells
or follow these steps:Implement UINavigationControllerDelegate
and this delegate method:
– (id<UIViewControllerAnimatedTransitioning>)navigationController:(UINavigationController *)navigationController
animationControllerForOperation:(UINavigationControllerOperation)operation
fromViewController:(UIViewController*)fromVC
toViewController:(UIViewController*)toVC {
if (operation != UINavigationControllerOperationNone) {
// Return your preferred transition operation
return [AMWaveTransition transitionWithOperation:operation];
}
return nil;
}
Remember to set your instance as the navigation delegate:
– (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
[self.navigationController setDelegate:self];
}
– (void)dealloc {
[self.navigationController setDelegate:nil];
}
Implement th AMWaveTransitioning
protocol by returning your tableview’s visible cells:
– (NSArray*)visibleCells {
return [self.tableView visibleCells];
}
To implement the interactive gesture create a new property in your view controller:
@property (strong, nonatomic) IBOutlet AMWaveTransition *interactive;
initialize it in your viewDidLoad
:
self.interactive = [[AMWaveTransition alloc] init];
Attach the gesture recognizer in your viewDidAppear:
and detach it in the viewDidDisappear:
:
– (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
[self.interactive attachInteractiveGestureToNavigationController:self.navigationController];
}
– (void)viewDidDisappear:(BOOL)animated {
[super viewDidDisappear:animated];
[self.interactive detachInteractiveGesture];
}
If the view controller you are transitioning to has no table view, don’t implement visibleCells
, the library will handle the transition correctly.
As you can see in the sample project, the best results are obtained by setting the view and the cells’ background to clearColor
, and setting a background color or a background image to the navigation controller.
Light and scrollable view controller for tvOS to present blocks of text Description TvOSTextViewer is a view controller to present ...
TvOSSlider is an implementation of UISlider for tvOS. Description and usage TvOSSlider palliates missing an implementation of UISlider for tvOS as part ...
TvOSScribble, based on CoreML, mitigates the lack of a physical numpad area in Siri Remote implementing a handwriting gesture recognizer. ...
PIN keyboard for tvOS Description TvOSPinKeyboard is a view controller that allows easily asking for PIN codes in tvOs Requirements ...
📺 A tvOS button which truncates long text with '... More'. The TvOSMoreButton is a simple view which aims to ...