├── ADCustomPageControl ├── ADCustomPageControl.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── ADCustomPageControl.xccheckout │ │ └── xcuserdata │ │ │ ├── Aditya.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── adityadeshmane.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── Aditya.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ ├── ADCustomPageControl.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── adityadeshmane.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── ADCustomPageControl.xcscheme │ │ └── xcschememanagement.plist └── ADCustomPageControl │ ├── ADPageControl │ ├── ADPageControl.h │ ├── ADPageControl.m │ └── ADPageControl.xib │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── SampleViewController.h │ ├── SampleViewController.m │ └── main.m ├── ControlFiles └── ADPageControl │ ├── ADPageControl.h │ ├── ADPageControl.m │ └── ADPageControl.xib ├── LICENSE.txt ├── README.md └── pageControl.gif /ADCustomPageControl/ADCustomPageControl.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl.xcodeproj/project.xcworkspace/xcshareddata/ADCustomPageControl.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl.xcodeproj/project.xcworkspace/xcshareddata/ADCustomPageControl.xccheckout -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl.xcodeproj/project.xcworkspace/xcuserdata/Aditya.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl.xcodeproj/project.xcworkspace/xcuserdata/Aditya.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl.xcodeproj/project.xcworkspace/xcuserdata/Aditya.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl.xcodeproj/project.xcworkspace/xcuserdata/Aditya.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl.xcodeproj/project.xcworkspace/xcuserdata/adityadeshmane.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl.xcodeproj/project.xcworkspace/xcuserdata/adityadeshmane.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl.xcodeproj/xcuserdata/Aditya.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl.xcodeproj/xcuserdata/Aditya.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl.xcodeproj/xcuserdata/Aditya.xcuserdatad/xcschemes/ADCustomPageControl.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl.xcodeproj/xcuserdata/Aditya.xcuserdatad/xcschemes/ADCustomPageControl.xcscheme -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl.xcodeproj/xcuserdata/Aditya.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl.xcodeproj/xcuserdata/Aditya.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl.xcodeproj/xcuserdata/adityadeshmane.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl.xcodeproj/xcuserdata/adityadeshmane.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl.xcodeproj/xcuserdata/adityadeshmane.xcuserdatad/xcschemes/ADCustomPageControl.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl.xcodeproj/xcuserdata/adityadeshmane.xcuserdatad/xcschemes/ADCustomPageControl.xcscheme -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl.xcodeproj/xcuserdata/adityadeshmane.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl.xcodeproj/xcuserdata/adityadeshmane.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl/ADPageControl/ADPageControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl/ADPageControl/ADPageControl.h -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl/ADPageControl/ADPageControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl/ADPageControl/ADPageControl.m -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl/ADPageControl/ADPageControl.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl/ADPageControl/ADPageControl.xib -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl/AppDelegate.h -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl/AppDelegate.m -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl/Info.plist -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl/SampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl/SampleViewController.h -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl/SampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl/SampleViewController.m -------------------------------------------------------------------------------- /ADCustomPageControl/ADCustomPageControl/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ADCustomPageControl/ADCustomPageControl/main.m -------------------------------------------------------------------------------- /ControlFiles/ADPageControl/ADPageControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ControlFiles/ADPageControl/ADPageControl.h -------------------------------------------------------------------------------- /ControlFiles/ADPageControl/ADPageControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ControlFiles/ADPageControl/ADPageControl.m -------------------------------------------------------------------------------- /ControlFiles/ADPageControl/ADPageControl.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/ControlFiles/ADPageControl/ADPageControl.xib -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/README.md -------------------------------------------------------------------------------- /pageControl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaDeshmane/iOSCustomPageControl/HEAD/pageControl.gif --------------------------------------------------------------------------------