19 lines
349 B
Mathematica
19 lines
349 B
Mathematica
|
//
|
||
|
// 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]));
|
||
|
}
|
||
|
}
|