main.m 437 B

12345678910111213141516
  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 <UIKit/UIKit.h>
  9. #import "AppDelegate.h"
  10. int main(int argc, char * argv[]) {
  11. @autoreleasepool {
  12. return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
  13. }
  14. }