简单的Loding

2018-09-04  本文已影响3人  Rumbles
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
indicator.size = CGSizeMake(80, 80);
indicator.center = CGPointMake(self.view.width / 2, self.view.height / 2);
indicator.backgroundColor = [UIColor colorWithWhite:0.000 alpha:0.670];
indicator.clipsToBounds = YES;
indicator.layer.cornerRadius = 6;
[indicator startAnimating];
[self.view addSubview:indicator];
上一篇下一篇

猜你喜欢

热点阅读