├── .gitignore ├── LICENSE ├── README.md └── SWCrawlViewExample ├── SWCrawlViewExample.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── SWCrawlViewExample ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── SWCrawlView │ ├── Assets │ │ ├── Fonts │ │ │ ├── Franklin_Gothic_Book.ttf │ │ │ ├── SWCrawlBody.ttf │ │ │ ├── SWCrawlTitle.ttf │ │ │ ├── StarJediBig.ttf │ │ │ ├── Star_Jedi_Rounded.ttf │ │ │ ├── Starjedi.ttf │ │ │ └── Starjhol.ttf │ │ └── Images │ │ │ ├── mask.png │ │ │ └── starBg.png │ ├── Constants │ │ ├── SWConstants.h │ │ └── SWConstants.m │ ├── Crawl View │ │ ├── BorderLabel │ │ │ ├── SWStrokedLogoLabel.h │ │ │ └── SWStrokedLogoLabel.m │ │ ├── SWCrawlView.h │ │ ├── SWCrawlView.m │ │ └── SWCrawlView.xib │ └── Crawl │ │ ├── SWCrawl.h │ │ └── SWCrawl.m ├── ViewController.h ├── ViewController.m └── main.m └── SWCrawlViewExampleTests ├── Info.plist └── SWCrawlViewExampleTests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/README.md -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/AppDelegate.h -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/AppDelegate.m -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/Info.plist -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Fonts/Franklin_Gothic_Book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Fonts/Franklin_Gothic_Book.ttf -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Fonts/SWCrawlBody.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Fonts/SWCrawlBody.ttf -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Fonts/SWCrawlTitle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Fonts/SWCrawlTitle.ttf -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Fonts/StarJediBig.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Fonts/StarJediBig.ttf -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Fonts/Star_Jedi_Rounded.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Fonts/Star_Jedi_Rounded.ttf -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Fonts/Starjedi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Fonts/Starjedi.ttf -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Fonts/Starjhol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Fonts/Starjhol.ttf -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Images/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Images/mask.png -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Images/starBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Assets/Images/starBg.png -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Constants/SWConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Constants/SWConstants.h -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Constants/SWConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Constants/SWConstants.m -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Crawl View/BorderLabel/SWStrokedLogoLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Crawl View/BorderLabel/SWStrokedLogoLabel.h -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Crawl View/BorderLabel/SWStrokedLogoLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Crawl View/BorderLabel/SWStrokedLogoLabel.m -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Crawl View/SWCrawlView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Crawl View/SWCrawlView.h -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Crawl View/SWCrawlView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Crawl View/SWCrawlView.m -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Crawl View/SWCrawlView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Crawl View/SWCrawlView.xib -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Crawl/SWCrawl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Crawl/SWCrawl.h -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Crawl/SWCrawl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/SWCrawlView/Crawl/SWCrawl.m -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/ViewController.h -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/ViewController.m -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExample/main.m -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExampleTests/Info.plist -------------------------------------------------------------------------------- /SWCrawlViewExample/SWCrawlViewExampleTests/SWCrawlViewExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/SWCrawlView/HEAD/SWCrawlViewExample/SWCrawlViewExampleTests/SWCrawlViewExampleTests.m --------------------------------------------------------------------------------