This aniamtion is loading success animation
you just need set the corner, background color,then layoutIfNeeded
self.loadingView.layer.cornerRadius = CGRectGetWidth(self.loadingView.frame)/2;
self.loadingView.layer.masksToBounds = YES;
self.loadingView.layer.backgroundColor = [UIColor colorWithRed:255/255.0 green:80/255.0 blue:80/255.0 alpha:1].CGColor;
[self.loadingView layoutIfNeeded];