SDWebImage/Examples/SDWebImage TV Demo/main.m

17 lines
437 B
Mathematica
Raw Permalink Normal View History

2016-06-13 14:14:02 +08:00
/*
* This file is part of the SDWebImage package.
* (c) Olivier Poitrey <rs@dailymotion.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
2016-06-13 06:13:46 +08:00
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}