Re: NSAttributedString and bindings
Re: NSAttributedString and bindings
- Subject: Re: NSAttributedString and bindings
- From: Matt Baker <email@hidden>
- Date: Sat, 05 Jun 2004 22:10:36 -0500
To add to the problem:
I mistyped the code in my example (its right in my project)... heres the
actual code snippet:
@implementation LinerAd
-(NSAttributedString *)adText { return _adText; }
-(void)setAdText:(NSAttributedString *)adText
{
[_adText autorelease];
_adText = [adText retain];
}
-(NSString *)strAdText
{
return [_adText string];
}
@end
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.