- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- (void)dealloc {
LandscapeNote *tempCell;
for (NSInteger i = 0; i < [_scrollView.subviews count]; i++) {
tempCell = [_scrollView.subviews objectAtIndex:i];
[tempCell removeFromSuperview];
}
[notesArray release];
[self viewDidUnload];
[super dealloc];
}