├── Extensions.swift ├── README.md ├── UIScrollViewDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── simongladman.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── simongladman.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── UIScrollViewDemo.xcscheme │ └── xcschememanagement.plist ├── UIScrollViewDemo ├── AppDelegate.swift ├── Async.swift ├── BackgroundControl.swift ├── BackgroundGrid.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── MenuButton.swift ├── NodeVO.swift ├── NodeWidget.swift ├── NodesPM.swift ├── NumericDial.swift ├── NumericDialBackground.swift ├── NumericDialTrack.swift ├── NumericDialViewController.swift ├── OpenSans-CondBold.ttf ├── RelationshipCurvesLayer.swift ├── Toolbar.swift └── ViewController.swift └── UIScrollViewDemoTests ├── Info.plist └── UIScrollViewDemoTests.swift /Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/Extensions.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/README.md -------------------------------------------------------------------------------- /UIScrollViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UIScrollViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UIScrollViewDemo.xcodeproj/project.xcworkspace/xcuserdata/simongladman.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo.xcodeproj/project.xcworkspace/xcuserdata/simongladman.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /UIScrollViewDemo.xcodeproj/xcuserdata/simongladman.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo.xcodeproj/xcuserdata/simongladman.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /UIScrollViewDemo.xcodeproj/xcuserdata/simongladman.xcuserdatad/xcschemes/UIScrollViewDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo.xcodeproj/xcuserdata/simongladman.xcuserdatad/xcschemes/UIScrollViewDemo.xcscheme -------------------------------------------------------------------------------- /UIScrollViewDemo.xcodeproj/xcuserdata/simongladman.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo.xcodeproj/xcuserdata/simongladman.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /UIScrollViewDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/AppDelegate.swift -------------------------------------------------------------------------------- /UIScrollViewDemo/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/Async.swift -------------------------------------------------------------------------------- /UIScrollViewDemo/BackgroundControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/BackgroundControl.swift -------------------------------------------------------------------------------- /UIScrollViewDemo/BackgroundGrid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/BackgroundGrid.swift -------------------------------------------------------------------------------- /UIScrollViewDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /UIScrollViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /UIScrollViewDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /UIScrollViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/Info.plist -------------------------------------------------------------------------------- /UIScrollViewDemo/MenuButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/MenuButton.swift -------------------------------------------------------------------------------- /UIScrollViewDemo/NodeVO.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/NodeVO.swift -------------------------------------------------------------------------------- /UIScrollViewDemo/NodeWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/NodeWidget.swift -------------------------------------------------------------------------------- /UIScrollViewDemo/NodesPM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/NodesPM.swift -------------------------------------------------------------------------------- /UIScrollViewDemo/NumericDial.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/NumericDial.swift -------------------------------------------------------------------------------- /UIScrollViewDemo/NumericDialBackground.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/NumericDialBackground.swift -------------------------------------------------------------------------------- /UIScrollViewDemo/NumericDialTrack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/NumericDialTrack.swift -------------------------------------------------------------------------------- /UIScrollViewDemo/NumericDialViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/NumericDialViewController.swift -------------------------------------------------------------------------------- /UIScrollViewDemo/OpenSans-CondBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/OpenSans-CondBold.ttf -------------------------------------------------------------------------------- /UIScrollViewDemo/RelationshipCurvesLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/RelationshipCurvesLayer.swift -------------------------------------------------------------------------------- /UIScrollViewDemo/Toolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/Toolbar.swift -------------------------------------------------------------------------------- /UIScrollViewDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemo/ViewController.swift -------------------------------------------------------------------------------- /UIScrollViewDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemoTests/Info.plist -------------------------------------------------------------------------------- /UIScrollViewDemoTests/UIScrollViewDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/UIScrollViewDemo/HEAD/UIScrollViewDemoTests/UIScrollViewDemoTests.swift --------------------------------------------------------------------------------