Files
RyukGram/modules/JGProgressHUD/JGProgressHUDPieIndicatorView.h

36 lines
1.0 KiB
Objective-C

//
// JGProgressHUDPieIndicatorView.h
// JGProgressHUD
//
// Created by Jonas Gessner on 19.07.14.
// Copyright (c) 2014 Jonas Gessner. All rights reserved.
//
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header"
#import "JGProgressHUDIndicatorView.h"
#pragma clang diagnostic pop
/**
A pie shaped determinate progress indicator.
*/
@interface JGProgressHUDPieIndicatorView : JGProgressHUDIndicatorView
/**
Tint color of the Pie.
@attention Custom values need to be set after assigning the indicator view to @c JGProgressHUD's @c indicatorView property.
@b Default: White for JGProgressHUDStyleDark, otherwise black.
*/
@property (nonatomic, strong, nonnull) UIColor *color;
/**
The background fill color inside the pie.
@attention Custom values need to be set after assigning the indicator view to @c JGProgressHUD's @c indicatorView property.
@b Default: Dark gray for JGProgressHUDStyleDark, otherwise light gray.
*/
@property (nonatomic, strong, nonnull) UIColor *fillColor;
@end