Skip to content

Commit

Permalink
Fixed a few bugs that popped up due to the last commit. Updated the d…
Browse files Browse the repository at this point in the history
…emo and updated the EGOCache commit point
  • Loading branch information
shnhrrsn committed Apr 30, 2011
1 parent a6a340c commit 9979ec3
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 730 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ build
*.mode1v3
*.pbxuser
*.DS_Store
*.xcworkspace
xcuserdata
4 changes: 3 additions & 1 deletion Demo/Classes/ExampleCell.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@

#import "ExampleCell.h"
#import "EGOImageView.h"
#import <QuartzCore/QuartzCore.h>

@implementation ExampleCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])) {
imageView = [[EGOImageView alloc] initWithPlaceholderImage:[UIImage imageNamed:@"placeholder.png"]];
imageView.frame = CGRectMake(4.0f, 4.0f, 36.0f, 36.0f);
[self.contentView addSubview:imageView];
Expand All @@ -32,6 +33,7 @@ - (void)willMoveToSuperview:(UIView *)newSuperview {
[imageView cancelImageLoad];
}
}

- (void)dealloc {
[imageView release];
[super dealloc];
Expand Down
121 changes: 0 additions & 121 deletions Demo/Classes/Reachability.h

This file was deleted.

Loading

0 comments on commit 9979ec3

Please sign in to comment.