服务器之家

服务器之家 > 正文

仅需几行代码实现方便易用的状态栏指示器

时间:2020-12-22 16:19     来源/作者:iOS开发网

我们在使用微博的时候经常会遇到状态指示器,想知道它是怎么做的吗?本篇文章就是通过几行代码实现方便易用的状态栏指示器。

微博项目的微博数提醒框

仅需几行代码实现方便易用的状态栏指示器

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** 提醒最新微博数量 */
- (void)shownewstatuscount:(nsinteger)count
{
  if (count) {
   [[xzmstatusbarhud sharedxzmstatusbarhud] shownormal:[nsstring stringwithformat:@"有%ld条新的微博" ,count] position:64 animadelay:0 configuration:^{
 
     /** 设置需要添加到哪个view上 */
     [xzmstatusbarhud sharedxzmstatusbarhud].formview = self.view;
   }];
  } else {
 
    [[xzmstatusbarhud sharedxzmstatusbarhud] shownormal:@"没有新的微博数据" position:64 animadelay:0 configuration:^{
 
      /** 设置需要添加到哪个view上 */
      [xzmstatusbarhud sharedxzmstatusbarhud].formview = self.view;
    }];
  }
}

加载成功 设置提醒框的背景颜色

 仅需几行代码实现方便易用的状态栏指示器

?
1
2
3
4
5
6
7
8
9
10
11
12
13
[[xzmstatusbarhud sharedxzmstatusbarhud] showsuccess:@"加载成功" position:0 animadelay:0 configuration:^() {
 
/** 设置透明度 */
[xzmstatusbarhud sharedxzmstatusbarhud].statusalpha = 0.7;
 
/** 设置提醒框的背景颜色 */
[xzmstatusbarhud sharedxzmstatusbarhud].statuscolor = [uicolor bluecolor];
 
}];
 
position:可设置状态栏的提醒款的位置 默认值为0
 
animadelay:可以设置动画的持续时间, 0代表默认值:1.0

正在加载中 并设置提醒框的背景颜色

仅需几行代码实现方便易用的状态栏指示器

?
1
2
3
4
5
6
7
8
9
[[xzmstatusbarhud sharedxzmstatusbarhud] showloading:@"正在加载中..." position:0 animadelay:0 configuration:^() {
 
    /** 设置提醒框的背景颜色 */
    [xzmstatusbarhud sharedxzmstatusbarhud].statuscolor = [uicolor redcolor];
  }];
 
position:可设置状态栏的提醒款的位置 默认值为0
 
animadelay:可以设置动画的持续时间, 0代表默认值:1.0

实现的效果是不是很有趣,以上就是实现状态指示器的对应代码,希望对大家的学习有所帮助。

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
电视剧《琉璃》全集在线观看 琉璃美人煞1-59集免费观看地址
电视剧《琉璃》全集在线观看 琉璃美人煞1-59集免费观看地址 2020-08-12
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
返回顶部