欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

iOS啟動(dòng)頁倒計(jì)時(shí)跳過按鈕功能

 更新時(shí)間:2017年07月04日 08:40:52   作者:-此夜微涼  
這篇文章主要介紹了iOS啟動(dòng)頁倒計(jì)時(shí)跳過按鈕功能,需要的朋友可以參考下

WSDrawCircleProgress, 根據(jù)UIBezierPath和CAShapeLayer自定義倒計(jì)時(shí)進(jìn)度條,適用于app啟動(dòng)的時(shí)候設(shè)置一個(gè)倒計(jì)時(shí)關(guān)閉啟動(dòng)頁面??梢栽O(shè)置進(jìn)度條顏色,填充顏色,進(jìn)度條寬度以及點(diǎn)擊事件等。

Mou icon

公共方法:

//set track color 
@property (nonatomic,strong)UIColor *trackColor; 
//set progress color 
@property (nonatomic,strong)UIColor *progressColor; 
//set track background color 
@property (nonatomic,strong)UIColor *fillColor; 
//set progress line width 
@property (nonatomic,assign)CGFloat lineWidth; 
//set progress duration 
@property (nonatomic,assign)CGFloat animationDuration; 
/** 
 * set complete callback 
 * 
 * @param lineWidth line width 
 * @param block  block 
 * @param duration time 
 */ 
- (void)startAnimationDuration:(CGFloat)duration withBlock:(DrawCircleProgressBlock )block; 

使用:

- (void)viewDidLoad { 
 [super viewDidLoad]; 
 [self.view addSubview:self.imageView]; 
 DrawCircleProgressButton *drawCircleView = [[DrawCircleProgressButton alloc]initWithFrame:CGRectMake(self.view.frame.size.width - 55, 30, 40, 40)]; 
 drawCircleView.lineWidth = 2; 
 [drawCircleView setTitle:@"跳過" forState:UIControlStateNormal]; 
 [drawCircleView setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; 
 drawCircleView.titleLabel.font = [UIFont systemFontOfSize:14]; 
 [drawCircleView addTarget:self action:@selector(removeProgress) forControlEvents:UIControlEventTouchUpInside]; 
 /** 
  * progress 完成時(shí)候的回調(diào) 
  */ 
 __weak ViewController *weakSelf = self; 
 [drawCircleView startAnimationDuration:5 withBlock:^{ 
  [weakSelf removeProgress]; 
 }]; 
 [self.view addSubview:drawCircleView]; 
} 

相關(guān)文章

  • iOS Swift開發(fā)之日歷插件開發(fā)示例

    iOS Swift開發(fā)之日歷插件開發(fā)示例

    本篇文章主要介紹了iOS Swift開發(fā)之日歷插件開發(fā)示例,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2017-08-08
  • IOS UI學(xué)習(xí)教程之使用UIImageView控件制作動(dòng)畫

    IOS UI學(xué)習(xí)教程之使用UIImageView控件制作動(dòng)畫

    這篇文章主要為大家詳細(xì)介紹了IOS UI學(xué)習(xí)教程之使用UIImageView控件制作動(dòng)畫,感興趣的小伙伴們可以參考一下
    2016-03-03
  • iOS實(shí)現(xiàn)懸浮按鈕

    iOS實(shí)現(xiàn)懸浮按鈕

    這篇文章主要為大家詳細(xì)介紹了iOS實(shí)現(xiàn)懸浮按鈕,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2021-01-01
  • 最新評(píng)論