xcode - 如何在代码中写出 100%

xcode - how to write 100% in code

我有一个问题,

htmltext = [NSString stringWithFormat:@"<style>width:100%"

和百分比 (%) 有一个警告:无效的转换说明符 '"'

我们如何在 obj c 中写百分比,这是我在 webview 上写的。

谢谢!

试试这个 -

htmltext = [NSString stringWithFormat:@"<style>width:100%%"];

使用 %% 转义 %.

您应该使用 %% 转义 %

但是,如果您没有任何参数(如您的示例所示),那么您应该只使用:

htmltext = @"<style>width:100%";