mono touch中可以在Dispose方法内做一些内存释放

来源:互联网 发布:剑三百里屠苏捏脸数据 编辑:程序博客网 时间:2024/05/17 22:43
protected override void Dispose (bool disposing){base.Dispose (disposing);// Release imagesfirstImage.Dispose ();secondImage.Dispose ();thirdImage.Dispose ();// Release labelstouchInfoLabel.Dispose ();touchPhaseLabel.Dispose ();touchInstructionLabel.Dispose ();touchTrackingLabel.Dispose ();}