uianimation Questions
2
Solved
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 scro...
Preteritive asked 7/5, 2011 at 12:52
2
Solved
I'm using the below code to shift a view and my tableview up when my keyboard is activated. When the keyboard is closed however, it takes the upView a solid 2 seconds after the keyboard closes to r...
Eleaseeleatic asked 29/1, 2018 at 18:38
2
Solved
I have a view with a scroll view in my app (a percentage calculator). I am trying to animate the view to fly out and then fly in again from the left albeit with different contents, on the press of ...
Robbery asked 25/9, 2016 at 8:38
3
Solved
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.
Crossbench asked 30/4, 2011 at 5:36
2
I have a label showing a number and I want to change it to a higher number, however, I'd like to add a bit of flare to it. I'd like to have the number increment up to the higher number with an ease...
Nonnah asked 2/4, 2016 at 6:56
5
Solved
I'd like to have an image in my iphone app "pop-in" on screen rather than just appearing. By "pop-in" I mean that it would grow from a small dot to its actual size. For reference, this is exactly t...
Bigg asked 30/3, 2012 at 17:35
0
I have an array of images from which I want to create a video by playing these images one after the other in a sequence.I want to add a different types of animation when image get change. Suggest m...
Baisden asked 7/7, 2016 at 9:38
6
Solved
NavigationControllers have ViewController 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 ...
Pinochle asked 16/11, 2011 at 3:18
1
Solved
In my project there is feature when user swipe on top bar one screen will appear with top to bottom animation
There are two view controller
oneviewcontroller.m
- (void)swipe
{
listViewController...
Delilahdelimit asked 14/4, 2016 at 10:35
2
So I want to animate a UIImageView on a load screen and I've been told that the built in "animationImages" method takes up a lot of memory and is bad programming so I won't use that, I also had iss...
Kobold asked 16/11, 2015 at 3:38
4
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
N...
Sinnard asked 29/4, 2013 at 17:34
2
Everybody knows the brand-new awesome animation inside iOS 7 Calendar app. You can see them in this short video: http://vimeo.com/69247779
I would recreating something like that creating a "modal"...
Preestablish asked 11/10, 2013 at 16:34
3
Solved
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 detec...
Alexandriaalexandrian asked 1/12, 2011 at 11:6
1
I have a scroll view, and few buttons/images there. on clicking I would like such animation :
(image opens like )book cover opens, and related view controller opens with ease in animation and get...
Aimeeaimil asked 23/4, 2015 at 19:9
0
I had the following custom transition using UIView.animateWithDuration(...usingSpringWithDamping:...) which worked perfectly.
UIView.animateWithDuration(self.transitionDuration(transitionContext)...
Attemper asked 28/4, 2015 at 16:56
2
How do I wait for one animation to finish before the next one starts in Swift? I have been messing around with if animation.animationDidStop... {}, but it won't work.
Here's some of my code so far...
Thema asked 7/10, 2014 at 13:14
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
3
Solved
I am seeing that all ios animations in my app stop working.Its happening very frequently in iOS7.
I had an app which is supporting iOS 5, 6 and 7. I am seeing recently that all iOS animations stop...
Impressible asked 16/10, 2013 at 19:5
2
Solved
I wanted to resize an UIView, my code works perfect in iOS 7.1 but when I run it in iOS 8 it didn't work properly (I will explain below).
I have my UIView int the storyboard with values (0,67,511,...
Ataliah asked 26/9, 2014 at 8:34
2
Solved
A UIView needs to change a warning label depending on the completion handler of a custom control:
voucherInputView.completionHandler = {[weak self] (success: Bool) -> Void in
self?.proceedBu...
Ain asked 24/9, 2014 at 16:32
2
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 ...
Adalineadall asked 7/11, 2012 at 13:24
4
Solved
I'm working on UIButton animation where:
The UIButton is set in the bottom center of the screen and scaled to a small size
_menuBtn.transform = CGAffineTransformMakeScale(0.1f, 0.1f);
When the ...
Durfee asked 13/8, 2013 at 10:15
3
Solved
I have this code in my project:
- (void) fadeImageView {
[UIView animateWithDuration:1.0f
delay:0
options:UIViewAnimationCurveEaseInOut
animations:^{
self.imageView.alpha = 0.0f;
}
complet...
Devisable asked 24/8, 2012 at 0:12
1
When scrolling content in Safari, the title bar animates to a smaller version of its self. What is the best way to implement this?
Currently, I am changing the size of the frame like so:
- (void)...
Condiment asked 14/10, 2013 at 15:36
2
Solved
iOS7 animations don't behave the same way as in iOS6. They appear to use a different bezier curve. Where iOS6 uses a kind of "easeInOutSine" curve, iOS7 is more of the "easeInOutExpo" kind. (http:/...
Phocomelia asked 18/9, 2013 at 11:0
1 Next >
© 2022 - 2024 — McMap. All rights reserved.