I want to create a custom progress view which progresses when user presses the button and stops when the button is released. A blank subview represents the background of the progress and i have a drawn a square that acts as a starting point. The blank view should get filled until the button is released.How do i keep filling the view until the button is released?
Here is my code:
CGContextRef context=UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, 2.0);
CGContextSetStrokeColorWithColor(context, [UIColor blueColor].CGColor);
CGRect square=CGRectMake(0, 0, 5, 9);
CGContextAddRect(context, square);
CGContextStrokePath(context);
CGContextSetFillColorWithColor(context, [UIColor blueColor].CGColor);
CGContextFillRect(context, square);
In the view controller's ViewDidLoad
SeekBar *seek=[[SeekBar alloc]initWithFrame:CGRectMake(0, 320, 320, 9)];
[self.view addSubview:seek];
I am a newbie in core graphics.Is this the correct approach?
Alright, here's some code that does the constant progress as you mentioned. What you really want to do is adjust the width of the fill based on the progress. Take a look at the
drawRect:
method for this.Also, you want to hook your SeekBar up to a button where when someone touches down the progress increases / starts, and when they let go of the button the progress stops. The method calls in
awakeFromNib:
should guide you.If you are still confused about this code I can post the sample project so you can build and observe the whole thing working together.
SeekBar.h
SeekBar.m