Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
1answer
1k views

UINavigationController custom animation

Any of you achieved to make custom animation like expand from middle in UINavigationController? (for example Facebook app when you select news feed from the launcher view) I seen one of trick like ...
5
votes
3answers
907 views

Implementing a CATransition push with CAAnimation

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 = ...
3
votes
2answers
329 views

Customise UINavigationController animation: CATransition

I have an UINavigationController. I made VC1 the rootViewController and programatically load VC2 from VC1 and then have the custom animation to go from VC1 to VC2. Standard. Everything is fine and ...
3
votes
2answers
592 views

Create CATransition for UIView from current state

I'm trying to make a push animation from one side using a CATransition. I do this in method which handles two UIViews, one for the background and another for the foreground. The animated UIView is ...
3
votes
2answers
356 views

CATransiton Flicker w/ background animations

I am using a CATransition to shuffle CALayer's in and out of a UIView (the UIView isn't fullscreen.) The new layer enters from the right and the old layer leaves to the left. The CAlayer's have ...
3
votes
2answers
995 views

Using CATransition's In Three20?

I am looking to implement CATransitions within TTNavigator, I know the method openURL can take a UIViewAnimationTransition but that only gives me flipping and curling animations, but with CATransition ...
2
votes
1answer
892 views

CATransition how to clip to bounds of UIView?

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 that ...
1
vote
0answers
64 views

iOS - CATransition and transitionWithView issues

Whenever I use either CATransition or transitionWithView to "push" one view from the right, there is a brief moment where the view that's getting pushed in fades in from black (or whatever the ...
1
vote
1answer
407 views

Slide up UIView using kCATransitionPush

I am trying to have a UIView slide up a quarter of the page to reveal another view underneath it (to display options), and then slide back down to cover those options. I've searched SO relentlessly ...
1
vote
0answers
59 views

How to restrict CATransition to a specific view instead of the whole view?

My CATransition code is working fine, but I need that animation limited in width so how to manage this Animation or how to restrict CATransition to a specific view?
1
vote
2answers
500 views

CATransition white flash in background?

I'm trying to make a pushViewController slide in from the left, not the right, as follows: Page14Controller * controller = [[Page14Controller alloc] initWithNibName:@"Page14Controller" bundle:nil]; ...
1
vote
0answers
70 views

Compare existing tableview row number to new tableview row number

I am trying to implement pageCurl or pageUnCurl functionality into a splitviewcontroller app. Basically I need to keep track of which row in a tableView is popping a new view so that it will curl or ...
1
vote
1answer
74 views

CATransition Lag on Older Devices

I am developing an application that uses CATransition to improve the transition effects between different subviews on a view controller. The transitions work very well when I am testing them on my ...
1
vote
1answer
519 views

2 CATransition, left and right

I am trying to develop a simple CATransition that shows an UIView appearing from the left. Here it is the code: CATransition *transDerecha=[CATransition animation]; [transDerecha ...
1
vote
0answers
370 views

CATransition as an explicit animation

Greetings to all. Does anyone know if it is possible to essentially convert CATransition to an explicit animation? That is, I almost want it to behave like CABasicAnimation does- I need to be able to ...
1
vote
2answers
417 views

Why are my CATransitions acting up?

I am using the following code to switch between views with CATransition. CATransition *applicationLoadViewIn = [CATransition animation]; [applicationLoadViewIn setDuration:20]; ...
1
vote
2answers
620 views

Problem Using CATransitions to switch views

So I was attempting to use this code to switch between views: CATransition *applicationLoadViewIn = [CATransition animation]; [applicationLoadViewIn setDuration:1]; [applicationLoadViewIn ...
1
vote
1answer
411 views

CATransition with CIFilter doesn't work first time,works second time

I want to add CATransition animation for NSView. I have the following code: [contentView setWantsLayer:YES]; NSRect rect = [contentView bounds]; NSData *shadingBitmapData = [NSData ...
1
vote
2answers
522 views

Low frame rate during UINavigationController push transition

I have a UINavigationController, and push from the root view controller to the next view controller. This second view controller is fairly "heavy", in that it has a great deal of initialization and ...
1
vote
0answers
304 views

IPhone Memory management and CATransition

Having some basic issues with managing the total memory from adding and removeing a uiviewcontroller - but only when i add an animation to it using CAtransition. I set up a simple scenario below of ...
0
votes
0answers
25 views

Using CAFilter for suckeffect on iOS View

I have been reading about creating suckeffect and have found articles that ask to use CAFilter for having an App Store approved suckeffect animation. My doubts are. is CAFilter publicly available ...
0
votes
0answers
35 views

ios iPhone animated CATransition disables UIView refresh/update

I have an animated transition to a UIViewController that controls a OpenGL-ES UIView. After the animation, the OpenGL view does not refresh/update per frame. The drawView: method is being called every ...
0
votes
1answer
49 views

iPhone: changing CATransition causes UIActivityIndicatorView to stop animating

I have implemented a non-default animation for when a new view is pushed onto the screen (see code below). For some reason once I implemented this code it caused my UIActivityIndicatorViews to stop ...
0
votes
1answer
87 views

pageCurl and pageUncurl API usage in app

I know this question was asked here many times before but I am still not sure whether apple will reject the app if I used "pageCurl" and "pageUncurl" animation types. I found some very old links ...
0
votes
1answer
296 views

Linker command failed with exit code 1

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]; ...
0
votes
1answer
91 views

CATransitions don't work

I want to ask you a question that is probably very simple but I didn't find the reason for it. I just started iPhone programming. This appears whenever I try to built anything that contain ...
0
votes
0answers
94 views

Push UIView with CATransition on iPad goes wrong

made an push animation with CATransition to use as Storyboard Segue. The transition works, but there is an odd graphical effect I can't explain myself. Booth views overlap and get fadet in/ out over ...
0
votes
0answers
62 views

CATransition not getting properly in iphone

I am using animation for images in scroll view animation working properly.My problem is that my scroll view sizes in my view is 34,197,204,105..but animated images not starting and not ending ...
0
votes
1answer
126 views

ios code for CATransition works only the first time?

I use this code to make the transition from one view to another in ios sdk but it is working only the first time, when i return back to the previous view it does not work although the code is ...
0
votes
1answer
145 views

CATransition to other view works, crashes on transition back

I am using this code to transition from the current view to another and it works. The problem is that when I try to return to the current view the app crashes. This is the code I use to pass from the ...
0
votes
0answers
192 views

UITabBarController programically and animation with CATransition

Hi i'm tring to create UITabBarController programically and animated change of views by CATransition. Here is samo of my code #import <UIKit/UIKit.h> @interface MotoVyhledavacAppDelegate : ...
0
votes
0answers
44 views

Mimick presentModalView with CATransitions?

I have this code here that I found:, CATransition *animation = [CATransition animation]; [animation setDelegate:self]; //kCATransitionMoveIn, kCATransitionPush, kCATransitionReveal, kCATransitionFade ...
0
votes
1answer
279 views

how does the CATransition work?

i have two views,one is aView,another is bView, there is a button on aView,i click the button ,i will jump to bView,please see the code -(IBAction)jump2b:(id)sender{ CATransition *animation = ...
0
votes
1answer
84 views

How can i specify start & end position in CATransition?

I want to use CATransition animation in my apps but I don't know that how can i specify start & end position of CATransition animation.I used UITabelview to display data & select a row ...
0
votes
1answer
195 views

How to remove a View or Viewcontroller after CAtransition and release

First of all i am a n00b. After 3 days of trying and research i decided to get some external help. What i did and my Project: i make a book for children. Every page is a custom ViewController. On ...
0
votes
1answer
398 views

How to use kCATransitionPush type with CATransition from particular location in the view, not from extreme left?

I am developing an application, which include some animations. Iam trying to get the effect of expand/collapse the view from a particular point (e.g. x=100, y=50) in the main view. Iam using ...
0
votes
1answer
143 views

CATransition in AppDelegate - didFinishLaunchingWithOptions

I've implemented this code in another app, and it worked great. Now, the same code is not working here (I am importing QuartzCore framewok)... The log message IS called. Could anyone help me please? ...
0
votes
1answer
221 views

Animating CALayer of UIView to round corners

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 ...
0
votes
2answers
469 views

Complex CATransition

I am trying to create a CATransition to a UIView. I want to move the UIView to the right, and at the same time (and always on the same point), rotate it. It is better explained by the image. I am ...
0
votes
0answers
116 views

No animation UIPicker dismiss on phone, but shown on simulator?

hope someone can help. I have a ImagePicker that should dismiss then show an animation to load a new view. This worked perfectly on 4.2.1 but since the upgrade to 4.3.1 this does not happen. It ...
0
votes
2answers
336 views

Releasing a view controller after a CATransition: Am I doing this right?

My application is loading a first view (used to login into a Web service). When the login is successful, it performs a CATransition (basic kCATransitionFromRight) to show a second view and hides the ...
0
votes
0answers
256 views

ios double CATransition

I have a hidden label, I wish to unhide using the fade and after hide it again... if I use this code doesn't work: CATransition *transition = [CATransition animation]; transition.duration = 0.5; ...
0
votes
1answer
501 views

Glitch when sliding in UIView with kCATransitionMoveIn

I have a UINavigationController whose UIView slides in from the bottom of the screen when the user presses a button. Immediately after I set the view's "hidden" property to NO, though, the ...
0
votes
1answer
806 views

iPhone - UINavigationController - custom animation with CATransaction

I am trying to create a category for UINavigationController so I can put together a few custom animations. I came across this question and it got me started. I've come up with the following for a push ...
0
votes
2answers
1k views

Hidden CATransition animations on iOS 4 (camera iris animation)

I'm trying to achieve the camera iris animation from the Apple camera app. It is also found in numerous other apps like RedLaser, Sudoku Grab, so it seems to be fine with Apples rules even thou it's ...
0
votes
0answers
338 views

iOS4, XCode linking problems

I'm having problems using the QuartzCore framework. Here's the code that's trying to run: #import <QuartzCore/QuartzCore.h> CATransition *animation = [CATransition animation]; [animation ...
0
votes
1answer
579 views

Will my app get rejected for using CATRANSITION pageCurl?

Hello was just wondering if my app will get rejected using the following code: [animation setDuration:1.0]; [animation setTimingFunction:UIViewAnimationCurveEaseInOut]; animation.type = ...
0
votes
3answers
1k views

CATransition page curl from top

I wanted to know if anyone managed a pagecurl from the top using the CATRANSITION. I have the following : CATransition *animation = [CATransition animation]; [animation setDelegate:self]; ...
0
votes
1answer
631 views

iphone page curl without uiviewanimation

I am trying to do a partial page curl with the following: CATransition *animation = [CATransition animation]; [animation setDelegate:self]; [animation setDuration:1.0f]; [animation ...
0
votes
1answer
355 views

Start CATransition at specific location

I have a CATransition (code below) that moves a view down. How can I specify a location for the animation to start, for example 60, 30. Here's the code I'm currently using: CATransition *animation ...

1 2