博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IOS 风火轮、菊花、loading使用
阅读量:6307 次
发布时间:2019-06-22

本文共 1239 字,大约阅读时间需要 4 分钟。

UIActivityIndicatorView *indicator = nil;    indicator = (UIActivityIndicatorView *)[self.view viewWithTag:103];        if (indicator == nil) {                //初始化:        UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(0, 0, 80, 80)];                indicator.tag = 103;                //设置显示样式,见UIActivityIndicatorViewStyle的定义        indicator.activityIndicatorViewStyle = UIActivityIndicatorViewStyleWhiteLarge;                        //设置背景色        indicator.backgroundColor = [UIColor blackColor];                //设置背景透明        indicator.alpha = 0.5;                //设置背景为圆角矩形        indicator.layer.cornerRadius = 6;        indicator.layer.masksToBounds = YES;        //设置显示位置        [indicator setCenter:CGPointMake(self.view.frame.size.width / 2.0, self.view.frame.size.height / 2.0)];                //开始显示Loading动画        [indicator startAnimating];                [self.view addSubview:indicator];                [indicator release];    }    //开始显示Loading动画    [indicator startAnimating];
// 停止动画
 

    UIActivityIndicatorView *indicator = (UIActivityIndicatorView *)[self.view viewWithTag:103];

    //停止显示Loading动画

    [indicator stopAnimating];

转载于:https://my.oschina.net/wangdk/blog/152730

你可能感兴趣的文章
centos 5.5 64 php imagick 模块错误处理记录
查看>>
apache中文url日志分析--php十六进制字符串转换
查看>>
Ansible--playbook介绍
查看>>
浅谈代理
查看>>
php创建桌面快捷方式实现方法
查看>>
基于jquery实现的超酷动画源码
查看>>
fl包下的TransitionManager的使用
查看>>
Factorialize a Number
查看>>
[USB-Blaster] Error (209040): Can't access JTAG chain
查看>>
TreeSet的用法
查看>>
防HTTP慢速攻击的nginx安全配置
查看>>
深入理解PHP内核(十四)类的成员变量及方法
查看>>
Spring Boot2.0+中,自定义配置类扩展springMVC的功能
查看>>
参与博客编辑器改版,我的礼物 感谢51cto
查看>>
JavaWeb笔记——JSTL标签
查看>>
Eclipse插件大全 挑选最牛的TOP30
查看>>
一些实用性的总结与纠正
查看>>
Kubernetes概念
查看>>
逻辑卷管理器(LVM)
查看>>
一个小代码,欢迎大佬的意见,求指正
查看>>