【代码笔记】iOS-JQIndicatorViewDemo_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 【代码笔记】iOS-JQIndicatorViewDemo

【代码笔记】iOS-JQIndicatorViewDemo

 2017/12/4 10:00:55  陈沐夕  程序员俱乐部  我要评论(0)
  • 摘要:一,效果图。二,工程图。三,代码。#import"ViewController.h"#import"JQIndicatorView.h"@interfaceViewController()@end@implementationViewController-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview,typicallyfromanib
  • 标签:笔记 view iOS 代码

一,效果图。

 

二,工程图。

三,代码。

class="cnblogs_code_copy" style="font-size: 18px">复制代码
#import "ViewController.h"
#import "JQIndicatorView.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    JQIndicatorView *indicator = [[JQIndicatorView alloc] initWithType:2 tintColor:[UIColor redColor]];
    indicator.center = self.view.center;
    [self.view addSubview:indicator];
    [indicator startAnimating];

}
复制代码
上一篇: 中国手机品牌OPPO、小米、vivo、华为东南亚高歌猛进 下一篇: 没有下一篇了!
发表评论
用户名: 匿名