测试已测试 | ✗ |
Lang语言 | Obj-CObjective C |
许可证 | MIT |
发布时间最新发布 | 2014年12月 |
由未命名维护。
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文件。