mirror of
https://github.com/faroukbmiled/RyukGram.git
synced 2026-04-23 20:56:17 +02:00
57 lines
1.3 KiB
Objective-C
Executable File
57 lines
1.3 KiB
Objective-C
Executable File
//
|
|
// JGProgressHUDFadeAnimation.m
|
|
// JGProgressHUD
|
|
//
|
|
// Created by Jonas Gessner on 20.7.14.
|
|
// Copyright (c) 2014 Jonas Gessner. All rights reserved.
|
|
//
|
|
|
|
#import "JGProgressHUDFadeAnimation.h"
|
|
#import "JGProgressHUD.h"
|
|
|
|
@implementation JGProgressHUDFadeAnimation
|
|
|
|
#pragma mark - Initializers
|
|
|
|
- (instancetype)init {
|
|
self = [super init];
|
|
if (self) {
|
|
self.duration = 0.4;
|
|
self.animationOptions = UIViewAnimationOptionCurveEaseInOut;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)setAnimationOptions:(UIViewAnimationOptions)animationOptions {
|
|
_animationOptions = (animationOptions | UIViewAnimationOptionBeginFromCurrentState);
|
|
}
|
|
|
|
#pragma mark - Showing
|
|
|
|
- (void)show {
|
|
[super show];
|
|
|
|
self.progressHUD.alpha = 0.0;
|
|
self.progressHUD.hidden = NO;
|
|
|
|
[UIView animateWithDuration:self.duration delay:0.0 options:self.animationOptions animations:^{
|
|
self.progressHUD.alpha = 1.0;
|
|
} completion:^(BOOL __unused finished) {
|
|
[self animationFinished];
|
|
}];
|
|
}
|
|
|
|
#pragma mark - Hiding
|
|
|
|
- (void)hide {
|
|
[super hide];
|
|
|
|
[UIView animateWithDuration:self.duration delay:0.0 options:self.animationOptions animations:^{
|
|
self.progressHUD.alpha = 0.0;
|
|
} completion:^(BOOL __unused finished) {
|
|
[self animationFinished];
|
|
}];
|
|
}
|
|
|
|
@end
|