The uianimation tag has no wiki summary.
17
votes
4answers
2k views
Animate change of view controllers without using navigation controller stack, subviews or modal controllers?
Navigation controllers have view controller stacks to manage, and limited animation transitions.
Adding a view controller as a sub-view to an existing view controller requires passing events to the ...
2
votes
1answer
142 views
Recursive method containing UIAnimation block, how to properly release
I did a small "loader" that I can stick on the UI when I need it. Much like the UISpinnerView.
It has some logic (I simplified the code in the block for this post) that require it to be recursively ...
2
votes
1answer
463 views
UIView animations canceling any touch input?
I have a UIScrollView here where I'm adding displaying a label in the middle of the screen when the user has scrolled to a page, the problem is that while the animation is going the user can't scroll ...
2
votes
1answer
504 views
Is it impossible to flip subviews of a viewControllers.view with “transitionWithView” using a block
I simply can't get this to work, I would think it was simple, but no luck.
- (void) animate {
UIView *viewA = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 300.0f, 100.0f)];
[viewA ...
1
vote
2answers
103 views
Animation on single UIWebView
I have searched quite a bit(sample one, Sample two) but cant seem to get the correct answer.
I have a webview on my XYZ view controller class. When i press on a button, it takes an URL from an array ...
1
vote
1answer
132 views
UIButton.frame while using UIView animation
I am using a UIView animation to move a button across the screen. While it is moving, I have an NSTimer running the method
checkForCollision
which looks like this:
for(UIButton* b in squares)
...
1
vote
2answers
290 views
Simulating a Home Button Press - iPhone Testing
So I'm working on testing an iPhone app. I'm trying to setup test cases that we can use later using UIAutomation (I'm not really tied down to this - I can switch to some other framework). I basically ...
1
vote
4answers
611 views
how to create Login screen (as a UIAlertView) in iphone?
How to create LoginScreen in UIViewController ?
It should appear like UIAlertView after tapping a button.
1
vote
1answer
246 views
Is UILabel's backgroundColor not animatable?
I have a gridView, I use to display several GridViewCell : UIView. The GidViewCell adds an UILabel to itself and attaches anUITapGestureRecognizer to itself.
UITapGestureRecognizer *gestureRecognizer ...
1
vote
1answer
187 views
Animation a UIButton while animating a View - Ipad - SOLVED ( look at answer below)
I am facing a problem in animation.
So right now in my app, I have a subview which has a close button. When the close button is pressed, a curl down animation occurs showing the previous view. That ...
1
vote
2answers
1k views
Can I “curl down” a page on popViewControllerAnimated?
I can "curl up" a view controller with this code:
[UIView beginAnimations:@"animation" context:nil];
[self.navigationController pushViewController:page animated:NO];
[UIView setAnimationDuration:1];
...
1
vote
1answer
496 views
iPhone UIView Animation Duration only works instantly
This code is being executed in the touchesended method of a subclassed uiview, however it doesn't animate, it just instantly changes the background color. What is wrong?
self.backgroundColor = ...
1
vote
1answer
535 views
How can we turn views like turning a page in an iphone application?
Is it possible to turn a view slowly like turning a page? When i swipe from right to left, the current view will turn and the next view will be shown. And from left to right, the previous view will ...
0
votes
2answers
65 views
How do you animate a custom irregular odd shape UIButton with UIViewAnimationTransitionCurlUp?
I have an irregular shaped custom button and I would like for it to animate with the curl up effect. The problem is that Xcode places my irregular shaped button in a rectangle. The button is a .png ...
0
votes
0answers
30 views
Very simple but werid UIAnimation (IOS)
I currently have only one tableView on the screen to display some data,
and when the data is updated, I use a simple UIAnimation to update the tableView, that is:
Alloc a new tableView with updated ...
0
votes
1answer
63 views
custom modalViewController animation
I have an image when pressed presents a full size view of the image in another UIViewController. Now the issue is that how do I make so that the modal view controller when presented animates from this ...
0
votes
1answer
30 views
UITableView NSFetchedResultsController philosophy
I am displaying data from CoreData in a UITableView using NSFetchedResultsController as the container for the NSManagedObjects. The code for deleting a row works well, but my implementation strikes ...
0
votes
2answers
110 views
How to implement UIViewAnimationOptionBeginFromCurrentState
I have a piece of audio & associated Play & Stop buttons, when the Play button is pressed I use an animation of a curser to denote at which point in the audio sample we are, at a given moment. ...
0
votes
0answers
70 views
Changing from UIView beginAnimations/commitAnimations to block version doesn't show the animation
I'm trying to migrate some UIView animation code that performed the page curl animation from the UIView beginAnimations/commitAnimations to the block version. The original code works but I don't ...
0
votes
0answers
70 views
Xcode move image to direction while rotating
i would like to start 2D game development (from beginning)... and the first thing i would like to do is to fill a uiimageview with an space ship picture and steer it with two buttons... so the ...
0
votes
3answers
75 views
How to make two view animations run one by one?
I am to make "Guess match card" game, that is :there are 24 cards(UIImageView) in the windows with hide inside view shown surface, They a 12 groups number,you touch one, then it will be open show ...
0
votes
0answers
40 views
UIAnimation do not run in NSTimer selector
I am currently working on a project that involves a fade-in-out slideshow at the home screen. I tried using NSTimer to fade-in-out between 2 UIImageViews every 4 secs. But turned out everything inside ...
0
votes
0answers
87 views
Add page curl like layer (not animation)
I want to be clear that I do not need help with page curl animation.
I am trying to find the best way to add a "page curl" image effect to the bottom of one my views. Similar to the iPad maps app.
...
0
votes
2answers
96 views
how to to make gesturerecognizer working in an animating UIImage view
i have 5 animating image in a image view and will like to allow user to tap on them base on the default ID and push it to another view. i tried to add in gesture tap but the imageview are not ...
0
votes
1answer
34 views
Touch issue during UIView Animation
I am animating UIView when user touches on custom dropdown to show picker View from bottom side.UIView contains Pickerview...so when I change it's frame to move upwards.I get what I want, but ...
0
votes
3answers
71 views
how to expend UIButton width from right to left only
i will like to know how to expend the width of an UIButton to the left only, pretty much like app store button that will expend towards the left. however i have multiple button to expend.
EDIT this ...
0
votes
0answers
108 views
How do I loop UIAnimation?
I have an animation that plays fine. But at the end of the animation, the animation stops. I want the animation to loop. How can I do this? Here is my code:
- (void) startTicker
{
if ...
0
votes
1answer
141 views
Metronome-Like Animation of UIImageView iOS
I'd like to create an animation of an image that makes the image swing back and forth, much like a metronome. The goal of the animation is to simulate a "spinner" like effect. Imagine this with just ...
0
votes
1answer
80 views
How can I call uianimation on imageView looks like Circle
I want to create circle uiimageview animation. When uiimage finished at self.left immediately calls again from after uiimageview.right. I want to call animation looks like but my animation was bad. ...
0
votes
2answers
119 views
How can i create a loading screen like the below image in iOS
How can i create a animated loading effect like the below image in iOS. Any one kindly give me an idea or point me any examples. Thanks in advance
0
votes
3answers
155 views
Understanding of UIAnimation
I am trying to use following code to perform few animations
-(void) performSlidingfromX:(int) xx fromY:(int) yy
{
UIImageView *Image= [self getImage];
[UIView beginAnimations:nil context:NULL];
...
0
votes
3answers
119 views
trying to slide a new UIView out from behind a UIButton ising UIAnimation
I'm attempting to push a button menu (a UIView containing UIButtons) out from behind a main UIButton
I've included an link to an image to give a better idea of what I'm getting at (the blue part ...
0
votes
3answers
295 views
Bounce type animation. When you apply it to the same property
If I want to animate UITableViewCell so it would bounce from left to right a few times, How can I do that? I'm trying that:
var bounds = activeCell.Bounds;
var originalLocation = bounds.Location;
var ...
0
votes
0answers
61 views
Several uibuttons (13) with UIimages (13) to display Questions on an iterated uiimage views in a universal application
I am really having a hard time with developing an universal application. Here is the situation:
Several UIButtons (13) with UIImages (13) to display Questions (13) on iterated UIImageViews. Each ...
0
votes
0answers
52 views
iphone: different beizer curves on basis of drag event
I am quite new to iphone development, I want to achieve the effect of throwing a pape ball as in paper toss application, after doing some research I came to know that we can use beizer paths to move ...
0
votes
0answers
97 views
Get Current Image in animation-Iphone
Already asked Question
but,in that i'm not clear about currentFrame anyone please explain as brief as possible.
i want to animate 10 images within 2.0 seconds
NSArray * imageArray = [[NSArray ...
0
votes
2answers
256 views
Fully Customize UIPIckerView?
Target: To give feel like casino scrollers.
Description: I want to make a scroller which will start automatically as i click any button... which scroll with maximum speed and slow down speed and ...
0
votes
1answer
237 views
UIPickerView animation glitch
I have a problem with an effect I am trying to implement where a UIPickerView slides up when a button is pressed.
-(IBAction)slideUp:(id)sender{
if([sender currentTitle] == @"Select"){
...
0
votes
0answers
70 views
Crash when UITableView is scrolling during frame animation
I am animating a UITableView out of the view frame. This works fine as long as the table view is not busy scrolling.
However, if I scroll the table view and then tap the "Cancel" UIBarButtonItem ...
0
votes
1answer
320 views
Animated Subviews
I have a split view controller in my Ipad app, in which the detail view has subviews which are UITableView's.
The functionality I am trying to implement is to get an info view at the same position of ...
0
votes
2answers
369 views
iphone:objective c: UIView animation?
I have read apple documentation: http://developer.apple.com/library/ios/#documentation/WindowsViews/Conceptual/ViewPG_iPhoneOS/AnimatingViews/AnimatingViews.html#//apple_ref/doc/uid/TP40009503-CH6-SW1
...
0
votes
0answers
42 views
What kinds of problems can cause UIView animations to be jumpy?
I am trying to make some UIView animations run - four views each containing text moving at the same time. I have one outer UIView beginAnimation: block, then set the frame property of each of the ...
0
votes
0answers
143 views
How to prevent animation of UISegmentControl being added to UINavigationController when using UIView animation
I have a UINavigationController which loads a 'SwitchViewController' that places a UISegmentedControl on the right hand side of the UINavigationController. The UISegmentedControl is used for flipping ...
0
votes
1answer
204 views
Load a XIB with custom Transition?
Is it possible (at all) to load a XIB with custom AnimationTransition?
What I have done, is creating an animation that "Covers" the screen, and what I want is that after that animation has done ...
0
votes
2answers
244 views
UILayer custom 'compact' animation, looking for anchor help
I'm trying to create an animation for a layer where the bottom of the layer flips up. Think of a view hinged on the top, then the botton animates out and up. Like the cover of a compact. What I want ...
0
votes
1answer
417 views
iphone - UIAnimation Fade Between two colors like “Touch to return to call” box
I have a UIView with a label inside that appears at the bottom of my app. I'm trying to create an animation like the one that appears when you are in a call and touch the home button.
It seems like a ...
0
votes
1answer
932 views
How to move a view along a curved path in iOS
How to animate/move the view in the curve path, is it possible to do using UIAnimation.
Like moving a view in the path as in the image.
0
votes
2answers
132 views
Problem with simple animation
I am using animation on a button click first time show a view and second ti me hide a view.
here is my code for hiding a view
-(IBAction)clickme
{
[UIView beginAnimations:nil context:NULL];
...
0
votes
0answers
160 views
How can we delay a interface orientation change in iPad
currently when i change the orientation of my app,all the entities on the screen are rendering one by one.This is looking a bit bad and i feel that this gives a bad user experience.
Is there any way ...
0
votes
1answer
349 views
UIAnimation seems to be not working effectively
i'm using some simple UIAnimation properties to show and hide a UIView. This code seems to work perfectly for the very first time. But after that the animation effect is not being seen. is there ...