数目字转字符串

数字转字符串NSString *newText [[NSString alloc] initWithFormat:@%d, number]numberLabel.text

数字转字符串

NSString *newText = [[NSString alloc] initWithFormat:@"%d", number];numberLabel.text = newText;[newText release];

?