我看到内存泄漏,我不确定它的来源:我有一个简单的 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 屏幕,一切正常。但是,当我使用 Instrument 进行测试时,它仅在我滚动帮助屏幕时才显示泄漏,如果我只是关闭/打开而不滚动,则不会显示泄漏。
任何想法可能导致这种情况,是来自我的代码还是来自某些框架或库?