CircularProgressTimer
Circular Progress Timer control for iOS in Objective-C
Install / Use
/learn @macuenca/CircularProgressTimerREADME
CircularProgressTimer
Circular Progress Timer working demo in Objective-C for iOS 6+
This is my take on a control that is getting too mainstream :) Is a snippet of what I used on the Madrid Bus App:

The project uses Interface Builder only for the main View Controller, but the circular progress view is built programatically.
No extra frameworks needed, just UIKit.
- Copy and paste CircularProgressBarView header and implementation files into your project. Don't forget the
circle.pngandcircle@2x.pngfiles. - Kick-off a timer with a one second interval whose action points to the progress bar drawing method. You can see the full example in MainViewController.m:
timer = [NSTimer scheduledTimerWithTimeInterval:1.0
target:self
selector:@selector(updateCircularProgressBar)
userInfo:nil
repeats:YES];
- In the updateCircularProgressBar method, just call the drawing function passing the total amount of seconds left. Show the remaining amount of time in minutes and seconds is a simple operation:
minutesLeft = globalTimer / 60;
secondsLeft = globalTimer % 60;
[self drawCircularProgressBarWithMinutesLeft:minutesLeft secondsLeft:secondsLeft]
Related Skills
node-connect
347.2kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
108.0kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
347.2kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
347.2kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
Security Score
Audited on Aug 18, 2017
