SkillAgentSearch skills...

LTSlidingViewController

sliding view controller allowing custom transition

Install / Use

/learn @ltebean/LTSlidingViewController
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

LTSlidingViewController

Demo

LTSlidingViewController

LTSlidingViewController

Usage

Make your view controller extend LTSlidingViewController, in viewDidLoad:

self.animator = [[LTSlidingViewCoverflowTransition alloc] init]; // set the animator

UIViewController *vc1 = [self.storyboard instantiateViewControllerWithIdentifier:@"vc"];
UIViewController *vc2 = [self.storyboard instantiateViewControllerWithIdentifier:@"vc"];
UIViewController *vc3 = [self.storyboard instantiateViewControllerWithIdentifier:@"vc"];
    
[self addChildViewController:vc1];
[self addChildViewController:vc2];
[self addChildViewController:vc3];

Some useful methods you can call in your subclass controller:

- (void)scrollToPage:(NSInteger)page animated:(BOOL)animated;
- (void)removeAllChildViewControllers;
- (void)didScrollToPage:(NSInteger)page;
@end

And you can create custom transition by implementing LTSlidingViewTransition protocal:

@protocol LTSlidingViewTransition <NSObject>
- (void)updateSourceView:(UIView *)sourceView destinationView:(UIView *)destView withProgress:(CGFloat)progress direction:(SlideDirection)direction;
@end

See the example for details~

View on GitHub
GitHub Stars122
CategoryDevelopment
Updated1y ago
Forks23

Languages

Objective-C

Security Score

65/100

Audited on Nov 12, 2024

No findings