- July 11, 2025
- Mins Read
DACircularProgress
is a UIView
subclass with circular UIProgressView
properties.
It was originally built to be an imitation of Facebook’s photo progress indicator.
View the included example project for a demonstration.
To use DACircularProgress
:
DACircularProgress
folder to your project folder.<QuartzCore.framework>
.#import "DACircularProgressView.h"
self.progressView = [[DACircularProgressView alloc] initWithFrame:CGRectMake(140.0f, 30.0f, 40.0f, 40.0f)];
self.progressView.roundedCorners = YES;
self.progressView.trackTintColor = [UIColor clearColor];
[self.view addSubview:self.progressView];
UIView
element and setting its class to DACircularProgress
iOS5.0+
DACircularProgress
was made with ARC enabled by default.
A SwiftUI View that emits confetti with user-defined shapes, images, and text.
A colour wheel made all in SwiftUI. There are 2 different colour wheels to choose from. The first main one ...
A color picker implementation with color wheel appearance written in plain SwiftUI. It is compatible with UIColor and NSColor.
This repository is no longer maintained. Here's why: with the release of iOS 16 SwiftUI now enables most of the ...