17 lines
359 B
Objective-C
17 lines
359 B
Objective-C
//
|
|
// main.m
|
|
// SDImageWebPCoderExample
|
|
//
|
|
// Created by Bogdan Poplauschi on 28/08/2018.
|
|
// Copyright © 2018 SDWebImage. 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]));
|
|
}
|
|
}
|