0
我試圖動畫一列表視圖項目兒童的backgroundColor財產的backgroundColor。Appcelerator的:動畫列表視圖項目
這是代碼
var itemToUpdate = myListView.getSections();
itemToUpdate = itemToUpdate[0].getItemAt(myPos);
//itemToUpdate.child_to_update.backgroundColor = myColor; //this works , but without animation
itemToUpdate.child_to_update.animate({
backgroundColor : myColor,
duration : 450
});
myListView.sections[0].updateItemAt(myPos , itemToUpdate);
請嘗試將問題表達爲一個問題,並確保您的代碼完整。 'catToUpdate'沒有被定義,例如 –
對不起,catToUpdate - > itemToUpdate – WhiteLine