All Projects → phucnm → RoundCornerProgress

phucnm / RoundCornerProgress

Licence: MIT License
No description or website provided.

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to RoundCornerProgress

Circular-Progress-View
A customisable circular progress view for android.
Stars: ✭ 39 (+178.57%)
Mutual labels:  custom-view, progress-view
XCArcProgressView
Android开口圆环比例进度View(高仿猎豹清理大师内存占用比例View)
Stars: ✭ 28 (+100%)
Mutual labels:  custom-view, progress-view
flasto
A FLoating ASsistive TOuch library for android!
Stars: ✭ 15 (+7.14%)
Mutual labels:  custom-view
VideoProgressView
Moon brightness animation + volume animation. Suitable for playing video to adjust volume and brightness
Stars: ✭ 58 (+314.29%)
Mutual labels:  progress-view
double-avatar-view
Instagram-like double avatar view with cropping
Stars: ✭ 31 (+121.43%)
Mutual labels:  custom-view
SoundLine
An Android custom view which offers an audio timeline controller as the SoundCloud Sound Wave
Stars: ✭ 53 (+278.57%)
Mutual labels:  custom-view
GradientProgressView
一个简单的进度条控件
Stars: ✭ 15 (+7.14%)
Mutual labels:  progress-view
SkeletonPlaceholderView
A library for creating dynamic skeleton view
Stars: ✭ 25 (+78.57%)
Mutual labels:  custom-view
PlaceholderTextView
A custom TextView which shows placeholder lines given a sample text when it has no text set
Stars: ✭ 24 (+71.43%)
Mutual labels:  custom-view
ash
Simple iOS app using MVVM and Codable
Stars: ✭ 24 (+71.43%)
Mutual labels:  ibdesignable
HeartBeatView
Simple custom view of a beating heart using scaling animation.
Stars: ✭ 44 (+214.29%)
Mutual labels:  custom-view
N-SidedProgressBar
Progress Bar in the shape of regular polygon.
Stars: ✭ 69 (+392.86%)
Mutual labels:  progress-view
SocialOrbitLayout
Kotlin based custom view to show floating objects that can be used for social apps.
Stars: ✭ 28 (+100%)
Mutual labels:  custom-view
clearable-edittext
Simple custom view for clearable EditText.
Stars: ✭ 58 (+314.29%)
Mutual labels:  custom-view
MenuPopupView
一款仿iOS长按菜单弹窗的自定义控件
Stars: ✭ 26 (+85.71%)
Mutual labels:  custom-view
mCustomView
总结了博主这么多年所写的自定义view,以及自定义view的教程
Stars: ✭ 17 (+21.43%)
Mutual labels:  custom-view
Triangle
A (really) simple Swift 4 UIView class with a triangle and a diagonal line rendered and customizable in the storyboard (color, line width, direction)
Stars: ✭ 25 (+78.57%)
Mutual labels:  ibdesignable
un-material-tab
(deprecated) Custom tab layout which can be used as a material TabLayout alternative and contains basic functionality which Google's TabLayout has.
Stars: ✭ 83 (+492.86%)
Mutual labels:  custom-view
RxLoading
RxJava library for showing a loading (i.e. progress bar) state while waiting for async data with minimal effort and advanced options.
Stars: ✭ 49 (+250%)
Mutual labels:  custom-view
iiVisu
A player/ recorder visualizer with the swipe to seek functionality.
Stars: ✭ 112 (+700%)
Mutual labels:  custom-view

RoundCornerProgress

Build Status Carthage compatible

Install

CocoaPods

Add pod 'RoundCornerProgress' to your Podfile then pod install

Carthage

Add github "phucnm/RoundCornerProgress" to your Cartfile then carthage update

Usage

Using Storyboard / Interface Builder

  • Drag a UIView to Storyboard or Interface Builder, change its class to RoundCornerProgress
  • Customize your progress color in Attributes inspector tab

Manually

  • Import custom control by import RoundCornerProgress
  • Declare your property var progressView: RoundCornerProgressView!
  • Initialize your progress view and customize it
self.progressView = RoundCornerProgressView(frame: CGRect(x: 20, y: 20, width: 200, height: 20))
self.progressView.trackTintColor = UIColor.blue
self.progressView.progressTintColor = UIColor.cyan
self.progressView.trackRoundCorners = [.topRight, .bottomLeft]
self.progressView.progressRoundCorners = [.bottomRight]
view.addSubview(self.progressView)

Authors

Phuc Nguyen

License

RoundCornerProgress is available under the MIT license. See the LICENSE file for more info.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].