Created
February 2, 2010 04:45
-
-
Save coneybeare/292388 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString*)identifier { | |
if (self = [super initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:identifier]) { | |
// Background Image | |
self.backgroundView = [[[UACellBackgroundView alloc] initWithFrame:CGRectZero] autorelease]; | |
} | |
return self; | |
} | |
- (void)setPosition:(UACellBackgroundViewPosition)newPosition { | |
[(UACellBackgroundView *)self.backgroundView setPosition:newPosition]; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment