0
I wonder if it’s possible to do unload of a swf on iOS. I am currently doing an iOS project using Adobe Air and my class is as follows::
function foo()
{
var m_lc:LoaderContext = new LoaderContext(false, ApplicationDomain.currentDomain, null);
CustomUrl = new URLRequest(swfName.swf");
myLoader.load(CustomUrl,m_lc);
}
function unloadSWF(){
myLoader.unloadAndStop();
}
On the console he does the Load swf, but does not unload of their respective swf, not even calling the garbage collector it cleans. Is there any efficient way to clean the swf in remembrance?