Objective-C - 改变NSMutableArray的特定元素

Posted mfmdaoyou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Objective-C - 改变NSMutableArray的特定元素相关的知识,希望对你有一定的参考价值。

NSMutableArray改动元素, 使用-insertObject: atIndex: -replaceObjectAtIndex: withObject: 都能够, 即通过插入(insert)和替换(replace)能够实现.
演示样例:

// 降低button监听
- (void) onSubBtnPressed:(UIButton*) sender {
    NIDPRINTMETHODNAME();

    NSInteger times = [[_serviceNumList objectAtIndex:_servicePos] integerValue];
    if (times <= 1) {
        return;
    }
    times--; // 降低

    // 改变数组数据
    [_serviceNumList replaceObjectAtIndex:_servicePos withObject:[NSNumber numberWithInteger:times]];

    // 设置数据
    UITextField *mo = [_timesFieldArray objectAtIndex:_servicePos];

    NSAttributedString* timesText =[[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@"%ld", (long)[[_serviceNumList objectAtIndex:_servicePos] integerValue]]]; // 设置文字

    [mo setAttributedText:timesText];

    _totalPrice = (float)([_goodsList[_servicePos][@"Price"] floatValue]/100.0)*[[_serviceNumList objectAtIndex:_servicePos] integerValue];
    [_totalPriceLabel setText:[NSString stringWithFormat:@"%0.1f", _totalPrice]];
}

技术分享


以上是关于Objective-C - 改变NSMutableArray的特定元素的主要内容,如果未能解决你的问题,请参考以下文章

将 NSMutable 数组存储到 sqlite 数据库中

NsMutable 不是 swift 中 [anyobject] 的子类型

过滤自定义对象的 NSMutable 数组

如何将 NSString 值设置为 NSMutable 字典?

Objective-C:改变自身属性的递归方法

NSUserDefaults NSMutable 数组未在会话之间保存