3.15.1 JSB 在真机IPAD3上测试
帧动画无法释放干净内存 每次调用都会增加 用完了清除了spriteFrame都不行。
//这些代码导致内存无法释放
// _self.mainPropeller.runAction(cc.sequence(
// cc.animate(_self.getPropellerAnim())
// ).repeat(4));
//
// _self.subPropeller.runAction(cc.sequence(
// cc.animate(_self.getPropellerAnim())
// ).repeat(4));
//这样写也是一样,这些代码导致内存无法释放
// _self.mainPropeller.runAction( cc.animate(_self.getPropellerAnim()).repeat(4));
// _self.subPropeller.runAction( cc.animate(_self.getPropellerAnim()).repeat(4));