├── .gitignore ├── .gitmodules ├── .travis.yml ├── FontAwesomeIconFactory.h ├── FontAwesomeIconFactory.podspec ├── FontAwesomeIconFactory.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── FontAwesomeIconFactory.xcscheme │ └── FontAwesomeIconFactoryOSX.xcscheme ├── FontAwesomeIconFactory.xcworkspace └── contents.xcworkspacedata ├── FontAwesomeIconFactory ├── Demo.playground │ ├── Contents.swift │ └── contents.xcplayground ├── FontAwesomeIconFactory.h ├── Info.plist ├── NIKFontAwesomeIcon.h ├── NIKFontAwesomeIconFactory+OSX.h ├── NIKFontAwesomeIconFactory+iOS.h ├── NIKFontAwesomeIconFactory.h ├── NIKFontAwesomeIconFactory.m ├── NIKFontAwesomeIconTraits.h ├── NIKFontAwesomeIconTypes.h ├── NIKFontAwesomePathFactory.h ├── NIKFontAwesomePathFactory.m ├── NIKFontAwesomePathRenderer.h ├── NIKFontAwesomePathRenderer.m ├── OSX │ ├── NIKFontAwesomeButton.h │ ├── NIKFontAwesomeButton.m │ ├── NIKFontAwesomeImageView.h │ └── NIKFontAwesomeImageView.m └── iOS │ ├── NIKFontAwesomeButton.h │ ├── NIKFontAwesomeButton.m │ ├── NIKFontAwesomeImageView.h │ ├── NIKFontAwesomeImageView.m │ ├── NIKFontAwesomeTabBarItem.h │ └── NIKFontAwesomeTabBarItem.m ├── FontAwesomeIconFactoryDemo ├── FontAwesomeIconFactoryDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── FontAwesomeIconFactoryDemo.xcscheme ├── FontAwesomeIconFactoryDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── FirstViewController.h │ ├── FirstViewController.m │ ├── FontAwesomeIconFactory.h │ ├── FontAwesomeIconFactoryDemo-Info.plist │ ├── FontAwesomeIconFactoryDemo-Prefix.pch │ ├── SecondViewController.h │ ├── SecondViewController.m │ ├── TabBarController.h │ ├── TabBarController.m │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainStoryboard_iPhone.storyboard │ └── main.m └── FontAwesomeIconFactoryTests │ ├── FontAwesomeIconFactoryTests-Info.plist │ ├── FontAwesomeIconFactoryTests-Prefix.pch │ └── en.lproj │ └── InfoPlist.strings ├── FontAwesomeIconFactoryDemoOSX ├── FontAwesomeIconFactoryDemoOSX.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── FontAwesomeIconFactoryDemoOSX.xcscheme ├── FontAwesomeIconFactoryDemoOSX │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── FontAwesomeIconFactory.h │ ├── FontAwesomeIconFactoryDemoOSX-Info.plist │ ├── FontAwesomeIconFactoryDemoOSX-Prefix.pch │ ├── NIKFontAwesomeIconTypes.h │ ├── en.lproj │ │ ├── Credits.rtf │ │ ├── InfoPlist.strings │ │ └── MainMenu.xib │ └── main.m └── FontAwesomeIconFactoryTestsOSX │ ├── FontAwesomeIconFactoryTestsOSX-Info.plist │ ├── FontAwesomeIconFactoryTestsOSX-Prefix.pch │ └── en.lproj │ └── InfoPlist.strings ├── FontAwesomeIconFactoryTests ├── FontAwesomeIconFactoryTests.m ├── Info.plist └── range.h ├── LICENSE ├── Podfile └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/.travis.yml -------------------------------------------------------------------------------- /FontAwesomeIconFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory.h -------------------------------------------------------------------------------- /FontAwesomeIconFactory.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory.podspec -------------------------------------------------------------------------------- /FontAwesomeIconFactory.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FontAwesomeIconFactory.xcodeproj/xcshareddata/xcschemes/FontAwesomeIconFactory.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory.xcodeproj/xcshareddata/xcschemes/FontAwesomeIconFactory.xcscheme -------------------------------------------------------------------------------- /FontAwesomeIconFactory.xcodeproj/xcshareddata/xcschemes/FontAwesomeIconFactoryOSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory.xcodeproj/xcshareddata/xcschemes/FontAwesomeIconFactoryOSX.xcscheme -------------------------------------------------------------------------------- /FontAwesomeIconFactory.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FontAwesomeIconFactory/Demo.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/Demo.playground/Contents.swift -------------------------------------------------------------------------------- /FontAwesomeIconFactory/Demo.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/Demo.playground/contents.xcplayground -------------------------------------------------------------------------------- /FontAwesomeIconFactory/FontAwesomeIconFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/FontAwesomeIconFactory.h -------------------------------------------------------------------------------- /FontAwesomeIconFactory/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/Info.plist -------------------------------------------------------------------------------- /FontAwesomeIconFactory/NIKFontAwesomeIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/NIKFontAwesomeIcon.h -------------------------------------------------------------------------------- /FontAwesomeIconFactory/NIKFontAwesomeIconFactory+OSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/NIKFontAwesomeIconFactory+OSX.h -------------------------------------------------------------------------------- /FontAwesomeIconFactory/NIKFontAwesomeIconFactory+iOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/NIKFontAwesomeIconFactory+iOS.h -------------------------------------------------------------------------------- /FontAwesomeIconFactory/NIKFontAwesomeIconFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/NIKFontAwesomeIconFactory.h -------------------------------------------------------------------------------- /FontAwesomeIconFactory/NIKFontAwesomeIconFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/NIKFontAwesomeIconFactory.m -------------------------------------------------------------------------------- /FontAwesomeIconFactory/NIKFontAwesomeIconTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/NIKFontAwesomeIconTraits.h -------------------------------------------------------------------------------- /FontAwesomeIconFactory/NIKFontAwesomeIconTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/NIKFontAwesomeIconTypes.h -------------------------------------------------------------------------------- /FontAwesomeIconFactory/NIKFontAwesomePathFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/NIKFontAwesomePathFactory.h -------------------------------------------------------------------------------- /FontAwesomeIconFactory/NIKFontAwesomePathFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/NIKFontAwesomePathFactory.m -------------------------------------------------------------------------------- /FontAwesomeIconFactory/NIKFontAwesomePathRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/NIKFontAwesomePathRenderer.h -------------------------------------------------------------------------------- /FontAwesomeIconFactory/NIKFontAwesomePathRenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/NIKFontAwesomePathRenderer.m -------------------------------------------------------------------------------- /FontAwesomeIconFactory/OSX/NIKFontAwesomeButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/OSX/NIKFontAwesomeButton.h -------------------------------------------------------------------------------- /FontAwesomeIconFactory/OSX/NIKFontAwesomeButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/OSX/NIKFontAwesomeButton.m -------------------------------------------------------------------------------- /FontAwesomeIconFactory/OSX/NIKFontAwesomeImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/OSX/NIKFontAwesomeImageView.h -------------------------------------------------------------------------------- /FontAwesomeIconFactory/OSX/NIKFontAwesomeImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/OSX/NIKFontAwesomeImageView.m -------------------------------------------------------------------------------- /FontAwesomeIconFactory/iOS/NIKFontAwesomeButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/iOS/NIKFontAwesomeButton.h -------------------------------------------------------------------------------- /FontAwesomeIconFactory/iOS/NIKFontAwesomeButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/iOS/NIKFontAwesomeButton.m -------------------------------------------------------------------------------- /FontAwesomeIconFactory/iOS/NIKFontAwesomeImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/iOS/NIKFontAwesomeImageView.h -------------------------------------------------------------------------------- /FontAwesomeIconFactory/iOS/NIKFontAwesomeImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/iOS/NIKFontAwesomeImageView.m -------------------------------------------------------------------------------- /FontAwesomeIconFactory/iOS/NIKFontAwesomeTabBarItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/iOS/NIKFontAwesomeTabBarItem.h -------------------------------------------------------------------------------- /FontAwesomeIconFactory/iOS/NIKFontAwesomeTabBarItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactory/iOS/NIKFontAwesomeTabBarItem.m -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo.xcodeproj/xcshareddata/xcschemes/FontAwesomeIconFactoryDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo.xcodeproj/xcshareddata/xcschemes/FontAwesomeIconFactoryDemo.xcscheme -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/AppDelegate.h -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/AppDelegate.m -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/Default.png -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/Default@2x.png -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/FirstViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/FirstViewController.h -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/FirstViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/FirstViewController.m -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/FontAwesomeIconFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/FontAwesomeIconFactory.h -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo-Info.plist -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo-Prefix.pch -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/SecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/SecondViewController.h -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/SecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/SecondViewController.m -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/TabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/TabBarController.h -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/TabBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/TabBarController.m -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryDemo/main.m -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryTests/FontAwesomeIconFactoryTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryTests/FontAwesomeIconFactoryTests-Info.plist -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryTests/FontAwesomeIconFactoryTests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryTests/FontAwesomeIconFactoryTests-Prefix.pch -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemo/FontAwesomeIconFactoryTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX.xcodeproj/xcshareddata/xcschemes/FontAwesomeIconFactoryDemoOSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX.xcodeproj/xcshareddata/xcschemes/FontAwesomeIconFactoryDemoOSX.xcscheme -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/AppDelegate.h -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/AppDelegate.m -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactory.h -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX-Info.plist -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX-Prefix.pch -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/NIKFontAwesomeIconTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/NIKFontAwesomeIconTypes.h -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryDemoOSX/main.m -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryTestsOSX/FontAwesomeIconFactoryTestsOSX-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryTestsOSX/FontAwesomeIconFactoryTestsOSX-Info.plist -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryTestsOSX/FontAwesomeIconFactoryTestsOSX-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryTestsOSX/FontAwesomeIconFactoryTestsOSX-Prefix.pch -------------------------------------------------------------------------------- /FontAwesomeIconFactoryDemoOSX/FontAwesomeIconFactoryTestsOSX/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FontAwesomeIconFactoryTests/FontAwesomeIconFactoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryTests/FontAwesomeIconFactoryTests.m -------------------------------------------------------------------------------- /FontAwesomeIconFactoryTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryTests/Info.plist -------------------------------------------------------------------------------- /FontAwesomeIconFactoryTests/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/FontAwesomeIconFactoryTests/range.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nschum/FontAwesomeIconFactory/HEAD/README.md --------------------------------------------------------------------------------