文字列で表示されたビューに以下の値を表示したい。
基準==============(
"Communication skills",
"Open to following directions",
"Prepared for your case",
"Ability to obtain resolution",
"Willingness to work the process"
)
Criteria は Web サービスからの文字列値です
文字列で表示されたビューに以下の値を表示したい。
基準==============(
"Communication skills",
"Open to following directions",
"Prepared for your case",
"Ability to obtain resolution",
"Willingness to work the process"
)
Criteria は Web サービスからの文字列値です
あなたの文字列が
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