Created
June 29, 2010 22:33
-
-
Save meelash/457928 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)initWithCoder:(CPCoder)aCoder | |
| { | |
| self = [super initWithCoder:aCoder]; | |
| if (self) | |
| { | |
| enclosingBox = [aCoder decodeObjectForKey:@"enclosingBox"]; | |
| [enclosingBox setBorderType:CPBezelBorder]; | |
| [enclosingBox setFillColor:[CPColor clearColor]]; | |
| argumentTitleView = [aCoder decodeObjectForKey:@"argumentTitleView"]; debugger; | |
| argumentSummaryView = [aCoder decodeObjectForKey:@"argumentSummaryView"]; | |
| replyArgumentButton = [aCoder decodeObjectForKey:@"replyArgumentButton"]; | |
| } | |
| return self; | |
| } | |
| - (void)encodeWithCoder:(CPCoder)aCoder | |
| { | |
| [super encodeWithCoder:aCoder]; | |
| [aCoder encodeObject:enclosingBox forKey:@"enclosingBox"]; | |
| [aCoder encodeObject:argumentTitleView forKey:@"argumentTitleView"];debugger; | |
| [aCoder encodeObject:argumentSummaryView forKey:@"argumentSummaryView"]; | |
| [aCoder encodeObject:replyArgumentButton forKey:@"replyArgumentButton"]; | |
| } | |
| @end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment