开发者

How to query the child views of a parent view using Titanium?

I am looking to create a general purpose routine that will operate over a view's children. Within the routine I need to be able to iterate over the chil开发者_StackOverflow中文版d views. I don't see anything in the API that would suggest that there is any way to get the child views. There is an "add()" and a "remove()" method but nothing like "get()" nor does there appear to be any properties like "views". What am I missing?


this is the basic structure for removing child objects from a view

    if (view.children) {
        for (var c = view.children.length - 1; c >= 0; c--) {
            view.remove(view.children[c]);
        }
    }


i would check also for

if (view.children[c] !== undefined) {..}

since i already got problems with android without verifieing.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜