为什么我的NSMutableString
潜在不安全感?我搜索了这个,但找不到任何东西。
int hour = [number intValue] / 3600;
NSMutableString *time = [[NSMutableString alloc] initWithString:@""];
if (hour < 9) {
[time appendFormat:@"0"];
[time appendFormat:[NSMutableString stringWithFormat:@"%d:", hour]];
}
它出什么问题了?这是我第一次看到这种情况。