iOS 视图 JTMaterialSpinner
- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/jonathantribouharet/JTMaterialSpinner
软件介绍
JTMaterialSpinner 是基于material design 的 iOS spinner 视图。
基本用法:
#import <UIKit/UIKit.h> #import <JTMaterialSpinner/JTMaterialSpinner.h> @interface ViewController : UIViewController @property (weak, nonatomic) IBOutlet JTMaterialSpinner *spinnerView; @end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Customize the line width
_spinnerView.circleLayer.lineWidth = 2.0;
// Change the color of the line
_spinnerView.circleLayer.strokeColor = [UIColor orangeColor].CGColor;
}
- (void)loadSomething
{
[_spinnerView beginRefreshing];
[MyService loadSomeData:^(){
[_spinnerView endRefreshing];
}];
}
Introduction to Algorithms, 3rd Edition
Thomas H. Cormen、Charles E. Leiserson、Ronald L. Rivest、Clifford Stein / The MIT Press / 2009-7-31 / USD 94.00
Some books on algorithms are rigorous but incomplete; others cover masses of material but lack rigor. Introduction to Algorithms uniquely combines rigor and comprehensiveness. The book covers a broad ......一起来看看 《Introduction to Algorithms, 3rd Edition》 这本书的介绍吧!
