我有 2 个包含字符串的独立 Plist NSMutableArrays。
第一个数组示例包含以下产品:
足球、羽毛球拍、网球、
第二个数组包含上述产品的数量:
12、5、17、
我想要实现的是将数量添加到产品名称的末尾,即如下所示:
足球数量:(12),羽毛球拍数量:(5),网球数量:(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]];
}