爲什麼我的NSMutableString
潛在不安全?我搜索了這個,但找不到任何東西。爲什麼我的NSSMutableString可能不安全?
int hour = [number intValue]/3600;
NSMutableString *time = [[NSMutableString alloc] initWithString:@""];
if (hour < 9) {
[time appendFormat:@"0"];
[time appendFormat:[NSMutableString stringWithFormat:@"%d:", hour]];
}
它有什麼問題?這是我第一次看到這個。
我不確定你在問什麼。如果你解釋爲什麼你認爲這個字符串「可能不安全」,這將有所幫助。 – Jonah
可能的重複[爲什麼我的字符串可能不安全在我的iOS應用程序?](http://stackoverflow.com/questions/9961363/why-is-my-string-potentially-unsecure-in-my-ios-application) –
也類似於:http://stackoverflow.com/questions/5428325/issue-with-code-format-string-is-not-a-string-literal – woz