Titanium选项卡式iPhone应用程序中的内存泄漏

时间:2012-12-20 12:15:05

标签: javascript iphone memory-leaks titanium titanium-mobile

这让我头疼了几个星期了 - 希望有人可以提供帮助。我正在使用Titanium mobile中的2.1.4 SDK为iOs 5.0构建应用程序。我的应用程序从数据库中提取数据,并使用标签和表格在可滚动视图中显示它。我注意到它会在一段时间后崩溃,根据乐器,scrolllableView中的视图以及标签和tableview永远不会从内存中释放出来。我使用了很多commonJS,我的代码看起来像这样(剥离):

ApplicationWindow模块,我从app.js

调用
function ApplicationWindow(title) {
var self = Ti.UI.createWindow({
    title:title,
    backgroundColor:'white'
});

var button = Ti.UI.createButton({
    height:44,
    width:200,
    title:L('openWindow'),
    top:20
});
self.add(button);

var QuizWindow = require('/ui/common/QuizWindow');

button.addEventListener('click', function() {
    //containingTab attribute must be set by parent tab group on
    //the window for this work
    qw = new QuizWindow({title: 'KCT', backgroundColor: 'white', navBarHidden: true, tabBarHidden: true});
    self.containingTab.open(qw);
});

return self;
};

module.exports = ApplicationWindow;

然后我调用QuizWindow模块:

function QuizWindow(args){
var instance = Ti.UI.createWindow(args);
var QuestionView = require('/ui/common/QuestionView');

var db = Ti.Database.install("/kct.sqlite","kct");
var q = db.execute("SELECT * FROM questions");

var sv = Ti.UI.createScrollableView({
    bottom: 40
});

while(q.isValidRow()){
    var id = q.fieldByName("qid");
    var question = q.fieldByName("q");
    var set = q.fieldByName("set");
    var info = q.fieldByName("info");

    var v = new QuestionView(id,set,question,info);
    sv.addView(v);
    q.next();
}

q.close();
db.close();

var button = Ti.UI.createButton({
    height:44,
    width:200,
    title:"Close",
    bottom:10
});

button.addEventListener('click', function() {
    instance.close({animation: true});
});

instance.add(sv);
instance.add(button);
return instance;
};
module.exports = QuizWindow;

,这是QuestionView:

function QuestionView (id,set,question,infolert) {
var qview = Ti.UI.createView({
    top: 0,
    width: 'auto',
    height: 'auto',
    backgroundColor: 'white',
    questionSet: set,
    questionID: id,
    info: infolert,
    isAnswered: false       
});

var qLabel = gui.Header(question);
qLabel.top = 5;
qLabel.left = 10;
qLabel.right = 10;
qLabel.color = "#3B3B3B";
qLabel.font = {fontSize: gui.defaultFontSize+4, fontWeight: 'bold'};

var dcalc = (qLabel.text.length / 30) * ((gui.defaultFontSize+4)*1.2) + 5;

var answView = Ti.UI.createTableView({
    backgroundColor: 'white',
    top: dcalc,
    _parent: qview
});

var changeheight = function(e) {
    var lheight = e.source.rect.height;
    if(lheight && lheight > 10) answView.top = lheight + 5;
    return;
};

qLabel.addEventListener('postlayout', changeheight);


qview.add(qLabel);
qview.add(answView);

return qview;

}
 module.exports = QuestionView;

我最初在那里有一些代码从数据库中提取答案的数据,然后用它填充tableView,但为了简洁起见,我删除了它。即便没有,也没有任何东西被释放。我真的很茫然,任何建议都表示赞赏。

2 个答案:

答案 0 :(得分:1)

你可以看看我的要点。通过使用它,您可以很好地解决内存问题。只需在项目中包含该类,就可以像这样使用它。

https://gist.github.com/3898340

var mem = new MemoryClean();
    mem.clean(tableView);
    mem.clean(headerView);
    mem.clean(footerView);
    mem = null;

这是我一直在使用的。

function openAppointments(e) {
    var mem = new MemoryClean();
    mem.clean(headerView);
    mem.clean(footerView);
    mem = null;
    win.close();
}

答案 1 :(得分:1)

最后,我解决了它。就是这样:

var answView = Ti.UI.createTableView({
    (...)
    _parent: qview
});

引用答案表中的视图,使其及其所有子节点不被释放。一旦我删除它,只需关闭窗口即可释放它们。希望这对某人有用。