AppDelegate.m 576 B

12345678910111213141516171819202122232425
  1. /*
  2. * This file is part of the SDWebImage package.
  3. * (c) Olivier Poitrey <rs@dailymotion.com>
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. */
  8. #import "AppDelegate.h"
  9. @interface AppDelegate ()
  10. @end
  11. @implementation AppDelegate
  12. - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
  13. // Insert code here to initialize your application
  14. }
  15. - (void)applicationWillTerminate:(NSNotification *)aNotification {
  16. // Insert code here to tear down your application
  17. }
  18. @end