如何在UITableview中替换NSMutableArray节对象?

时间:2017-09-24 07:17:53

标签: ios objective-c uitableview nsmutablearray

以下是我的NSMutableArray回复

(
    (
    0,
    1,
    1,
    0,
    0,
    0
),
    (
    0,
    0,
    0
)
)

这是我的代码,这里我需要替换对象

[CoutReplace[indexPath.section] replaceObjectAtIndex:indexPath.row withObject:@"1"];

当我使用此代码时,它崩溃了。 贝娄是我的崩溃报告。

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSArrayI replaceObjectAtIndex:withObject:]: unrecognized selector sent to instance 0x600000e6fe40'

这里“CoutReplace”是NSMutableArray。

0 个答案:

没有答案