0

在 5.1.2 中,我的迭代生成的按钮不起作用。复制我的代码并使用 5.1.1 和 5.1.2 的 iPad 模拟器进行尝试。你会看到差异。在 5.1.2 中,最好触发第一个和第二个按钮。

var win = Ti.UI.createWindow();

var data = [];

for(var i=1; i<=6; i++){

    var view = Ti.UI.createView({
        width : 320,
        top : 10,
        bottom : 0
    });



    var button = Ti.UI.createButton({
        bottom : 10,
        left : 10,
        right : 10,
        height : 40,
        color : '#fff',
        backgroundColor : 'red',
        title : "click",
        ids: i
    });


    view.add(button);


    button.addEventListener('click', function(e) {
        Ti.API.info('button: ' + e.source.ids);
    });


    data.push(view);

}

var scroll_view = Ti.UI.createScrollableView({
    showPagingControl : true,
    top : 130,
    views: data,
    layout: 'horizontal'
});



win.add(scroll_view);
4

1 回答 1

0

好像是内存不足。使用 sdk 5.1.2,我在没有 LiveView 的 iPad2 模拟器上尝试新项目中的代码,它工作正常,但在我的实际项目中却不行。现在,在新项目中,我尝试了 90 次迭代,并且前 18 个按钮的点击工作,在 5.1.1 中,所有按钮都可以正常工作。

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

var data = [];
var c =1;

for(var i=1; i<=90; i++){

    if (c == 1) {
        var page_view = Ti.UI.createView({
            layout: 'horizontal'
        });
    }

    var view = Ti.UI.createView({
        backgroundColor: 'green',
        width : 250,
        left: 5
    });



    var button = Ti.UI.createButton({
        bottom : 10,
        left : 10,
        right : 10,
        height : 40,
        color : '#fff',
        backgroundColor : 'red',
        title : "click",
        ids: i
    });


    view.add(button);


    button.addEventListener('click', function(e) {
        Ti.API.info('button: ' + e.source.ids);
    });

    page_view.add(view);

    if (c % 3 == 0) {
        data.push(page_view);
        c = 1;
    } else {
        c++;

        if (i == 90) {
            data.push(page_view);
        }
    }

}

var scroll_view = Ti.UI.createScrollableView({
    showPagingControl : true,
    top : 130,
    views: data,
    layout: 'horizontal'
});



win.add(scroll_view);
于 2016-01-30T15:58:15.503 回答