├── LICENSE ├── README.md ├── WCSBubbleView ├── WCSBubble.h ├── WCSBubble.m ├── WCSBubbleView.h └── WCSBubbleView.m ├── WCSBubbleViewExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── Aaron.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── WCSBubbleViewExample.xcscheme │ └── xcschememanagement.plist ├── WCSBubbleViewExample ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m └── screens └── screen-1.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/README.md -------------------------------------------------------------------------------- /WCSBubbleView/WCSBubble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleView/WCSBubble.h -------------------------------------------------------------------------------- /WCSBubbleView/WCSBubble.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleView/WCSBubble.m -------------------------------------------------------------------------------- /WCSBubbleView/WCSBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleView/WCSBubbleView.h -------------------------------------------------------------------------------- /WCSBubbleView/WCSBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleView/WCSBubbleView.m -------------------------------------------------------------------------------- /WCSBubbleViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WCSBubbleViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WCSBubbleViewExample.xcodeproj/xcuserdata/Aaron.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleViewExample.xcodeproj/xcuserdata/Aaron.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /WCSBubbleViewExample.xcodeproj/xcuserdata/Aaron.xcuserdatad/xcschemes/WCSBubbleViewExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleViewExample.xcodeproj/xcuserdata/Aaron.xcuserdatad/xcschemes/WCSBubbleViewExample.xcscheme -------------------------------------------------------------------------------- /WCSBubbleViewExample.xcodeproj/xcuserdata/Aaron.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleViewExample.xcodeproj/xcuserdata/Aaron.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WCSBubbleViewExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleViewExample/AppDelegate.h -------------------------------------------------------------------------------- /WCSBubbleViewExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleViewExample/AppDelegate.m -------------------------------------------------------------------------------- /WCSBubbleViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WCSBubbleViewExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleViewExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /WCSBubbleViewExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleViewExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WCSBubbleViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleViewExample/Info.plist -------------------------------------------------------------------------------- /WCSBubbleViewExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleViewExample/ViewController.h -------------------------------------------------------------------------------- /WCSBubbleViewExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleViewExample/ViewController.m -------------------------------------------------------------------------------- /WCSBubbleViewExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/WCSBubbleViewExample/main.m -------------------------------------------------------------------------------- /screens/screen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WrightsCS/WCSBubbleView/HEAD/screens/screen-1.png --------------------------------------------------------------------------------