The uianimation tag has no wiki summary.
0
votes
0answers
12 views
Issue with a scrolling fading UIView and its subviews. How should I be doing it?
I have a UIView with many subviews on a UIScrollView. As the UIScrollView slides to the left off the screen the alpha value of the UIView is reduced. It eventually is almost 0.0.
The issue is that ...
1
vote
1answer
49 views
Changing UILabel text messes up animation?
My app has to do a calculation and animation based on a choice the user makes and I need to update a UILabel before it is used in the animation, the problem is whenever I set the UILabel text it ...
0
votes
1answer
21 views
touchesEnded not getting called when combined with UIButton?
I've implemented that when the my UIButton is highlighted and my UISwipeGestureRecognizer recognizes the gesture it will begin an animation. The problem is I want to end the animation when ...
0
votes
1answer
16 views
iPod Touch iOS 5 Animation Stuttering
I have a UIView that acts as a badge in my app, upon pressing a button, the badge is supposed to blink into existence and then do a nice squash and stretch animation. The animation works perfectly on ...
0
votes
1answer
44 views
Unable to store Image on a UIIMageView after the animation
I've have a bunch of .png files that i am supposed to animate over a period of 1.05 seconds. After the animation executes, i would like to have the last .png file show up permanently. I am using an ...
3
votes
2answers
36 views
Stop UITableViewCells from animating when animating a UITableView
I am animating a UITableView. I want the table view to slide open like this:
http://www.youtube.com/watch?v=XIGJLbiRsXE
However, it opens like this:
http://www.youtube.com/watch?v=UJUX-ILCB_0
...
0
votes
2answers
134 views
CGAffineTransformMakeScale not functioning properly
I am having trouble with CGAffineTransformMakeScale. I am displaying a view & hiding it using below code. For the first time it shows & dismissed perfectly. But after than its not showing up ...
0
votes
1answer
38 views
Graphics and Animation: Numbers changing and colored bar
I want to animate the attached screen in such a way that when the screen will appear on screen:
1) numbers will animate from 0 to the final value i.e. 1-2-3-....51-52
2) each bar will begin as a ...
0
votes
1answer
25 views
do UIPanGestureRecognizer while playing UIAnimation
I set animation effect after do panning object
-(void)panView:(UIPanGestureRecognizer*)recognizer{
//do sth...
if(recogizer.state==UIGestureRecognizerStateEnded){
[UIView ...
0
votes
0answers
11 views
Cannot receive touches for custom Video Player buttons when animating
I wrote a custom VideoPlayer. There are scrubber container and player button container which should be fade out after 2 seconds after being displayed.
But buttons in the containers cannot receive ...
0
votes
1answer
28 views
Button stop functioning after animation iOS
After I perform the slide method, the buttons on the UIView stop working after the method is called.
Any thoughts on what may be happening?
@implementation ResultSliderView
- ...
0
votes
2answers
204 views
Animation like Radar Objective C
How i can do a UIView animation like a radar?
I already have a UIView with the circles created with drawrect, but how i can create a line, doing a clock animation?
Like the image below :
0
votes
3answers
114 views
Rotate iOS Image Clockwise
I am trying to animate my image by having it rotate clockwise, and shrink down. So far, it is only going counter-clockwise. I have tried both positive and negative values for the value/Key path of ...
0
votes
1answer
62 views
iOS check to see if view is still present
I have a small subclassed UIView that I use to display a "Connection Timeout" animation to the user when the connection has timed out. I have added some code to the method: scrollViewDidScroll so that ...
0
votes
1answer
54 views
Pulsing buttons HTML, jQuery, jQueryUI
I have successfully gotten this to work, but I have many buttons on the site that I want to pulse, and currently I am doing this with id's but I would like to move to something more flexible and use a ...
0
votes
2answers
75 views
UIView Animation fails when there is a spinner added?
I am currently building a UI plugin. This plugin has 2 imageViews with one on top of another.
When the user swipes on the screen: If the swipe is greater than a threshold, the front imageView will ...
1
vote
2answers
113 views
Touch scrolling animation for list of images in iOS
My requirement is to display the list of images in horizantal way.when I touch the image it is moved to side and the next image is comes to front.In this way I need to move images side by side.Then ...
0
votes
1answer
89 views
“Bounce” style animation for UIImageview?
I have an image that is the template for a form in my app, I want to add a little bounce effect when its opened, similar to a UIAlertView's when it first shows (zooms in, then 'bounces' then stays ...
0
votes
1answer
134 views
UIImageView animation starts and low memory warning occurs
I have an issue with my ImageView animation. In my view there are more than 10 views and each view have are identified from its tag value & I have UIImageView and UIButton. when a button is tapped ...
1
vote
1answer
109 views
UIAnimation causes XCode to crash after time
My app crashes in XCode after idling for about 5-7 minutes. I'm sure it's something to do with the animation used for the loading screen - I pasted the code below.
I tried enabling Zombie Objects to ...
0
votes
1answer
228 views
UIImageview Animation Starts using for-in loop and animation delays
I need to animate an UIimageview and when i start animation it happens after long time and i found that memory is leaked somewhere at the time of continuous animation for various image views. All I ...
0
votes
1answer
28 views
animating based on audio iOS
I want the animation to be done based on the audio that will be played?Is this possible to do?
Basically I have a pulse animation that need to be done based on the audio?How can I do this.Hope got my ...
0
votes
1answer
95 views
rotation animation till the UIViewController disappears
I have an UIImageView which I have to give a rotation animation effect (starts rotating when the view appears and rotates constantly until that view disappears). I found this simple answer in another ...
1
vote
2answers
67 views
iPhone - animation in a certain area
In my project I have to create some sort of a specific animation. The idea is that I have to move two UILabels, both of them should go down, but initially one is above another. Initially i also have a ...
0
votes
0answers
51 views
How can I make an animation sync to the UITableView's animation?
I have an accordion view in a table row. When I tap on a button in the last row, first row's height increases and an accordion control is added in first row. When the accordion view gets bigger, row ...
1
vote
1answer
125 views
setFrame for an UITableView doesn't work each time
I want to resize an UITableView contain in a UIViewController by pushing a button on an iPad application. The goal is to see an other UITableView in background. The button set a flag in the class and ...
0
votes
2answers
81 views
x position not changing while animating UIView in motion?
I have following lines of code in which while moving view with animation I checked out x position of moving element by printing log.It is showing same x position every time while moving view.
...
0
votes
1answer
67 views
Custom UIAction Sheets in iOS
I have a situation where on a click of a button, I want to animate a tableView from bottom, I tried using CustomActionSheet sample , but I felt it very complicated .Please tell me the possible ways ...
0
votes
0answers
100 views
popViewController with transition - unbalanced calls
In myNavigationController I implemented a method:
- (void)popViewControllerWithTransition:(UIViewAnimationTransition)transition {
[UIView animateWithDuration:0.75
...
0
votes
3answers
58 views
navigate to flipview
i used below code for infolight button (Thanks to http://stackoverflow.com/users/630145/ankit-bhardwaj)
// This will create ur info button in center.
UIButton *infoButton = [UIButton ...
2
votes
2answers
38 views
Info lightbutton animation
I am having trouble in showing infobutton to navigate to information page/view.
I have written this code.
UIButton *infoButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
UIBarButtonItem ...
2
votes
2answers
681 views
AFNetworking - Fade animation on image while scrolling UITableView
I have a Table View which displays images using lazy loading from AFNetworking with a placeholder image. I'm trying to accomplish a way to fade from the placeholder to the image when it's loaded. My ...
0
votes
1answer
48 views
How to switch UIViews with animation within single iOS screen
I want to build a fairly simple app with just 1 screen. As a result, I would like two views within the same view controller.
View1 - appear for 5 seconds
View2 - appear during gameplay
View1 - appear ...
0
votes
0answers
33 views
Tracking a animation in Frank, waiting for changes in accessibility labels
In an iOS app, I want to test (using Frank) when a "menu" button is tapped the menu is "deployed" (animated to its place) and when the button is tapped again it is "retracted" (animated out of sight), ...
1
vote
0answers
70 views
What approach should I take in developing simple animation based iOS game
My question here is not about how to achieve something, but what all to include that would have the best effect for the content I am presenting.
I am designing an app (probably with single screen) ...
1
vote
1answer
661 views
Problems with transitionWithView and animateWithDuration
I have problems with transitionWithView and animateWithDuration. One of my animateWithDuration blocks doesn't transition, it is a sudden change, and transitionWithView does not temporarily disable ...
0
votes
1answer
113 views
Adding UIAnimation
I have a ScrollView with paging and I have a button which takes me to an array with image in my scrollView .. Here's my codes
-(IBAction)scrollToPage:(id)sender {
int scrollToPage = 1;
int ...
0
votes
1answer
144 views
animation for rolling an image in iOS
Im developing a game which similar to LUDO for iPad.
I need to rotate the dice to get a number. How can i get the rolling of dice animation in 2d image?
i tried UIAnimations to rotate the image and ...
0
votes
1answer
66 views
UIView animation inside UIGestureRecognizer
I have an animation that runs for several seconds in response to a tap gesture. While the animation is running, the UITapGestureRecognizer won't respond to additional taps. Once the animation ...
3
votes
3answers
170 views
Show delete button on wobbling image and delete that particular image
I have added images in scroll view. On long press i have given wobble animation to all images.
i want to show delete button on the right top corner of every image as in iphone when we uninstall any ...
0
votes
1answer
33 views
UIScrollView architecture
I'm trying to create something similar to the Guardian's Eyewitness app for iPad. I'm mainly just concerned with the scrollview on the navigation homescreen and how the scaling and carousel effect ...
0
votes
2answers
183 views
Cannot make a smooth animation in UIView
I have add a view animation to my view on button click, the view will slide to right side on first click and will come back on second click..(just like in Facebook iPhone app)
But the animation is ...
0
votes
1answer
99 views
why button cannot move in animation?
I want to click _transitButton to call onTransitButtonDidClick to move _rightView.
The problem is the button cannot do as I set self.transitButton.frame = CGRectMake(0, 0, 30, 20);.
update:
...
1
vote
2answers
135 views
Create Continous uiimage animation in x axis
i want to create background like http://disqus.com/ continues background but i can't get it after try with my code like this
continuesBackground =[[UIImageView alloc]initWithImage:[UIImage ...
6
votes
1answer
158 views
UIButton adding color with animation
What i want to do is, when the user clicks the button then the button should fill with color with animation from bottom to top.
I tried this which added the color but the animation effect was not ...
0
votes
0answers
18 views
What should we do during botched or terminated animation that do not finish?
[self transitionFromViewController:fromController toViewController:toViewController duration:duration options:options animations:animations completion:^(BOOL finished) {
if (completion1)
{
...
0
votes
1answer
326 views
UIVIEW transform from top to bottom
I want to create UIView animation direction from top to bottom, but after I tried for two days it i'm surrrender
here's my code
- (IBAction)goAction:(id)sender
{
...
2
votes
2answers
304 views
How to create Jetpack Joyride jackpot lever animation
Just wondering if anybody knows how to recreate the touch lever action ?
http://www.wired.com/geekdad/wp-content/uploads/2011/08/JJ-jackpot.jpg
1
vote
2answers
216 views
Jumping effect on uibuttons
Here in my app i used the moving sub View.If it reach y=150,i want to make a buttons in jumping effect,i tried this link adding bounce effect to appearance of UIImageView it working in horizontal ...
0
votes
1answer
61 views
Putting hard bounds on an animating view in iOS
I've been exploring iOS animations and I'm trying to find out if there is a simple way to restrict animation movement to within a certain area. For example, lets say you are using a pan gesture ...




