mirror of
https://github.com/SDWebImage/SDWebImage.git
synced 2026-06-06 19:37:51 +00:00
Inspired by http://www.blog.montgomerie.net/easy-xcode-static-library-subprojects-and-submodules
19 lines
349 B
Objective-C
19 lines
349 B
Objective-C
//
|
|
// main.m
|
|
// SDWebImage Demo
|
|
//
|
|
// Created by Olivier Poitrey on 09/05/12.
|
|
// Copyright (c) 2012 Dailymotion. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|