Migrate sample project to ARC

Conflicts:

	ExampleProject/Example.xcodeproj/project.pbxproj
This commit is contained in:
Justin Spahr-Summers
2011-11-12 17:47:47 -08:00
parent 068ec9c502
commit 9ff48ddd31
8 changed files with 7 additions and 43 deletions
@@ -31,16 +31,10 @@
TUIImageView *imageView = [[TUIImageView alloc] initWithImage:[TUIImage imageNamed:@"large-image.jpeg"]];
[_scrollView addSubview:imageView];
[_scrollView setContentSize:imageView.frame.size];
[imageView release];
}
return self;
}
- (void)dealloc
{
[_scrollView release];
[super dealloc];
}
@end