添加延遲方法
self.perform(#selector(showGuideView), with:nil, afterDelay:10)
取消延遲方法
NSObject.cancelPreviousPerformRequests(withTarget: self)
這個(gè)方法會(huì)導(dǎo)致延遲釋放的問(wèn)題
因此需要在父類(lèi)釋放時(shí)候“取消延遲”梗劫,子類(lèi)才能釋放,來(lái)解決延遲釋放問(wèn)題
添加延遲方法
self.perform(#selector(showGuideView), with:nil, afterDelay:10)
取消延遲方法
NSObject.cancelPreviousPerformRequests(withTarget: self)
這個(gè)方法會(huì)導(dǎo)致延遲釋放的問(wèn)題
因此需要在父類(lèi)釋放時(shí)候“取消延遲”梗劫,子類(lèi)才能釋放,來(lái)解決延遲釋放問(wèn)題