0

文字列で表示されたビューに以下の値を表示したい。

基準==============(

"Communication skills",
"Open to following directions",
"Prepared for your case",
"Ability to obtain resolution",
"Willingness to work the process"

)

Criteria は Web サービスからの文字列値です

4

4 に答える 4

2

あなたの文字列が

criteria=(
"Communication skills",
"Open to following directions",
"Prepared for your case",
"Ability to obtain resolution",
"Willingness to work the process"
)
then try like this,

 criteria=[criteria stringByReplacingOccurrencesOfString:@"\"" withString:@""];

 NSArray *resultArray=[criteria componentsSeparatedByString:@","];//String to Atrray
于 2013-05-27T11:31:58.010 に答える