Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将字符串存储在具有指定位置的数组值中。
例如:
字母“A”存储在数组(CCArray)中的第三个位置。其他位置没有值。
我正在尝试以下代码
world->insertObject(character,2); //character is CCString
上述方法将现有值推送到下一个位置。我想重写现有的。
新字符存储在第二位。不需要旧值。
任何人都可以帮助我吗?
上述逻辑有如下编码
word->removeObjectAtIndex(4); word->insertObject(character,4);
首先删除字符串,然后插入 CCString。
现在它工作正常。