mirror of
https://github.com/zhigang1992/RETableViewManager.git
synced 2026-06-10 15:59:34 +08:00
19 lines
356 B
Objective-C
19 lines
356 B
Objective-C
//
|
|
// main.m
|
|
// RETableViewManagerExample
|
|
//
|
|
// Created by Roman Efimov on 2/28/13.
|
|
// Copyright (c) 2013 Roman Efimov. 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]));
|
|
}
|
|
}
|