mirror of
https://github.com/wnagrodzki/DragGestureRecognizer_ObjC.git
synced 2025-04-05 03:52:03 +02:00
18 lines
366 B
Objective-C
18 lines
366 B
Objective-C
//
|
|
// main.m
|
|
// DragGestureRecognizer
|
|
//
|
|
// Created by Wojciech Nagrodzki on 01/04/14.
|
|
// Copyright (c) 2014 Wojciech Nagrodzki. 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]));
|
|
}
|
|
}
|