├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Demo ├── Demo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── Demo.xcscheme │ │ └── DemoUITests.xcscheme ├── Demo │ ├── .DS_Store │ ├── AppDelegate (1).h │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── SecondViewController (1).h │ ├── SecondViewController.h │ ├── SecondViewController.m │ ├── ViewController.h │ ├── ViewController.m │ ├── dark.jpeg │ ├── light.jpeg │ ├── main.m │ ├── maps_icon (1).png │ └── maps_icon.png └── DemoUITests │ ├── DemoUITests.m │ └── Info.plist ├── FTIndicator.podspec ├── FTIndicator ├── .DS_Store ├── FTIndicator.h ├── FTIndicator.m ├── FTNotificationIndicator │ ├── FTNotificationIndicator.h │ └── FTNotificationIndicator.m ├── FTProgressIndicator │ ├── .DS_Store │ ├── FTProgressIndicator.bundle │ │ ├── ft_failure.png │ │ ├── ft_failure_dark.png │ │ ├── ft_info.png │ │ ├── ft_info_dark.png │ │ ├── ft_success.png │ │ └── ft_success_dark.png │ ├── FTProgressIndicator.h │ └── FTProgressIndicator.m └── FTToastIndicator │ ├── FTToastIndicator.h │ └── FTToastIndicator.m ├── FTNotificationIndicator.podspec ├── FTProgressIndicator.podspec ├── FTToastIndicator.podspec ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: objective-c 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/xcshareddata/xcschemes/Demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo.xcodeproj/xcshareddata/xcschemes/Demo.xcscheme -------------------------------------------------------------------------------- /Demo/Demo.xcodeproj/xcshareddata/xcschemes/DemoUITests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo.xcodeproj/xcshareddata/xcschemes/DemoUITests.xcscheme -------------------------------------------------------------------------------- /Demo/Demo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/.DS_Store -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate (1).h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/AppDelegate (1).h -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/AppDelegate.h -------------------------------------------------------------------------------- /Demo/Demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/AppDelegate.m -------------------------------------------------------------------------------- /Demo/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/Info.plist -------------------------------------------------------------------------------- /Demo/Demo/SecondViewController (1).h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/SecondViewController (1).h -------------------------------------------------------------------------------- /Demo/Demo/SecondViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/SecondViewController.h -------------------------------------------------------------------------------- /Demo/Demo/SecondViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/SecondViewController.m -------------------------------------------------------------------------------- /Demo/Demo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/ViewController.h -------------------------------------------------------------------------------- /Demo/Demo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/ViewController.m -------------------------------------------------------------------------------- /Demo/Demo/dark.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/dark.jpeg -------------------------------------------------------------------------------- /Demo/Demo/light.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/light.jpeg -------------------------------------------------------------------------------- /Demo/Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/main.m -------------------------------------------------------------------------------- /Demo/Demo/maps_icon (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/maps_icon (1).png -------------------------------------------------------------------------------- /Demo/Demo/maps_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/Demo/maps_icon.png -------------------------------------------------------------------------------- /Demo/DemoUITests/DemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/DemoUITests/DemoUITests.m -------------------------------------------------------------------------------- /Demo/DemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/Demo/DemoUITests/Info.plist -------------------------------------------------------------------------------- /FTIndicator.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator.podspec -------------------------------------------------------------------------------- /FTIndicator/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/.DS_Store -------------------------------------------------------------------------------- /FTIndicator/FTIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/FTIndicator.h -------------------------------------------------------------------------------- /FTIndicator/FTIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/FTIndicator.m -------------------------------------------------------------------------------- /FTIndicator/FTNotificationIndicator/FTNotificationIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/FTNotificationIndicator/FTNotificationIndicator.h -------------------------------------------------------------------------------- /FTIndicator/FTNotificationIndicator/FTNotificationIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/FTNotificationIndicator/FTNotificationIndicator.m -------------------------------------------------------------------------------- /FTIndicator/FTProgressIndicator/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/FTProgressIndicator/.DS_Store -------------------------------------------------------------------------------- /FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_failure.png -------------------------------------------------------------------------------- /FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_failure_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_failure_dark.png -------------------------------------------------------------------------------- /FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_info.png -------------------------------------------------------------------------------- /FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_info_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_info_dark.png -------------------------------------------------------------------------------- /FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_success.png -------------------------------------------------------------------------------- /FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_success_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/FTProgressIndicator/FTProgressIndicator.bundle/ft_success_dark.png -------------------------------------------------------------------------------- /FTIndicator/FTProgressIndicator/FTProgressIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/FTProgressIndicator/FTProgressIndicator.h -------------------------------------------------------------------------------- /FTIndicator/FTProgressIndicator/FTProgressIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/FTProgressIndicator/FTProgressIndicator.m -------------------------------------------------------------------------------- /FTIndicator/FTToastIndicator/FTToastIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/FTToastIndicator/FTToastIndicator.h -------------------------------------------------------------------------------- /FTIndicator/FTToastIndicator/FTToastIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTIndicator/FTToastIndicator/FTToastIndicator.m -------------------------------------------------------------------------------- /FTNotificationIndicator.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTNotificationIndicator.podspec -------------------------------------------------------------------------------- /FTProgressIndicator.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTProgressIndicator.podspec -------------------------------------------------------------------------------- /FTToastIndicator.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/FTToastIndicator.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liufengting/FTIndicator/HEAD/README.md --------------------------------------------------------------------------------