xcode - how to write 100% in code
本问题已经有最佳答案,请猛点这里访问。
我有个问题,
1 | htmltext = [NSString stringWithFormat:@"<style>width:100%" |
百分比(%)有警告:转换说明符""无效
如何在obj c中写入百分比,这是我在webview上写的。
谢谢!
你应该使用
但是,如果您没有任何参数(如示例中所示),那么您应该只使用:
1 | htmltext = @"<style>width:100%"; |
试试这个——
1 | htmltext = [NSString stringWithFormat:@"<style>width:100%%"]; |
使用"%",该值将从%中溢出。