自己做的一个 等待指示器

#import <UIKit/UIKit.h>

@interface RockIndicatorView : UIView

{

}

@property(nonatomic,strong) UIView * indBgView;

@property(nonatomic,strong) UIActivityIndicatorView * indView;

@property(nonatomic,strong) UILabel * textLabel;

+(void)showWihtParent:(UIView * )parentView;

+(void)dismiss;

@end

//////////////////////////////////////////////////////////////////////////////////////////////////////

//

//  RockIndicatorView.m

//  test_demo

//

//  Created by zhuang chaoxiao on 14-5-18.

//  Copyright (c) 2014年 zhuang chaoxiao. All rights reserved.

//

#import "RockIndicatorView.h"

@implementation RockIndicatorView

- (id)initWithFrame:(CGRect)frame

{

self = [super initWithFrame:frame];

if (self) {

// Initialization code

self.backgroundColor = [UIColorclearColor];

self.frame = [[UIScreen mainScreen] bounds];

self.userInteractionEnabled = NO;

}

returnself;

}

+(RockIndicatorView*)shareView

{

static RockIndicatorView * indView = nil;

staticdispatch_once_t  once;

dispatch_once(&once , ^(void){

indView = [[RockIndicatorViewalloc]initWithFrame:[[UIScreenmainScreen] bounds]];

});

return indView;

}

-(UILabel*)textLabel

{

if( _textLabel == nil )

{

CGRect rect = CGRectMake(0, 0, 50, 12);

_textLabel = [[UILabel alloc]initWithFrame:rect];

_textLabel.text = @"加载中...";

_textLabel.font = [UIFont systemFontOfSize:10];

_textLabel.textColor = [UIColor whiteColor];

[self.indBgViewaddSubview:_textLabel];

NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStylealloc]init];

paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping;

NSDictionary *attributes = @{NSFontAttributeName:[UIFontsystemFontOfSize:10], NSParagraphStyleAttributeName:paragraphStyle.copy};

CGSize labelSize = [_textLabel.textboundingRectWithSize:CGSizeMake(50,12) options:NSStringDrawingUsesLineFragmentOriginattributes:attributes context:nil].size;

labelSize.height = ceil(labelSize.height);

labelSize.width = ceil(labelSize.width);

_textLabel.frame = CGRectMake(0, 0, labelSize.width, labelSize.height);

_textLabel.center = CGPointMake(self.indBgView.frame.size.width/2, self.indBgView.frame.size.height/2+10);

}

return  _textLabel;

}

-(UIView *)indBgView

{

if( _indBgView == nil )

{

CGRect rect = CGRectMake(0, 0, 60, 60);

_indBgView = [[UIView alloc]initWithFrame:rect];

rect = [[UIScreen mainScreen] bounds];

_indBgView.backgroundColor = [UIColorblackColor];

_indBgView.center = CGPointMake(rect.origin.x + rect.size.width/2, rect.origin.y + rect.size.height/2);

_indBgView.userInteractionEnabled = NO;

_indBgView.alpha = 0;

_indBgView.layer.cornerRadius = 10.0f;

[self addSubview:_indBgView];

}

return_indBgView;

}

-(UIActivityIndicatorView*)indView

{

if( _indView == nil )

{

CGRect rect = CGRectMake(0, 0, 60, 60);

_indView = [[UIActivityIndicatorViewalloc]initWithFrame:rect];

_indView.center = CGPointMake(self.indBgView.frame.size.width/2, self.indBgView.frame.size.height/2 - 10);

[self.indBgViewaddSubview:_indView];

}

return_indView;

}

-(void)showAnimWithParent:(UIView*)parentView

{

[parentView addSubview:self];

[self.indViewstartAnimating];

if( self.textLabel ){}

dispatch_async(dispatch_get_main_queue(), ^(void)

{

[self.indView startAnimating];

[UIView animateWithDuration:1.0f animations:^(void)

{

self.indBgView.alpha = 1.0f;

}];

});

}

-(void)dismissFromParent

{

dispatch_async(dispatch_get_main_queue(), ^(void)

{

[UIView animateWithDuration:1.0f animations:^(void)

{

self.indBgView.alpha = 0.0f;

} completion:^(BOOL finished)

{

if( finished )

{

[self removeFromSuperview];

}

}];

});

}

+(void)showWihtParent:(UIView * )parentView

{

[[RockIndicatorViewshareView] showAnimWithParent:parentView];

}

+(void)dismiss

{

[[RockIndicatorViewshareView] dismissFromParent];

}

/*

// Only override drawRect: if you perform custom drawing.

// An empty implementation adversely affects performance during animation.

- (void)drawRect:(CGRect)rect

{

// Drawing code

}

*/

@end

IOS UIActivityIndicatorView 等待指示器的更多相关文章

  1. 使用开源库 MBProgressHUD 等待指示器

    source https://github.com/jdg/MBProgressHUD MBProgressHUD is an iOS drop-in class that displays a tr ...

  2. iOS UIActivityIndicatorView 的使用

    UIActivityIndicatorView 非常简单 ,就是一个转圈圈的控件:http://blog.csdn.net/zhaopenghhhhhh/article/details/1209265 ...

  3. UIActivityIndicatorView活动指示器

    活动指示器(UIActivityIndicatorView)可以告知用户有一个操作正在进行中.派生自UIView,所以他是视图,也可以附着在视图上. 一.创建 UIActivityIndicatorV ...

  4. iOS UIActivityIndicatorView

    UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle ...

  5. IOS UIActivityIndicatorView动画

    ● 是一个旋转进度轮,可以用来告知用户有一个操作正在进行中,一般 用initWithActivityIndicatorStyle初始化 ● 方法解析: ● - (void)startAnimating ...

  6. 转 UIActivityIndicatorView、UIProgressView 活动与进度指示器-IOS开发

    活动指示器(UIActivityIndicatorView)可以告知用户有一个操作正在进行中.进度指示器(UIProgressView )也具有同样功能,而且还可以告知用户离操作结束还多远. 这两个指 ...

  7. IOS开发之XCode学习014:警告对话框和等待提示器

    此文学习来源为:http://study.163.com/course/introduction/1002858003.htm 此工程文件实现功能:  1.警告对话框和等待提示器的概念 2.警告对话框 ...

  8. IOS开发UI基础UIActivityIndicatorView的属性

    UIActivityIndicatorView 1.activityIndicatorViewStyle设置指示器的样式UIActivityIndicatorViewStyleWhiteLarge U ...

  9. iOS - UI - UIActivityIndicatorView

    1.UIActivityIndicatorView HUD 指示器 UIActivityIndicatorView * indicatorView = [[UIActivityIndicatorVie ...

随机推荐

  1. HtmlAgilityPack 总结(一)

    一个解析html的C#类库HtmlAgilityPack, HtmlAgilityPack是一个基于.Net的.第三方免费开源的微型类库,主要用于在服务器端解析html文档(在B/S结构的程序中客户端 ...

  2. 李洪强iOS学习交流群-iOS大神群

    iOS学习大神群-群号:483959373

  3. untiy 插件工具: 游戏中 策划数据Excel 导出到项目中

    https://github.com/zhutaorun/Excel2Unity,这个项目是直接下载就可以用的, 其中原理和相关的解释 http://blog.csdn.net/neil3d/arti ...

  4. 【mongoDB运维篇②】备份与恢复(导入与导出)

    导入/导出可以操作的是本地的mongodb服务器,也可以是远程的服务器 所以,都有如下通用选项: -h host 主机 --port port 端口 -u username 用户名 -p passwd ...

  5. LR_问题_控制器不能使用定义的负载生成器

    问题描述 在controller 中设置了面向目标的方案后 执行提示 The target you defined cannot be reached.the LoadRunner Controlle ...

  6. java:访问权限

    访问权限四大类:权限从大->小 1.public:   公共权限 2.protected:  受保护权限 3.default: 包级别访问权限/默认权限 4.private:   私有权限 以p ...

  7. java:抽象类和抽象函数

    面向对象:先抽象后具体 抽象类也叫基类 抽象函数:只有函数的定义,没有函数体的函数, 语法:类必须定义为抽象类,才能调用抽象函数,抽象类里面可以没有抽象函数 abstract class Printe ...

  8. testNG小试牛刀

    testNG是一个测试框架,其灵感来自JUnit和NUnit的,但引入了一些新的功能,使其功能更强大,使用更方便. testNG是一个开源自动化测试框架:testNG表示下一代. testNG是类似于 ...

  9. WindowManager.LayoutParams.type属性

    type 的取值: 应用程序窗口.      public static final int FIRST_APPLICATION_WINDOW = 1; 所有程序窗口的“基地”窗口,其他应用程序窗口都 ...

  10. bzoj2790

    观察这道题,d(a,b) 就是先变成最大公约数然后再变成b 设g[x]表示x的质因数数目,不难得到d(a,b)=g[a/gcd(a,b)]+g[b/gcd(a,b)] 因为g[xy]=g[x]+g[y ...