mirror of
https://github.com/zhigang1992/SORelativeDateTransformer.git
synced 2026-01-13 17:42:27 +08:00
19 lines
403 B
Objective-C
19 lines
403 B
Objective-C
//
|
|
// main.m
|
|
// SORelativeDateTransformerTester
|
|
//
|
|
// Created by StdOrbit on 12/6/10.
|
|
// Copyright 2010 Standard Orbit Software, LLC. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
@autoreleasepool {
|
|
int retVal = UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
return retVal;
|
|
}
|
|
}
|