Pop is an extensible animation engine for iOS and OS X. In addition to basic static animations, it supports spring and decay dynamic animations, making it useful for building realistic, physics-based interactions. The API allows quick integration with existing Objective-C codebases and enables the animation of any property on any object. It's the framework that drives all the animations and transitions in Facebook's Paper app.
Questions tagged [facebook-pop]
57 questions
0
votes
0 answers
UIView returns to original position x and y after trying to select text (of UITextField inside of it), Facebook Pop animations
I have a UITextField inside of a UIView. I am using spring animations and it's working great until I try to select text inside of the UITextField. It then makes the UIView return to its original position.
-(void)keyboardOnScreen:(NSNotification…

Lucky
- 579
- 6
- 24
0
votes
1 answer
popspringanimation very choppy in UINavigationController Delegate
In UINavigationController Delegate I add pop animation in the transition, what I did is as following:
- (NSTimeInterval) transitionDuration:(id)transitionContext {
return self.duration;
}
- (void)…

user2507194
- 175
- 4
- 13
0
votes
1 answer
Animate UIView using pop animation while waiting Alamofire request finishes
I am trying to animate a custom button using Facebooks POP framework. The animation does not happen until the request is done using Alamofire.
What I want to do is make the request and during the waiting process animate the button.
The code below…

Deniz Oztreves
- 3
- 4
0
votes
1 answer
Facebook Pop Unresolved Identifier Issues
I am migrating my iOS project from XCode 6.4 to XCode 7. Also migrating the code from Swift 1.2 to Swift 2.0. The project uses several cocoapods and all of them are working great EXCEPT Pop, which also happens to be the only one written in C++. …

Ty Jacobs
- 218
- 1
- 9
0
votes
1 answer
How to change the starting point or anchor point of animations using pop or CoreAnimation
The following code starts a scale animation and it expands along XY from the center of the UIButton. How to make it start from the left or frame.origin.x = 0
POPSpringAnimation *anim = [POPSpringAnimation…

carbonr
- 6,049
- 5
- 46
- 73
0
votes
1 answer
How to create an animation like in Facebook Pages top menu?
In facebook'a new app, Pages, when you swipe down the menu appears at the top. The animation I am trying to do is the animation when you tap the settings button which is when each cell moves to the left one at a time, but very smoothly. How can I…

Adp
- 253
- 3
- 11
0
votes
0 answers
Stop animation playing until finished - Facebook POP animation engine
I thought I was used to completion handlers but for some reason I think I have implemented this wrong.
The animation breaks if I tap the 'button' in quick succession. By breaks I mean seems to increase the X position.
I am looking for the animation…

Allreadyhome
- 1,252
- 2
- 25
- 46
0
votes
1 answer
Facebook POP: UITableViewCell animation not always working
When the user taps a UITableViewCell I want an image in that cell to make a little bouncing animation to provide user feedback. That animation works exactly like I want except it is not always triggered when I'm tapping a cell. I'm using Facebook…

user2381011
- 351
- 6
- 21
0
votes
1 answer
Animation not working when use POPDecayAnimation
I make dropping down animation for changing views. When I use POPSpringAnimation all working correctly. But when I change POPSpringAnimation to POPDecayAnimation nothing happens and in debug output I see this message:
ignoring to value on decay…

rabbitinspace
- 884
- 8
- 21
0
votes
2 answers
Rotate UIButton titleLabel without clipping
I'm trying to rotate the titleLabel of a UIButton by 45 degrees. The character in the text is '+'.
I can get the title to rotate with
button.titleLabel?.transform = CGAffineTransformMakeRotation(CGFloat(M_PI_4))
But then one end of the '+'…

matthewpalmer
- 2,619
- 3
- 25
- 27
0
votes
2 answers
Create an endless animation with pop?
When using the Coreanimation framework I can set an animation to repeat. I want to set a button to an "attract attention" mode which should make him grow and shrink by a small amount to get the users attention.
I already chained the grow and shrink…

Git.Coach
- 3,032
- 2
- 37
- 54
-1
votes
1 answer
iOS - How to prevent animation from flickering at Keyboard dismissal?
I'm having an issue with an animation being affected by the Keyboard dismissal, the animation is running infinitely moving a background image a few pixels around the screen, the screen contains also a UITextField, every time the keyboard is hidden…

Andrespch
- 370
- 3
- 16