modded scinsta with additional features and fixes for recent instagram version

This commit is contained in:
faroukbmiled
2026-03-28 23:57:15 +01:00
commit 3d133ac333
105 changed files with 11916 additions and 0 deletions
@@ -0,0 +1,42 @@
//
// JGProgressHUDImageIndicatorView.m
// JGProgressHUD
//
// Created by Jonas Gessner on 05.08.15.
// Copyright (c) 2015 Jonas Gessner. All rights reserved.
//
#import "JGProgressHUDImageIndicatorView.h"
@implementation JGProgressHUDImageIndicatorView {
BOOL _customizedTintColor;
}
- (instancetype)initWithImage:(UIImage *)image {
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
self = [super initWithContentView:imageView];
return self;
}
- (void)setUpForHUDStyle:(JGProgressHUDStyle)style vibrancyEnabled:(BOOL)vibrancyEnabled {
[super setUpForHUDStyle:style vibrancyEnabled:vibrancyEnabled];
if (!_customizedTintColor) {
if (style == JGProgressHUDStyleDark) {
self.tintColor = [UIColor whiteColor];
}
else {
self.tintColor = [UIColor blackColor];
}
_customizedTintColor = NO;
}
}
- (void)setTintColor:(UIColor *)tintColor {
[super setTintColor:tintColor];
_customizedTintColor = YES;
}
@end