• This project
    • Loading...
  • Sign in

ios / yh_sdwebimage · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yh_sdwebimage
  • Examples
  • SDWebImage Demo
  • main.m
  • Rework static library settings and documentation and add an example project ...
    ea819b2a
    Inspired by http://www.blog.montgomerie.net/easy-xcode-static-library-subprojects-and-submodules
    by Olivier Poitrey
    2012-05-10 00:30:48 +0200  
    Browse Files
main.m 349 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//
//  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]));
    }
}