mirror of
https://github.com/faroukbmiled/RyukGram.git
synced 2026-08-11 13:40:28 +02:00
modded scinsta with additional features and fixes for recent instagram version
This commit is contained in:
@@ -0,0 +1,63 @@
|
||||
//
|
||||
// JGProgressHUDIndeterminateIndicatorView.m
|
||||
// JGProgressHUD
|
||||
//
|
||||
// Created by Jonas Gessner on 19.07.14.
|
||||
// Copyright (c) 2014 Jonas Gessner. All rights reserved.
|
||||
//
|
||||
|
||||
#import "JGProgressHUDIndeterminateIndicatorView.h"
|
||||
|
||||
#ifndef __IPHONE_13_0
|
||||
#define __IPHONE_13_0 130000
|
||||
#endif
|
||||
|
||||
@implementation JGProgressHUDIndeterminateIndicatorView
|
||||
|
||||
- (instancetype)init {
|
||||
UIActivityIndicatorView *activityIndicatorView;
|
||||
|
||||
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_13_0
|
||||
if (@available(iOS 13, tvOS 13, *)) {
|
||||
activityIndicatorView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleLarge];
|
||||
}
|
||||
else {
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
||||
activityIndicatorView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
|
||||
#pragma clang diagnostic pop
|
||||
}
|
||||
#else
|
||||
activityIndicatorView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
|
||||
#endif
|
||||
|
||||
[activityIndicatorView startAnimating];
|
||||
|
||||
self = [super initWithContentView:activityIndicatorView];
|
||||
return self;
|
||||
}
|
||||
|
||||
- (instancetype)initWithHUDStyle:(JGProgressHUDStyle)style {
|
||||
return [self init];
|
||||
}
|
||||
|
||||
- (void)setUpForHUDStyle:(JGProgressHUDStyle)style vibrancyEnabled:(BOOL)vibrancyEnabled {
|
||||
[super setUpForHUDStyle:style vibrancyEnabled:vibrancyEnabled];
|
||||
|
||||
if (style != JGProgressHUDStyleDark) {
|
||||
self.color = [UIColor blackColor];
|
||||
}
|
||||
else {
|
||||
self.color = [UIColor whiteColor];
|
||||
}
|
||||
}
|
||||
|
||||
- (void)setColor:(UIColor *)color {
|
||||
[(UIActivityIndicatorView *)self.contentView setColor:color];
|
||||
}
|
||||
|
||||
- (void)updateAccessibility {
|
||||
self.accessibilityLabel = NSLocalizedString(@"Indeterminate progress",);
|
||||
}
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user