0
我需要一些指導。我想在ARC模式 立刻RELASE一個實例這是做在ARC模式下如何釋放姿態
if(secondScreenAudio.isPlaying == true){ [secondScreenAudio stop]; @autoreleasepool { secondScreenAudio = nil; } }
PLZ提供一些提示 感謝
我需要一些指導。我想在ARC模式 立刻RELASE一個實例這是做在ARC模式下如何釋放姿態
if(secondScreenAudio.isPlaying == true){ [secondScreenAudio stop]; @autoreleasepool { secondScreenAudio = nil; } }
PLZ提供一些提示 感謝
這就是正確的...你沒有把正確的方法@autorelease tho ..你不用autorelease這種方式...如果你把它設置爲零..並沒有其他硬引用指向對象..它將被釋放。
看到這個:http://stackoverflow.com/questions/9061162/release-method-deprecated – Vishal 2013-02-15 12:28:06
我喜歡設置爲無dealloc。但是請記住,你不能調用[super dealloc] – 2013-02-15 12:28:49
使用'secondScreenAudio = nil;'沒有'@ autorelease'模塊 – 2013-02-15 12:29:07