XHLoadingNavigationItemTitleView版本0.1.0

XHLoadingNavigationItemTitleView版本0.1.0

测试已测试
Lang语言 Obj-CObjective C
许可证 MIT
发布时间最新发布2014年12月

未命名维护。



  • 作者
  • xhzengAIB

XHLoadingNavigationItemTitleView将标题转换为方法交换显示加载HUD。

非常容易添加到您的项目。

您可以将此功能添加到自己的项目中,`XHLoadingNavigationItemTitleView`易于使用。

要求

XHLoadingNavigationItemTitleView需要Xcode 5,针对iOS 5.0及以上版本,支持ARC。

配置文件

CocosPods是安装XHLoadingNavigationItemTitleView的推荐方法,只需将以下行添加到配置文件

pod 'XHLoadingNavigationItemTitleView', '~> 0.1.0'

如何使用

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";
}

感谢

itouch2创建的TYDotIndicatorView

许可证

XHLoadingNavigationItemTitleView在MIT许可证下提供。有关更多信息,请查看LICENSE文件。