我有一个 Array ,如果我在控制台中打印它会显示
Price Array=(
"$100",
"$300"
)
我需要在每个索引处添加添加对象并将其显示在标签中。请提出任何想法,在这种情况下,它将如何显示带有 $ 符号的 400? 我试过这个,因为确实加载了
for (int j=0; j<[cartArray2 count]; j++)
{
itemPrize =[prizelabel.text floatValue];
tempVar=itemPrize;
total=total+tempVar;
NSString *strTotalAmt = [NSString stringWithFormat:@"%f",total];
prizelabel.text=strTotalAmt;
}
NSLog( @"Toatl= %f",total);`
在接口浮动 itemPrize,tempVar,total 中的位置
这就是我所做的
for (int j=0; j<[cartArray2 count]; j++)
{
NSMutableString *cleanedText = [NSMutableString stringWithCapacity:0];
NSString *newRecord = [[cartArray2 objectAtIndex:j] stringByReplacingOccurrencesOfString:@"$" withString:@"" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [[cartArray2 objectAtIndex:j] length])];
[cleanedText appendFormat:@"%@\n", newRecord];
NSLog(@"Cleaned=%@", cleanedText);
itemPrize =[cleanedText intValue];
tempVar=itemPrize;
total=total+tempVar;
NSString *strTotalAmt = [NSString stringWithFormat:@"%d",total];
prizelabel.text=strTotalAmt;
}
NSLog( @"Toatl= %d",total);