gpt4 book ai didi

ios - 如何更新 NSMutableArray 中的对象?

转载 作者:技术小花猫 更新时间:2023-10-29 10:40:30 26 4
gpt4 key购买 nike

我正在尝试更新 NSMutableArray 中的对象。

Product *message = (Product*)[notification object];
Product *prod = nil;

for(int i = 0; i < ProductList.count; i++)
{
prod = [ProductList objectAtIndex:i];
if([message.ProductNumber isEqualToString:prod.ProductNumber])
{
prod.Status = @"NotAvaiable";
prod.Quantity = 0;
[ProductList removeObjectAtIndex:i];
[ProductList insertObject:prod atIndex:i];
break;
}
}

有没有更好的方法来做到这一点?

最佳答案

删除行:

[ProductList removeObjectAtIndex:i];
[ProductList insertObject:prod atIndex:i];

那就没问题了!

关于ios - 如何更新 NSMutableArray 中的对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7239617/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com