├── .gitignore ├── LICENSE ├── README.md ├── floatingButtonTrial.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── floatingButtonTrial ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── VCFloatingActionButton │ ├── VCFloatingActionButton.h │ ├── VCFloatingActionButton.m │ ├── floatTableViewCell.h │ ├── floatTableViewCell.m │ └── floatTableViewCell.xib ├── ViewController.h ├── ViewController.m ├── cross.png ├── fb-icon.png ├── google-icon.png ├── linkedin-icon.png ├── main.m ├── plus.png └── twitter-icon.png └── floatingButtonTrialTests ├── Info.plist └── floatingButtonTrialTests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/README.md -------------------------------------------------------------------------------- /floatingButtonTrial.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /floatingButtonTrial.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /floatingButtonTrial/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/AppDelegate.h -------------------------------------------------------------------------------- /floatingButtonTrial/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/AppDelegate.m -------------------------------------------------------------------------------- /floatingButtonTrial/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /floatingButtonTrial/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /floatingButtonTrial/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /floatingButtonTrial/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/Info.plist -------------------------------------------------------------------------------- /floatingButtonTrial/VCFloatingActionButton/VCFloatingActionButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/VCFloatingActionButton/VCFloatingActionButton.h -------------------------------------------------------------------------------- /floatingButtonTrial/VCFloatingActionButton/VCFloatingActionButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/VCFloatingActionButton/VCFloatingActionButton.m -------------------------------------------------------------------------------- /floatingButtonTrial/VCFloatingActionButton/floatTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/VCFloatingActionButton/floatTableViewCell.h -------------------------------------------------------------------------------- /floatingButtonTrial/VCFloatingActionButton/floatTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/VCFloatingActionButton/floatTableViewCell.m -------------------------------------------------------------------------------- /floatingButtonTrial/VCFloatingActionButton/floatTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/VCFloatingActionButton/floatTableViewCell.xib -------------------------------------------------------------------------------- /floatingButtonTrial/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/ViewController.h -------------------------------------------------------------------------------- /floatingButtonTrial/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/ViewController.m -------------------------------------------------------------------------------- /floatingButtonTrial/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/cross.png -------------------------------------------------------------------------------- /floatingButtonTrial/fb-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/fb-icon.png -------------------------------------------------------------------------------- /floatingButtonTrial/google-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/google-icon.png -------------------------------------------------------------------------------- /floatingButtonTrial/linkedin-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/linkedin-icon.png -------------------------------------------------------------------------------- /floatingButtonTrial/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/main.m -------------------------------------------------------------------------------- /floatingButtonTrial/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/plus.png -------------------------------------------------------------------------------- /floatingButtonTrial/twitter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrial/twitter-icon.png -------------------------------------------------------------------------------- /floatingButtonTrialTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrialTests/Info.plist -------------------------------------------------------------------------------- /floatingButtonTrialTests/floatingButtonTrialTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giridharvc7/VCFloatingActionButton/HEAD/floatingButtonTrialTests/floatingButtonTrialTests.m --------------------------------------------------------------------------------