├── .gitignore ├── .travis.yml ├── LICENSE ├── PopMenu.podspec ├── PopMenu ├── GlowImageView.h ├── GlowImageView.m ├── MenuButton.h ├── MenuButton.m ├── MenuItem.h ├── MenuItem.m ├── PopMenu.h └── PopMenu.m ├── PopMenuExample ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ └── Public │ │ │ ├── XHRealTimeBlur │ │ │ └── XHRealTimeBlur.h │ │ │ └── pop │ │ │ ├── POP.h │ │ │ ├── POPAnimatableProperty.h │ │ │ ├── POPAnimation.h │ │ │ ├── POPAnimationEvent.h │ │ │ ├── POPAnimationExtras.h │ │ │ ├── POPAnimationTracer.h │ │ │ ├── POPAnimator.h │ │ │ ├── POPBasicAnimation.h │ │ │ ├── POPCustomAnimation.h │ │ │ ├── POPDecayAnimation.h │ │ │ ├── POPDefines.h │ │ │ ├── POPGeometry.h │ │ │ ├── POPLayerExtras.h │ │ │ ├── POPPropertyAnimation.h │ │ │ └── POPSpringAnimation.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Pods-PopMenuExample-XHRealTimeBlur.xcscheme │ │ │ ├── Pods-PopMenuExample-pop.xcscheme │ │ │ └── Pods-PopMenuExample.xcscheme │ ├── Target Support Files │ │ ├── Pods-PopMenuExample-XHRealTimeBlur │ │ │ ├── Pods-PopMenuExample-XHRealTimeBlur-Private.xcconfig │ │ │ ├── Pods-PopMenuExample-XHRealTimeBlur-dummy.m │ │ │ ├── Pods-PopMenuExample-XHRealTimeBlur-prefix.pch │ │ │ └── Pods-PopMenuExample-XHRealTimeBlur.xcconfig │ │ ├── Pods-PopMenuExample-pop │ │ │ ├── Pods-PopMenuExample-pop-Private.xcconfig │ │ │ ├── Pods-PopMenuExample-pop-dummy.m │ │ │ ├── Pods-PopMenuExample-pop-prefix.pch │ │ │ └── Pods-PopMenuExample-pop.xcconfig │ │ └── Pods-PopMenuExample │ │ │ ├── Pods-PopMenuExample-acknowledgements.markdown │ │ │ ├── Pods-PopMenuExample-acknowledgements.plist │ │ │ ├── Pods-PopMenuExample-dummy.m │ │ │ ├── Pods-PopMenuExample-environment.h │ │ │ ├── Pods-PopMenuExample-resources.sh │ │ │ ├── Pods-PopMenuExample.debug.xcconfig │ │ │ └── Pods-PopMenuExample.release.xcconfig │ ├── XHRealTimeBlur │ │ ├── LICENSE │ │ ├── README.md │ │ └── XHRealTimeBlur │ │ │ ├── XHRealTimeBlur.h │ │ │ └── XHRealTimeBlur.m │ └── pop │ │ ├── LICENSE │ │ ├── README.md │ │ └── pop │ │ ├── POP.h │ │ ├── POPAction.h │ │ ├── POPAnimatableProperty.h │ │ ├── POPAnimatableProperty.mm │ │ ├── POPAnimation.h │ │ ├── POPAnimation.mm │ │ ├── POPAnimationEvent.h │ │ ├── POPAnimationEvent.mm │ │ ├── POPAnimationEventInternal.h │ │ ├── POPAnimationExtras.h │ │ ├── POPAnimationExtras.mm │ │ ├── POPAnimationInternal.h │ │ ├── POPAnimationPrivate.h │ │ ├── POPAnimationRuntime.h │ │ ├── POPAnimationRuntime.mm │ │ ├── POPAnimationTracer.h │ │ ├── POPAnimationTracer.mm │ │ ├── POPAnimationTracerInternal.h │ │ ├── POPAnimator.h │ │ ├── POPAnimator.mm │ │ ├── POPAnimatorPrivate.h │ │ ├── POPBasicAnimation.h │ │ ├── POPBasicAnimation.mm │ │ ├── POPBasicAnimationInternal.h │ │ ├── POPCGUtils.h │ │ ├── POPCGUtils.mm │ │ ├── POPCustomAnimation.h │ │ ├── POPCustomAnimation.mm │ │ ├── POPDecayAnimation.h │ │ ├── POPDecayAnimation.mm │ │ ├── POPDecayAnimationInternal.h │ │ ├── POPDefines.h │ │ ├── POPGeometry.h │ │ ├── POPGeometry.mm │ │ ├── POPLayerExtras.h │ │ ├── POPLayerExtras.mm │ │ ├── POPMath.h │ │ ├── POPMath.mm │ │ ├── POPPropertyAnimation.h │ │ ├── POPPropertyAnimation.mm │ │ ├── POPPropertyAnimationInternal.h │ │ ├── POPSpringAnimation.h │ │ ├── POPSpringAnimation.mm │ │ ├── POPSpringAnimationInternal.h │ │ ├── POPSpringSolver.h │ │ ├── POPVector.h │ │ ├── POPVector.mm │ │ └── WebCore │ │ ├── FloatConversion.h │ │ ├── TransformationMatrix.cpp │ │ ├── TransformationMatrix.h │ │ └── UnitBezier.h ├── PopMenuExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── PopMenuExample.xcscheme ├── PopMenuExample.xcworkspace │ └── contents.xcworkspacedata ├── PopMenuExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── IMG_0117.JPG │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── post_type_bubble_facebook.imageset │ │ │ ├── Contents.json │ │ │ ├── post_type_bubble_facebook.png │ │ │ └── post_type_bubble_facebook@2x.png │ │ ├── post_type_bubble_flickr.imageset │ │ │ ├── Contents.json │ │ │ ├── post_type_bubble_flickr.png │ │ │ └── post_type_bubble_flickr@2x.png │ │ ├── post_type_bubble_googleplus.imageset │ │ │ ├── Contents.json │ │ │ ├── post_type_bubble_googleplus.png │ │ │ └── post_type_bubble_googleplus@2x.png │ │ ├── post_type_bubble_instagram.imageset │ │ │ ├── Contents.json │ │ │ ├── post_type_bubble_instagram.png │ │ │ └── post_type_bubble_instagram@2x.png │ │ ├── post_type_bubble_twitter.imageset │ │ │ ├── Contents.json │ │ │ ├── post_type_bubble_twitter.png │ │ │ └── post_type_bubble_twitter@2x.png │ │ └── post_type_bubble_youtube.imageset │ │ │ ├── Contents.json │ │ │ ├── post_type_bubble_youtube.png │ │ │ └── post_type_bubble_youtube@2x.png │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── PopMenuExampleTests │ ├── Info.plist │ └── PopMenuExampleTests.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/LICENSE -------------------------------------------------------------------------------- /PopMenu.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenu.podspec -------------------------------------------------------------------------------- /PopMenu/GlowImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenu/GlowImageView.h -------------------------------------------------------------------------------- /PopMenu/GlowImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenu/GlowImageView.m -------------------------------------------------------------------------------- /PopMenu/MenuButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenu/MenuButton.h -------------------------------------------------------------------------------- /PopMenu/MenuButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenu/MenuButton.m -------------------------------------------------------------------------------- /PopMenu/MenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenu/MenuItem.h -------------------------------------------------------------------------------- /PopMenu/MenuItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenu/MenuItem.m -------------------------------------------------------------------------------- /PopMenu/PopMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenu/PopMenu.h -------------------------------------------------------------------------------- /PopMenu/PopMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenu/PopMenu.m -------------------------------------------------------------------------------- /PopMenuExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Podfile -------------------------------------------------------------------------------- /PopMenuExample/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Podfile.lock -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/XHRealTimeBlur/XHRealTimeBlur.h: -------------------------------------------------------------------------------- 1 | ../../../XHRealTimeBlur/XHRealTimeBlur/XHRealTimeBlur.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Headers/Public/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Manifest.lock -------------------------------------------------------------------------------- /PopMenuExample/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PopMenuExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-PopMenuExample-XHRealTimeBlur.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-PopMenuExample-XHRealTimeBlur.xcscheme -------------------------------------------------------------------------------- /PopMenuExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-PopMenuExample-pop.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-PopMenuExample-pop.xcscheme -------------------------------------------------------------------------------- /PopMenuExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-PopMenuExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-PopMenuExample.xcscheme -------------------------------------------------------------------------------- /PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-XHRealTimeBlur/Pods-PopMenuExample-XHRealTimeBlur-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-XHRealTimeBlur/Pods-PopMenuExample-XHRealTimeBlur-Private.xcconfig -------------------------------------------------------------------------------- /PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-XHRealTimeBlur/Pods-PopMenuExample-XHRealTimeBlur-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-XHRealTimeBlur/Pods-PopMenuExample-XHRealTimeBlur-dummy.m -------------------------------------------------------------------------------- /PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-XHRealTimeBlur/Pods-PopMenuExample-XHRealTimeBlur-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-XHRealTimeBlur/Pods-PopMenuExample-XHRealTimeBlur-prefix.pch -------------------------------------------------------------------------------- /PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-XHRealTimeBlur/Pods-PopMenuExample-XHRealTimeBlur.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-XHRealTimeBlur/Pods-PopMenuExample-XHRealTimeBlur.xcconfig -------------------------------------------------------------------------------- /PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-pop/Pods-PopMenuExample-pop-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-pop/Pods-PopMenuExample-pop-Private.xcconfig -------------------------------------------------------------------------------- /PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-pop/Pods-PopMenuExample-pop-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-pop/Pods-PopMenuExample-pop-dummy.m -------------------------------------------------------------------------------- /PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-pop/Pods-PopMenuExample-pop-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-pop/Pods-PopMenuExample-pop-prefix.pch -------------------------------------------------------------------------------- /PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-pop/Pods-PopMenuExample-pop.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample-pop/Pods-PopMenuExample-pop.xcconfig -------------------------------------------------------------------------------- /PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample/Pods-PopMenuExample-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample/Pods-PopMenuExample-acknowledgements.markdown -------------------------------------------------------------------------------- /PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample/Pods-PopMenuExample-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample/Pods-PopMenuExample-acknowledgements.plist -------------------------------------------------------------------------------- /PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample/Pods-PopMenuExample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample/Pods-PopMenuExample-dummy.m -------------------------------------------------------------------------------- /PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample/Pods-PopMenuExample-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample/Pods-PopMenuExample-environment.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample/Pods-PopMenuExample-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample/Pods-PopMenuExample-resources.sh -------------------------------------------------------------------------------- /PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample/Pods-PopMenuExample.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample/Pods-PopMenuExample.debug.xcconfig -------------------------------------------------------------------------------- /PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample/Pods-PopMenuExample.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/Target Support Files/Pods-PopMenuExample/Pods-PopMenuExample.release.xcconfig -------------------------------------------------------------------------------- /PopMenuExample/Pods/XHRealTimeBlur/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/XHRealTimeBlur/LICENSE -------------------------------------------------------------------------------- /PopMenuExample/Pods/XHRealTimeBlur/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/XHRealTimeBlur/README.md -------------------------------------------------------------------------------- /PopMenuExample/Pods/XHRealTimeBlur/XHRealTimeBlur/XHRealTimeBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/XHRealTimeBlur/XHRealTimeBlur/XHRealTimeBlur.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/XHRealTimeBlur/XHRealTimeBlur/XHRealTimeBlur.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/XHRealTimeBlur/XHRealTimeBlur/XHRealTimeBlur.m -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/LICENSE -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/README.md -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POP.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAction.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimatableProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimatableProperty.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimation.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimationEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimationEvent.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimationExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimationExtras.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimationRuntime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimationRuntime.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimationTracer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimationTracer.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimator.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPBasicAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPBasicAnimation.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPCGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPCGUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPCGUtils.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPCustomAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPCustomAnimation.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPDecayAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPDecayAnimation.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPDefines.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPGeometry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPGeometry.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPLayerExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPLayerExtras.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPMath.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPMath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPMath.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPPropertyAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPPropertyAnimation.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPSpringAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPSpringAnimation.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPVector.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/POPVector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/POPVector.mm -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/WebCore/FloatConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/WebCore/TransformationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/WebCore/TransformationMatrix.cpp -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/WebCore/TransformationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /PopMenuExample/Pods/pop/pop/WebCore/UnitBezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/Pods/pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample.xcodeproj/xcshareddata/xcschemes/PopMenuExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample.xcodeproj/xcshareddata/xcschemes/PopMenuExample.xcscheme -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/AppDelegate.h -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/AppDelegate.m -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/IMG_0117.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/IMG_0117.JPG -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_facebook.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_facebook.imageset/Contents.json -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_facebook.imageset/post_type_bubble_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_facebook.imageset/post_type_bubble_facebook.png -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_facebook.imageset/post_type_bubble_facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_facebook.imageset/post_type_bubble_facebook@2x.png -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_flickr.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_flickr.imageset/Contents.json -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_flickr.imageset/post_type_bubble_flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_flickr.imageset/post_type_bubble_flickr.png -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_flickr.imageset/post_type_bubble_flickr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_flickr.imageset/post_type_bubble_flickr@2x.png -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_googleplus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_googleplus.imageset/Contents.json -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_googleplus.imageset/post_type_bubble_googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_googleplus.imageset/post_type_bubble_googleplus.png -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_googleplus.imageset/post_type_bubble_googleplus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_googleplus.imageset/post_type_bubble_googleplus@2x.png -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_instagram.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_instagram.imageset/Contents.json -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_instagram.imageset/post_type_bubble_instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_instagram.imageset/post_type_bubble_instagram.png -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_instagram.imageset/post_type_bubble_instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_instagram.imageset/post_type_bubble_instagram@2x.png -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_twitter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_twitter.imageset/Contents.json -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_twitter.imageset/post_type_bubble_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_twitter.imageset/post_type_bubble_twitter.png -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_twitter.imageset/post_type_bubble_twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_twitter.imageset/post_type_bubble_twitter@2x.png -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_youtube.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_youtube.imageset/Contents.json -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_youtube.imageset/post_type_bubble_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_youtube.imageset/post_type_bubble_youtube.png -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_youtube.imageset/post_type_bubble_youtube@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Images.xcassets/post_type_bubble_youtube.imageset/post_type_bubble_youtube@2x.png -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/Info.plist -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/ViewController.h -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/ViewController.m -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExample/main.m -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExampleTests/Info.plist -------------------------------------------------------------------------------- /PopMenuExample/PopMenuExampleTests/PopMenuExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/PopMenuExample/PopMenuExampleTests/PopMenuExampleTests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/PopMenu/HEAD/README.md --------------------------------------------------------------------------------