我看到内存泄漏,我不确定它的来源是什么: 我有一个简单的UIView包含简单的UIWebview和一个相应显示它的方法
[self setHelp];
NSString *HTMLData = @"<body style='background-color:black;'> <p style='color:white;'> <u style='color:teal;'> Using xMode</u> <br />There are a number of ways you can customize the program to suit your needs. In its most simplistic way xMode can be used in its easy mode. In this mode (default mode ) you need to enter a gross amount for each applicable category right at the textbox of the button. ...blah blah..................</p> <br /> <br /> </body>";
[WV loadHTMLString:HTMLData baseURL:nil];
我有几个html屏幕,一切正常。但是,当我使用仪器测试时 它只在我滚动帮助屏幕时显示泄漏,如果我只是关闭/打开没有滚动没有泄漏显示。
任何可能导致这种情况的想法,是来自我的代码还是来自某个框架或库?