Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例:2.3666%そして私は使用しています。しかし、機能していません。
float n = 2.3666; NSLog(@"%f%",n);
パーセント記号を使用してエスケープする必要があります%%
%%
float n = 2.3666; NSLog(@"%f%%",n);
エスケープ%:
%
NSLog(@"%f%%",n);
%%を使用して、NString NSLogの%文字をエスケープします