iOSはICUをボンネットの下で使用していると私は理解しています。私はiOS上のICUのMessageFormat
There {0,choice,0#are no files|1#is one file|1<are {0,number,integer} files}.
ないのiOSがこの機能を公開し、例えば、数字と複数形を含む文字列をICUのMessageFormatのの機能にアクセスしたいのですが?もしそうなら、私はどのように使用するのですか?私は
[NSString stringWithFormat: "There {0,choice,0#are no files|1#is one file|1<are {0,number,integer} files}.", n];
または
[NSString stringWithFormat: "There {0,plural, =0{are no files}=1{is one file}other{are %ld files}}.", n];
を書くことができるかもしれないと思った。しかし、これらのフォーマット(それぞれICU4JとICUは、)動作しません。
どこを見ましたか? – EmilioPelaez
私は具体的にどこを見ましたか? – user371320