I am writing a program in Xcode, but when I run it, I get a "Segmentation fault" error. Here is the method that keeps giving me the error. I don't have much experience with memory management or Objective-C, so help would be appreciated! 
Thanks!
Code:
-(NSString *)description
{
NSString *description=[[NSString alloc] init];
description=[NSString stringWithFormat:@"Hello! I am a %1.2f-sided (aka a %@) with angles of %1.2f (%1.2f radians)", numberOfSides, [self getName], [self getAngleInDegrees], [self getAngleInRadians]];
[description autorelease];
return description;
}
Thanks!
