【代码笔记】iOS-自定义loading(IanAlert)
一,效果图。

二,工程图。

三,代码。
ViewController.h

#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
{
//loading
UIView *backViewLoad;
}
@end
ViewController.m

#import "ViewController.h"
//loading
#import "IanAlert.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
//loading
[self addLoadingView];
}
//点击任何处显示loading
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
//loading
backViewLoad.hidden=NO;
[IanAlert showloading];
[self performSelector:@selector(loadStop) withObject:nil afterDelay:2.0];
}
//停止loading
-(void)loadStop
{
backViewLoad.hidden=YES;
[IanAlert hideLoading];
}
#pragma -mark --loading------
-(void)addLoadingView
{
backViewLoad=[[UIView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
backViewLoad.backgroundColor=[UIColor blackColor];
backViewLoad.alpha=0.8;
backViewLoad.hidden=YES;
[self.view addSubview:backViewLoad];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
相关推荐
杉林的HelloWord 2013-09-13
mjx00 2017-08-09
icewizardry 2016-12-20
87433764 2017-09-28
dykun 2019-07-01
81427605 2019-06-28
87443561 2017-09-28
87453169 2017-04-18
icewizardry 2016-12-20
momode 2019-06-27
88261841 2015-06-20
aganliang 2014-05-15
MegatronKings 2014-03-19
卧斋 2013-09-13
publicTIM 2013-06-18
Haoroid 2013-01-23
Chydar 2013-01-17
nicepainkiller 2019-06-20