WMZCode
WMZCode copied to clipboard
封装的图片验证,文字验证,滑动验证
Results
1
WMZCode issues
Sort by
recently updated
recently updated
newest added
【你无非是想单例,是对的,但是单例化和销毁是下面这么写的,只有销毁才会调用dealloc,这个时机才会关闭timer】 - (void)dealloc{ NSLog(@"%@",JobsLocalFunc); if (timer) { dispatch_source_cancel(timer); } // [[NSNotificationCenter defaultCenter] removeObserver:self]; } /// 单例化和销毁 +(void)destroySingleton{ static_codeViewOnceToken = 0; static_codeView = nil; } static WMZCodeView *static_codeView = nil; static...