- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
// create the scroll view
UIScrollView *scr = [[UIScrollView alloc] initWithFrame:self.bounds];
self.dayScroll = scr;
[scr release];
[self addSubview:self.dayScroll];
scr = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 1)];
self.allDayScroll = scr;
[scr release];
[self addSubview:self.allDayScroll];