57 questions
0
votes
1
answer
80
views
Facebook POP animation works only once
I'm using the Facebook Pop library to bounce a view every time something happens in my app. The problem is that the animation works only on the 1st occurrence.
It is easily reproducible with this ...
6
votes
1
answer
632
views
Migrating from `POPSpringAnimation` to native iOS framework in Swift 4
I am working on an old project and want to get rid of POP framework I am sure that any animation can be done with native iOS framework.
Here is the old code:
POPSpringAnimation *springAnimation = [...
0
votes
1
answer
148
views
How to make a Spinning animation in facebook/pop?
I have been searching for the whole internet about how to make a Spinning animation with facebook POP animation.
With no luck that kPOPLayerRotation only supports "Flip X/Y" animation, but not "Spin" ...
2
votes
0
answers
269
views
Can't use pop in Xcode 8
I'm using Xcode 8 and both Swift and Objective-C in my code. Recently, I updated my Xcode from 7.3.1 to 8 and converted Swift syntax to Swift 3. Then I got this error:
'pop/POP.h' file not found.
...
2
votes
2
answers
718
views
iOS - Facebook pop framework - Repeat forever "shake" animation
I'm using Facebook pop framework to perform some cool animations. I'm shaking a button in this way :
let rotation = POPSpringAnimation.init(propertyNamed: kPOPLayerRotation)
rotation.springBounciness ...
1
vote
3
answers
623
views
Error manually adding framework required by another framework
I'm trying to implement this wonderful framework: https://github.com/Yalantis/Koloda
The framework requires Facebook Pop, I don't like using cocoa pod so I added Pop manually, like this:
And I ...
3
votes
3
answers
1k
views
How to chain Facebook pop Animations in a continuous repeatForever?
SITUTATION:
I have created a pulsating animation and it works.
Using the repeatForever property, I was able to make it continuous as I wanted.
But one issue remains that I wasn't able to fix after ...
0
votes
1
answer
319
views
UIView Animation with POP framework grow and shrink in same action
I'm using POP framework for animations. I want to tap a UIButton and have it grow by 5%, then shrinks back to original size. I can get the grow or the shrink to work, but since I haven't used the ...
0
votes
1
answer
644
views
UIWebView black color at bottom increases with Animation?
There are some posts, where UIWebView bottom is black and can be resolved by two simple ways.
1. Clear Background of UIWebView
2. Set Opaque to NO.
However, this only solves problem for static ...
0
votes
0
answers
58
views
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 ...
1
vote
1
answer
90
views
MPMoviePlayerViewController should animate like YTPlayer
Is there any simple way to achieve YTPlayer like opening-closing effects? I tried Facebook pop animation but could not be successful. Here are some code that I tried:
UIView *fromView = [...
0
votes
1
answer
81
views
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<UIViewControllerContextTransitioning>)...
0
votes
1
answer
552
views
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 ...
0
votes
1
answer
202
views
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 ...
1
vote
1
answer
217
views
Using the Facebook pop OS X framework embedded in another OS X framework
Here’s what I’m trying to do, in a Mac App:
Mac App uses my own custom OS X framework called Proto (for short).
Proto has a class like Animator.swift that uses Facebook’s pop library. It uses symbols ...