将闪烁边框应用于 appcelerator 中的视图

Apply Blinking border to a view in appcelerator

有人知道如何在 appcelerator 中对视图应用闪烁效果吗?。在 table 视图的情况下,它对我来说很好用。但是在视图中应用相同代码的情况下没有闪烁。有人知道吗?任何帮助将不胜感激。

谢谢

试试代码

Ti.UI.backgroundColor = 'white';
var win = Ti.UI.createWindow();

var view = Titanium.UI.createView({
borderRadius : 10,
borderWidth : 10,
borderColor : '#F00',
width : 400,
height : 400
});

setInterval(function() {
if (view.borderColor == '#F00') {
    view.borderColor = '#0F0';
} else {
    view.borderColor = '#F00';
}
}, 500);


win.add(view);
win.open();