├── .gitignore ├── ACPButton.h ├── ACPButton.m ├── ACPButton.podspec ├── ACPButtons.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── ACP.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── ACP.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── ACPButtons.xcscheme │ └── xcschememanagement.plist ├── ACPButtons ├── ACPButtons-Info.plist ├── ACPButtons-Prefix.pch ├── AppDelegate.h ├── AppDelegate.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── Images │ ├── alert-gray-button.png │ ├── alert-gray-button@2x.png │ ├── bg.png │ ├── bg@2X.png │ ├── cont-bt_highlighted.png │ ├── cont-bt_highlighted@2x.png │ ├── cont-bt_normal.png │ └── cont-bt_normal@2x.png ├── ViewController.h ├── ViewController.m ├── en.lproj │ ├── InfoPlist.strings │ ├── MainStoryboard_iPad.storyboard │ └── MainStoryboard_iPhone.storyboard └── main.m ├── ACPButtonsTests ├── ACPButtonsTests-Info.plist ├── ACPButtonsTests.h ├── ACPButtonsTests.m └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── README.md ├── Screenshot1.png └── Screenshot2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/.gitignore -------------------------------------------------------------------------------- /ACPButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButton.h -------------------------------------------------------------------------------- /ACPButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButton.m -------------------------------------------------------------------------------- /ACPButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButton.podspec -------------------------------------------------------------------------------- /ACPButtons.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ACPButtons.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ACPButtons.xcodeproj/project.xcworkspace/xcuserdata/ACP.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons.xcodeproj/project.xcworkspace/xcuserdata/ACP.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ACPButtons.xcodeproj/project.xcworkspace/xcuserdata/ACP.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons.xcodeproj/project.xcworkspace/xcuserdata/ACP.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ACPButtons.xcodeproj/xcuserdata/ACP.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons.xcodeproj/xcuserdata/ACP.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /ACPButtons.xcodeproj/xcuserdata/ACP.xcuserdatad/xcschemes/ACPButtons.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons.xcodeproj/xcuserdata/ACP.xcuserdatad/xcschemes/ACPButtons.xcscheme -------------------------------------------------------------------------------- /ACPButtons.xcodeproj/xcuserdata/ACP.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons.xcodeproj/xcuserdata/ACP.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ACPButtons/ACPButtons-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/ACPButtons-Info.plist -------------------------------------------------------------------------------- /ACPButtons/ACPButtons-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/ACPButtons-Prefix.pch -------------------------------------------------------------------------------- /ACPButtons/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/AppDelegate.h -------------------------------------------------------------------------------- /ACPButtons/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/AppDelegate.m -------------------------------------------------------------------------------- /ACPButtons/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/Default-568h@2x.png -------------------------------------------------------------------------------- /ACPButtons/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/Default.png -------------------------------------------------------------------------------- /ACPButtons/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/Default@2x.png -------------------------------------------------------------------------------- /ACPButtons/Images/alert-gray-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/Images/alert-gray-button.png -------------------------------------------------------------------------------- /ACPButtons/Images/alert-gray-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/Images/alert-gray-button@2x.png -------------------------------------------------------------------------------- /ACPButtons/Images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/Images/bg.png -------------------------------------------------------------------------------- /ACPButtons/Images/bg@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/Images/bg@2X.png -------------------------------------------------------------------------------- /ACPButtons/Images/cont-bt_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/Images/cont-bt_highlighted.png -------------------------------------------------------------------------------- /ACPButtons/Images/cont-bt_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/Images/cont-bt_highlighted@2x.png -------------------------------------------------------------------------------- /ACPButtons/Images/cont-bt_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/Images/cont-bt_normal.png -------------------------------------------------------------------------------- /ACPButtons/Images/cont-bt_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/Images/cont-bt_normal@2x.png -------------------------------------------------------------------------------- /ACPButtons/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/ViewController.h -------------------------------------------------------------------------------- /ACPButtons/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/ViewController.m -------------------------------------------------------------------------------- /ACPButtons/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ACPButtons/en.lproj/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/en.lproj/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /ACPButtons/en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /ACPButtons/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtons/main.m -------------------------------------------------------------------------------- /ACPButtonsTests/ACPButtonsTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtonsTests/ACPButtonsTests-Info.plist -------------------------------------------------------------------------------- /ACPButtonsTests/ACPButtonsTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtonsTests/ACPButtonsTests.h -------------------------------------------------------------------------------- /ACPButtonsTests/ACPButtonsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/ACPButtonsTests/ACPButtonsTests.m -------------------------------------------------------------------------------- /ACPButtonsTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/Screenshot1.png -------------------------------------------------------------------------------- /Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoniocasero/ACPButton/HEAD/Screenshot2.png --------------------------------------------------------------------------------