catransition Questions
6
I have a side navigation controller and present it via a UIButton. When I make this NC the root view controller directly by [self presentviewcontroller: NC animated: YES completion: nil], for...
Oubliette asked 21/3, 2016 at 22:9
6
Solved
I would like to push a view controller using Swift and animate it so it appears from the bottom and moves up. I have the following code to push my view controller:
let helloTableViewController = s...
Pneumatics asked 12/8, 2015 at 16:22
1
I'm trying to make a custom CATransition such that pushing a viewController looks exactly the same as presenting one modally.
so far I have this for present
override func viewWillAppear(_ animat...
Bringhurst asked 22/5, 2017 at 22:28
3
Solved
I'm trying to animate the rounding of the corners of my view. The cornerRadius property is listed as animatible, but I can't seem to get it to work. I actually can't get any of the other properties...
Mallorie asked 4/5, 2011 at 16:47
3
Solved
I was using a nice method to dismiss my modal view controller:
[self dismissModalViewControllerWithTransition:2];
which makes a slide transition from left to right, like a navigation controller ...
Pragmatism asked 10/7, 2012 at 11:34
0
What I am trying to do is to make a custom transition effect for my modal presented view controller (only for dismissing it). I just want it to look like the original but slower. The problem is I a...
Azucenaazure asked 1/5, 2017 at 16:54
2
May be this types of issue occurred with many developer, I also tried to find on Google but there is no luck to solve my problem.
In my app rootViewController set on window dynamically, I mean use...
Gereld asked 31/7, 2014 at 6:55
0
for transition from one viewController to another view i wrote code below like this
if (UIInterfaceOrientationIsLandscape(STATUSBAR_ORIENTATION)) {
transition = [CATransition animation];
trans...
Zipper asked 30/10, 2014 at 14:21
1
I am working on a project that needs to:
have a transition animation from a view that contains an IKImageBrowserView to another view;
have a hover overlay on each IKImageBrowserCell as the mouse ...
Standridge asked 9/11, 2012 at 2:9
1
I'm using CATransition to slide subviews of UIView. But the problem is that the CATransition always appears in whole screen. And it looks like a mess because I have another UI elements in window th...
Bluebottle asked 9/7, 2010 at 4:44
1
Solved
I've used these three classes several times by separate several times.
For example when I want to group several animations (i.e.: CABasicAnimations, etc) to happen simultaneously I first think of ...
Toname asked 26/12, 2012 at 15:41
1
Solved
I animated the appearance of my subview with:
CATransition *transition = [CATransition animation];
transition.duration = 0.3;
transition.type = kCATransitionReveal;
[webView.layer addAnimation:tra...
Waldheim asked 22/5, 2012 at 11:15
1
Solved
i am trying to do the half page curl feature. This is the code I am using:
#import <QuartzCore/QuartzCore.h>
CATransition *animation = [CATransition animation];
[animation setDelegate:self...
Fluxmeter asked 12/12, 2011 at 8:52
2
Solved
How do you implement kCATransitionPush using CAAnimation subclasses in iOS?
CAAnimation *animation;
// How do you create an animation that does the same than:
// CATransition *animation = [CATrans...
Stokehole asked 9/4, 2011 at 11:25
1
© 2022 - 2024 — McMap. All rights reserved.