配列の内容を取得してuitextfieldに表示しようとしています。
これが私のコードです:
NSArray *arrayConditions = [[NSArray alloc] initWithObjects:[item objectForKey:@"conditions"], nil];
NSString * resultConditions = [arrayConditions description];
//conditionsDealはuitextfieldですself.conditionsDeal.text=resultConditions;
条件は次のようなURLから取得されます:
"results": [
{
"conditions": [
"Il coupon è valido per soggiorni fino al...",
"I coupon sono cumulabili, possibilità...",
"Coupon non cumulabile con altre promozioni...",
],
"deadline": "2013-11-27T22:59:59.000Z",
現在、私のuitextviewに表示されるのは次のとおりです。
(())括弧を削除して、きちんとフォーマットする必要があります。
助けてくれてありがとう