This is a loading in the bottom of navigation bar title area. This project is inspired by XHLoadingNavigationItemTitleView
- Support device rotation.
pod 'TCTitleLoading'
Add files in folder TCTitleLoading to your project.
##How To Get Started
- In your Appdelegate.m, import TCTitleLoadingManager and set custom color, you can skip this step if you want to use the default black color:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
//Set custom color for dots
[TCTitleLoadingManager setDotColor:[UIColor orangeColor]];
return YES;
}
2.Start the loading by calling method startAnimationTitle in your view controller:
[self startAnimationTitle];
3.Start the loading by calling method startAnimationTitle in your view controller:
[self stopAnimationTitle];
4.If you want to skip the title loading for some pages, just tell the manager:
[TCTitleLoadingManager SkipTitleLoadingForClass:[self class]];
This project is inspired by XHLoadingNavigationItemTitleView. The dot loading view is TYDotIndicatorView
Distributed under the MIT License.
If you wish to contact me, email at: [email protected]