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