├── .gitignore ├── InfoButton.podspec ├── InfoButton.swift ├── InfoButton.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── InfoButton.xcscheme ├── InfoButton ├── AppDelegate.swift ├── Base.lproj │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── InfoButtonTests ├── Info.plist └── InfoButtonTests.swift ├── LICENSE ├── README.md └── images ├── attrInsp.png └── demo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/.gitignore -------------------------------------------------------------------------------- /InfoButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/InfoButton.podspec -------------------------------------------------------------------------------- /InfoButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/InfoButton.swift -------------------------------------------------------------------------------- /InfoButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/InfoButton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /InfoButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/InfoButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /InfoButton.xcodeproj/xcshareddata/xcschemes/InfoButton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/InfoButton.xcodeproj/xcshareddata/xcschemes/InfoButton.xcscheme -------------------------------------------------------------------------------- /InfoButton/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/InfoButton/AppDelegate.swift -------------------------------------------------------------------------------- /InfoButton/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/InfoButton/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /InfoButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/InfoButton/Info.plist -------------------------------------------------------------------------------- /InfoButton/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/InfoButton/ViewController.swift -------------------------------------------------------------------------------- /InfoButtonTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/InfoButtonTests/Info.plist -------------------------------------------------------------------------------- /InfoButtonTests/InfoButtonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/InfoButtonTests/InfoButtonTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/README.md -------------------------------------------------------------------------------- /images/attrInsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/images/attrInsp.png -------------------------------------------------------------------------------- /images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaunteya/InfoButton/HEAD/images/demo.png --------------------------------------------------------------------------------