0

在 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}

怎么了?

4

1 回答 1

4

试试这个:

NSString *base = @"<style type=\"test/css\">div{width:100%%}</style><body>%@</body>";

格式说明符的完整列表在这里

于 2009-12-07T17:52:29.723 回答