标签: objective-c nsstring nslog
我需要一些响应,例如100 %,但无法在数字后打印%,因为它附带警告incomplete Identifier。
100 %
incomplete Identifier
我尝试过搜索解决方案,使用\%,'%'但没有帮助。
答案 0 :(得分:3)
使用其他%字符转义特殊%字符:
%
@"%2.0f%%"
答案 1 :(得分:2)
文字%的格式说明符为%%。
%%