├── .gitignore ├── LICENSE ├── MFLTextFillLoading.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── MFLTextFillLoading.xcscmblueprint ├── MFLTextFillLoading ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Franklin_Gothic_Book.ttf ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── MFLFillableText │ ├── MFLFillableTextLoader.h │ ├── MFLFillableTextLoader.m │ ├── MFLFillableTextLoader.xib │ └── Text Paths │ │ ├── MFLBorderLabel.h │ │ └── MFLBorderLabel.m ├── MFLTextFillLoading.xcdatamodeld │ ├── .xccurrentversion │ └── MFLTextFillLoading.xcdatamodel │ │ └── contents ├── SWCrawlBody.ttf ├── SWCrawlTitle.ttf ├── StarJediBig.ttf ├── Starjedi.ttf ├── ViewController.h ├── ViewController.m ├── main.m └── starBg.png ├── MFLTextFillLoadingTests ├── Info.plist └── MFLTextFillLoadingTests.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/LICENSE -------------------------------------------------------------------------------- /MFLTextFillLoading.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MFLTextFillLoading.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MFLTextFillLoading.xcodeproj/project.xcworkspace/xcshareddata/MFLTextFillLoading.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading.xcodeproj/project.xcworkspace/xcshareddata/MFLTextFillLoading.xcscmblueprint -------------------------------------------------------------------------------- /MFLTextFillLoading/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/AppDelegate.h -------------------------------------------------------------------------------- /MFLTextFillLoading/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/AppDelegate.m -------------------------------------------------------------------------------- /MFLTextFillLoading/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /MFLTextFillLoading/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MFLTextFillLoading/Franklin_Gothic_Book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/Franklin_Gothic_Book.ttf -------------------------------------------------------------------------------- /MFLTextFillLoading/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MFLTextFillLoading/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/Info.plist -------------------------------------------------------------------------------- /MFLTextFillLoading/MFLFillableText/MFLFillableTextLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/MFLFillableText/MFLFillableTextLoader.h -------------------------------------------------------------------------------- /MFLTextFillLoading/MFLFillableText/MFLFillableTextLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/MFLFillableText/MFLFillableTextLoader.m -------------------------------------------------------------------------------- /MFLTextFillLoading/MFLFillableText/MFLFillableTextLoader.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/MFLFillableText/MFLFillableTextLoader.xib -------------------------------------------------------------------------------- /MFLTextFillLoading/MFLFillableText/Text Paths/MFLBorderLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/MFLFillableText/Text Paths/MFLBorderLabel.h -------------------------------------------------------------------------------- /MFLTextFillLoading/MFLFillableText/Text Paths/MFLBorderLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/MFLFillableText/Text Paths/MFLBorderLabel.m -------------------------------------------------------------------------------- /MFLTextFillLoading/MFLTextFillLoading.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/MFLTextFillLoading.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /MFLTextFillLoading/MFLTextFillLoading.xcdatamodeld/MFLTextFillLoading.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/MFLTextFillLoading.xcdatamodeld/MFLTextFillLoading.xcdatamodel/contents -------------------------------------------------------------------------------- /MFLTextFillLoading/SWCrawlBody.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/SWCrawlBody.ttf -------------------------------------------------------------------------------- /MFLTextFillLoading/SWCrawlTitle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/SWCrawlTitle.ttf -------------------------------------------------------------------------------- /MFLTextFillLoading/StarJediBig.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/StarJediBig.ttf -------------------------------------------------------------------------------- /MFLTextFillLoading/Starjedi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/Starjedi.ttf -------------------------------------------------------------------------------- /MFLTextFillLoading/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/ViewController.h -------------------------------------------------------------------------------- /MFLTextFillLoading/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/ViewController.m -------------------------------------------------------------------------------- /MFLTextFillLoading/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/main.m -------------------------------------------------------------------------------- /MFLTextFillLoading/starBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoading/starBg.png -------------------------------------------------------------------------------- /MFLTextFillLoadingTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoadingTests/Info.plist -------------------------------------------------------------------------------- /MFLTextFillLoadingTests/MFLTextFillLoadingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/MFLTextFillLoadingTests/MFLTextFillLoadingTests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattFoley/MFLFillableTextLoader/HEAD/README.md --------------------------------------------------------------------------------