Skip to content

Latest commit

 

History

History
69 lines (40 loc) · 1.73 KB

File metadata and controls

69 lines (40 loc) · 1.73 KB

image

=============================== XHLoadingNavigationItemTitleView is show title conver to method swizzling display loading HUD.

Easy to drop into your project.

You can add this feature to your own project, XHLoadingNavigationItemTitleView is easy-to-use.

Requirements

XHLoadingNavigationItemTitleView requires Xcode 5, targeting either iOS 5.0 and above, ARC-enabled.

Profile

CocosPods is the recommended methods of installation XHLoadingNavigationItemTitleView, just add the following line to Profile:

pod 'XHLoadingNavigationItemTitleView', '~> 0.1.0'

How to use

1. import "UIViewController+XHLoadingNavigationItemTitleView.h" to your Controller header        


2. set the Controller title in viewDidLoad method, like normal setter.       


3. you can call startAnimationTitle display loading HUD for loadDatasource.         


4. you can call stopAnimationTitle hide loading HUD for Done loadDataSource.         


Finally look the code:

- (void)loadDataSource {
    [self startAnimationTitle];
}

- (void)doneLoadDataSource {
    [self stopAnimationTitle];
}

- (void)viewDidAppear:(BOOL)animated {
    [super viewDidAppear:animated];
    [self loadDataSource];
    [self performSelector:@selector(doneLoadDataSource) withObject:nil afterDelay:3];
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.title = @"Detail";
}

Thanke you

TYDotIndicatorView created by itouch2

Lincense

XHLoadingNavigationItemTitleView is available under the MIT license. See the LICENSE file for more info.