├── ASBubbleDrag.podspec ├── LICENCE ├── README.md ├── README ├── animated.gif ├── image1.png └── image9.png ├── UIConcept.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── scamps.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── scamps.xcuserdatad │ └── xcschemes │ ├── UIConcept.xcscheme │ └── xcschememanagement.plist ├── UIConcept ├── ASBubbleDrag │ ├── ASBubbleDrag.swift │ ├── BubbleCollectionCell.swift │ ├── BubbleCollectionCell.xib │ ├── BubbleDragView.swift │ ├── BubbleDragView.xib │ ├── MenuBubbleV.png │ ├── roundCornerView.swift │ └── roundImageView.swift ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.swift ├── icon1.png ├── icon10.png ├── icon11.png ├── icon2.png ├── icon3.png ├── icon4.png ├── icon5.png ├── icon6.png ├── icon7.png ├── icon8.png └── icon9.png ├── UIConceptTests ├── Info.plist └── UIConceptTests.swift └── UIConceptUITests ├── Info.plist └── UIConceptUITests.swift /ASBubbleDrag.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/ASBubbleDrag.podspec -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/README.md -------------------------------------------------------------------------------- /README/animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/README/animated.gif -------------------------------------------------------------------------------- /README/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/README/image1.png -------------------------------------------------------------------------------- /README/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/README/image9.png -------------------------------------------------------------------------------- /UIConcept.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UIConcept.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UIConcept.xcodeproj/project.xcworkspace/xcuserdata/scamps.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept.xcodeproj/project.xcworkspace/xcuserdata/scamps.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /UIConcept.xcodeproj/xcuserdata/scamps.xcuserdatad/xcschemes/UIConcept.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept.xcodeproj/xcuserdata/scamps.xcuserdatad/xcschemes/UIConcept.xcscheme -------------------------------------------------------------------------------- /UIConcept.xcodeproj/xcuserdata/scamps.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept.xcodeproj/xcuserdata/scamps.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /UIConcept/ASBubbleDrag/ASBubbleDrag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/ASBubbleDrag/ASBubbleDrag.swift -------------------------------------------------------------------------------- /UIConcept/ASBubbleDrag/BubbleCollectionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/ASBubbleDrag/BubbleCollectionCell.swift -------------------------------------------------------------------------------- /UIConcept/ASBubbleDrag/BubbleCollectionCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/ASBubbleDrag/BubbleCollectionCell.xib -------------------------------------------------------------------------------- /UIConcept/ASBubbleDrag/BubbleDragView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/ASBubbleDrag/BubbleDragView.swift -------------------------------------------------------------------------------- /UIConcept/ASBubbleDrag/BubbleDragView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/ASBubbleDrag/BubbleDragView.xib -------------------------------------------------------------------------------- /UIConcept/ASBubbleDrag/MenuBubbleV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/ASBubbleDrag/MenuBubbleV.png -------------------------------------------------------------------------------- /UIConcept/ASBubbleDrag/roundCornerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/ASBubbleDrag/roundCornerView.swift -------------------------------------------------------------------------------- /UIConcept/ASBubbleDrag/roundImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/ASBubbleDrag/roundImageView.swift -------------------------------------------------------------------------------- /UIConcept/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/AppDelegate.swift -------------------------------------------------------------------------------- /UIConcept/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /UIConcept/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /UIConcept/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /UIConcept/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/Info.plist -------------------------------------------------------------------------------- /UIConcept/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/ViewController.swift -------------------------------------------------------------------------------- /UIConcept/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/icon1.png -------------------------------------------------------------------------------- /UIConcept/icon10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/icon10.png -------------------------------------------------------------------------------- /UIConcept/icon11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/icon11.png -------------------------------------------------------------------------------- /UIConcept/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/icon2.png -------------------------------------------------------------------------------- /UIConcept/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/icon3.png -------------------------------------------------------------------------------- /UIConcept/icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/icon4.png -------------------------------------------------------------------------------- /UIConcept/icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/icon5.png -------------------------------------------------------------------------------- /UIConcept/icon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/icon6.png -------------------------------------------------------------------------------- /UIConcept/icon7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/icon7.png -------------------------------------------------------------------------------- /UIConcept/icon8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/icon8.png -------------------------------------------------------------------------------- /UIConcept/icon9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConcept/icon9.png -------------------------------------------------------------------------------- /UIConceptTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConceptTests/Info.plist -------------------------------------------------------------------------------- /UIConceptTests/UIConceptTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConceptTests/UIConceptTests.swift -------------------------------------------------------------------------------- /UIConceptUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConceptUITests/Info.plist -------------------------------------------------------------------------------- /UIConceptUITests/UIConceptUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aku-n06/ASBubbleDrag/HEAD/UIConceptUITests/UIConceptUITests.swift --------------------------------------------------------------------------------