在 Objective-c 中......我想代表占位符 char(%) 但我的代码没有......
NSString *base = @"<style type=\"test/css\">div{width:100\%}</style><body>%@</body>";
NSString *html = [NSString stringWithFormat:base, @"hello world"];
NSLog(@"%@",html);
- 期望:div {宽度:100%}
- 真实:div{宽度:100}
怎么了?