Skip to content

Instantly share code, notes, and snippets.

@cruffenach
Created July 13, 2011 17:41
Show Gist options
  • Save cruffenach/1080838 to your computer and use it in GitHub Desktop.
Save cruffenach/1080838 to your computer and use it in GitHub Desktop.
Post Name Setter Override
-(void)setPostName:(NSString *)newPostName {
NSString *rawName = [newPostName stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
if([rawName isEqualToString:@""]) {
rawName = @"Blog Post Temp Name";
}
[rawName retain];
[_postName release];
_postName = rawName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment