GHGlossProgressView icon indicating copy to clipboard operation
GHGlossProgressView copied to clipboard

An iOS progress view with a neat gloss gradient.

GHGlossProgressView

GHGlossProgressView is a progress view for iOS, which comes with a gloss gradient and is based on Drawing gloss gradients in CoreGraphics.

How to use GHGlossProgressView

  • link against CoreGraphics.framework, #import "GHGlossProgressView.h" and create an instance
UIColor *tintColor = ...;
CGFloat progress = ...;
GHGlossProgressView *progressView = [[GHGlossProgressView alloc] initWithFrame: ...];
progressView.tintColor = tintColor;
progressView.progress = progress;

Screenshots