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.
有没有一种简单的方法来擦除 CCPointArray 中的每个点?我能找到的只是使用 for 循环并调用 removeControlPointAtIndex。即便如此,那也没用,我也无法删除我的积分。有什么建议么?
如果使用CCARRAY_FOREACH, 并擦除元素使用循环,则循环将无法正常工作。您不能使用它擦除元素。将气泡更改为:
CCARRAY_FOREACH
while (myArray.count != 0)
用于删除元素。
派珀曼应该是正确的。遍历每个索引并删除该特定节点,直到计数降至 0