我有2個獨立的Plist NSMutableArrays包含字符串。appendString從iOS中的陣列到陣列
第一陣列的例子包含以下產品:
足球, 羽毛球拍, 網球,
第二陣列包含上述產品的量:
12, 5, 17,
我想要實現的是將數量添加到產品名稱的末尾,即如下所示:
足球QTY:(12), 羽毛球拍QTY:(5), 網球QTY:(17),
的NSMutableString *都是EmailString = [字符串的NSMutableString]。
for(int i = 0; i < [theProducts count]; i++) {
NSString *str = [theProducts objectAtIndex:i];
[emailString appendString:[NSString stringWithFormat:@"<br /> %@: QTY: %@", str, theQuantity]];
}
任何建議最好的方式來做到這一點將不勝感激。我已經看了追加字符串的方法和遍歷字符串添加到上述陣列中的字符串,但是我似乎無法得到這個:-(
感謝工作爲尋找
更新!
這對我的作品
NSMutableString *emailString = [NSMutableString string];
for(int i = 0; i < [theProducts count]; i++) {
NSString *result = [NSString stringWithFormat: @"<br /> %@ QTY: (%d)", [theProducts objectAtIndex: i], [[theQuantity objectAtIndex: i] intValue], nil];
[emailString appendString:[NSString stringWithFormat:@"%@", result]];
}
發佈您的代碼,請 –
Hi Kai對不起,我忘了添加代碼傻了我。任何方式你去。 theProducts和theQuantity是2 NSMutableArrays這是產生的產品名稱與整個數量數組添加到最後,即足球數量:(12,5,17),我需要它來打破在索引的數量,所以足球是12等等等等! –