码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-06-29 13:35:07      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:pen   ceo   function   keyword   idp   tle   orm   object   使用   

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的特定元素

标签:pen   ceo   function   keyword   idp   tle   orm   object   使用   

原文地址:http://www.cnblogs.com/mfmdaoyou/p/7093811.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!