项目介绍:
XLsn0wLoadView.zip
(1.32 MB, 下载次数: 498)
2017-1-4 16:33 上传
点击文件名下载附件
在你的Podfile添加 pod XLsn0w’库 然后pod install
platform :ios, ‘8.0’
target ‘XLsn0wLoadView’ do
pod ‘XLsn0w’
end
if(!_loadingView) {
_loadingView = [[XLsn0wLoadView alloc] initWithXLsn0wLoadViewStyle:XLsn0wLoadViewStyleSqureClockWise];
[self.view addSubview:_loadingView];
[_loadingView mas_makeConstraints:^(MASConstraintMaker *make) {
make.width.height.mas_equalTo(14);
make.centerX.mas_equalTo(self.view.mas_centerX);
make.centerY.mas_equalTo(self.view.mas_centerY);
}];
[self.loadingView startSquareClcokwiseAnimation];
// [self.loadingView stopSquareClockwiseAnimation]; //关闭动画
}