SLViewController.m 341 B

12345678910111213141516171819
  1. //
  2. // SLViewController.m
  3. // DarkMode
  4. //
  5. // Created by wsl on 2020/6/12.
  6. // Copyright © 2020 https://github.com/wsl2ls ----- . All rights reserved.
  7. //
  8. #import "SLViewController.h"
  9. @interface SLViewController ()
  10. @end
  11. @implementation SLViewController
  12. - (void)dealloc {
  13. NSLog(@"%@释放了",NSStringFromClass(self.class));
  14. }
  15. @end