I'm developing a small iPad-app with a Ganttchart which will show Events in the last 25 hours. I have 5 zoom levels each for 1 hour, 30 min, 15 min, 5 min and 1 min. My cells are 30 pix in width. Starting with the hourly Zoomlevel i have 25 * 30 pixels = 750 width for the content (no need to scroll yet). When zooming the cell width keeps the same, there will just be more cells and I can scroll horizontally. It works perfect for the 30, 15 and 5 mins. When it comes to the 1 minute level (a width of 45000 pixels (30 * 1500), things start to go wrong. The scrollview freezes (I still can kind of scroll, but the display isn't updated).
The drawRect: has been run through (so it should have been drawn correctly). I can see a small scrollbar at the button (it even reaches the end). So I tried to wary the width and it seems that the problems starting at about 16300 pix width. Is there a work around for this? Or any kind of solution?
I use a ScrollView with an included uiview (Ganttchartview) which drawRect: I have overloaded.
zoom in where CELL_WIDTH is 30 and the zoomLevels are 25, 50, 75, 300, 1500
-(IBAction) zoomIn:(id)sender {
self.zoomIndex++;
int width = CELL_WIDTH * [[self.zoomLevels objectAtIndex: self.zoomIndex] intValue];
self.frame = CGRectMake(self.frame.origin.x, self.frame.origin.y, width, self.frame.size.height);
[self.parentView setContentSize: CGSizeMake(self.frame.size.width, self.frame.size.height)];
[self setNeedsDisplay];
}
drawRect where the lines are drawn
- (void)drawRect:(CGRect)rect {
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetStrokeColorWithColor(context, [UIColor blackColor].CGColor);
CGContextSetLineWidth(context, 2.0);
int interval = [[self.zoomLevels objectAtIndex: self.zoomIndex] intValue];
int width = CELL_WIDTH;
for (int i = 0; i < interval; i++) {
CGContextMoveToPoint(context, width * (i +1), START_AT);
CGContextAddLineToPoint(context, width * (i +1), rect.size.height);
CGContextStrokePath(context);
}
for (int i = 0; i < NUMBER_OF_ROWS; i++) {
CGContextMoveToPoint(context, 0, START_AT + i * CELL_WIDTH);
CGContextAddLineToPoint(context, rect.size.width, START_AT + i * CELL_WIDTH);
CGContextStrokePath(context);
}
}
