├── .gitignore ├── AnimatedBubbleTest ├── AnimatedBubbleTest.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── AnimatedBubbleTest │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── BubbleView │ │ ├── BubbleLayer.h │ │ ├── BubbleLayer.m │ │ ├── BubbleView.h │ │ └── BubbleView.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── KYSpringLayerAnimation.h │ ├── KYSpringLayerAnimation.m │ ├── SCCircleMath.h │ ├── SCCircleMath.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── AnimatedBubbleTestTests │ ├── AnimatedBubbleTestTests.m │ └── Info.plist ├── LICENSE ├── README.md └── ScreenShot.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/.gitignore -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/AppDelegate.h -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/AppDelegate.m -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/BubbleView/BubbleLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/BubbleView/BubbleLayer.h -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/BubbleView/BubbleLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/BubbleView/BubbleLayer.m -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/BubbleView/BubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/BubbleView/BubbleView.h -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/BubbleView/BubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/BubbleView/BubbleView.m -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/Info.plist -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/KYSpringLayerAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/KYSpringLayerAnimation.h -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/KYSpringLayerAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/KYSpringLayerAnimation.m -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/SCCircleMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/SCCircleMath.h -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/SCCircleMath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/SCCircleMath.m -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/ViewController.h -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/ViewController.m -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTest/main.m -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTestTests/AnimatedBubbleTestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTestTests/AnimatedBubbleTestTests.m -------------------------------------------------------------------------------- /AnimatedBubbleTest/AnimatedBubbleTestTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/AnimatedBubbleTest/AnimatedBubbleTestTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lilidan/StickyBallView/HEAD/ScreenShot.gif --------------------------------------------------------------------------------