我正在使用Instruments运行一个非常基本的测试App,它发现了很多内存泄漏!由于我知道苹果公司在将应用程序提交给iTunes时会对泄露的内存进行检查,因此我想调查此问题。
我的环境:Mac OS X 10.6.6上的MonoDevelop 2.4.2与MonoTouch 3.2.4,针对运行iOS 4.2.1的iPad。
我的测试应用程序只显示一个填充了50个字符串列表的TableView,按起始字母分组。
重现问题的步骤:使用MonoDevelop创建一个新的“基于iPad窗口的项目”,使用Interface Builder打开MainWindow.xib文件,将新的TableView放置到窗口上并创建其出口(名为“tview”) AppDelegate类。 然后在Main.cs中输入以下代码:
using System;
using System.Collections.Generic;
using System.Linq;
using MonoTouch.Foundation;
using MonoTouch.UIKit;
namespace SimpleTable
{
public class Application
{
static void Main (string[] args)
{
UIApplication.Main (args);
}
}
public partial class AppDelegate : UIApplicationDelegate
{
private List<string> _names;
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
_names = new List<string> { "Smith", "Jones", "Williams", "Brown", "Taylor",
"Davies", "Wilson", "Evans", "Thomas", "Johnson",
"Roberts", "Walker", "Wright", "Robinson", "Thompson",
"White", "Hughes", "Edwards", "Green", "Hall",
"Wood", "Harris", "Lewis", "Martin", "Jackson",
"Clarke", "Clark", "Turner", "Hill", "Scott",
"Cooper", "Morris", "Ward", "Moore", "King",
"Watson", "Baker", "Harrison", "Morgan", "Patel",
"Young", "Allen", "Mitchell", "James", "Anderson",
"Phillips", "Lee", "Bell", "Parker", "Davis" };
tview.Source = new MyTableViewSource(_names);
window.MakeKeyAndVisible ();
return true;
}
private class MyTableViewSource : UITableViewSource
{
private List<string> _sectionTitles;
private SortedDictionary<int, List<string>> _sectionElements = new SortedDictionary<int, List<string>>();
public MyTableViewSource(List<string> list)
{
// Use LINQ to find the distinct set of alphabet characters required.
_sectionTitles = (from c in list select c.Substring(0, 1)).Distinct().ToList();
// Sort the list alphabetically.
_sectionTitles.Sort();
// Add each element to the List<string> according to the letter it starts with
// in the SortedDictionary<int, List<string>>.
foreach (string element in list)
{
int sectionNum = _sectionTitles.IndexOf(element.Substring(0, 1));
if (_sectionElements.ContainsKey(sectionNum))
{
// SortedDictionary already contains a List<string> for that letter.
_sectionElements[sectionNum].Add(element);
}
else
{
// First time that letter has appeared, create new List<string> in the SortedDictionary.
_sectionElements.Add(sectionNum, new List<string> { element });
}
}
}
public override int NumberOfSections(UITableView tableView)
{
return _sectionTitles.Count;
}
public override string TitleForHeader(UITableView tableView, int section)
{
return _sectionTitles[section];
}
public override int RowsInSection(UITableView tableview, int section)
{
return _sectionElements[section].Count;
}
public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath)
{
string kCellIdentifier = "mycell";
UITableViewCell cell = tableView.DequeueReusableCell(kCellIdentifier);
if (cell == null)
{
// No re-usable cell found, create a new one.
cell = new UITableViewCell(UITableViewCellStyle.Default, kCellIdentifier);
}
string display = _sectionElements[indexPath.Section][indexPath.Row];
cell.TextLabel.Text = display;
return cell;
}
public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
{
string display = _sectionElements[indexPath.Section][indexPath.Row];
showAlert("RowSelected", "You selected: \"" + display + "\"");
// Prevent the blue 'selection indicator' remaining.
tableView.DeselectRow(indexPath, true);
}
private void showAlert(string title, string message)
{
using (var alert = new UIAlertView(title, message, null, "OK", null))
{
alert.Show();
}
}
}
}
}
我在设备上执行了以下测试:
注释掉了
public override string TitleForHeader(UITableView tableView, int section)
程序,从仪器内部启动App:发现单个泄漏;似乎这种泄漏总是存在,即使在测试空的App时也是如此!
未注释
public override string TitleForHeader(UITableView tableView, int section)
程序,从仪器内部启动App:发现了很多泄漏,当向上和向下滚动表格和/或选择任何一行时,它们的数量会增长。
取代了
return _sectionTitles[section];
中的声明
public override string TitleForHeader(UITableView tableView, int section)
程序
return "Test Header…";
(因此使用常量字符串):与测试n.2中的相同!
MonoTouch是否被窃听或者我忘记了必要的东西?如果即使这样一个简单的应用程序在运行几分钟时会产生数百个内存泄漏,那么真正(并且更复杂)的应用程序会发生什么?
我已广泛搜索网页,但我没有找到任何有关此问题的重要帖子......我们将非常感谢任何贡献。
答案 0 :(得分:3)
monotouch和mono vm分配和管理内存的方式尚未被仪器完全理解。 Apple没有拒绝任何申请。如果您有一个特定的错误,您认为是泄漏,请在http://monotouch.net/Support
的monotouch bugtracker中提交一个问题话虽如此,我查看了你的截图,确实发现了可能发生的1个16字节泄漏,以及第二个屏幕截图中的泄漏,并修复了即将到来的monotouch 4。