mirror of
https://github.com/wnagrodzki/DragGestureRecognizer_ObjC.git
synced 2025-04-04 19:42:20 +02:00
49 lines
1.1 KiB
Objective-C
49 lines
1.1 KiB
Objective-C
//
|
|
// MainViewController.m
|
|
// DragGestureRecognizer
|
|
//
|
|
// Created by Wojciech Nagrodzki on 01/04/14.
|
|
// Copyright (c) 2014 Wojciech Nagrodzki. All rights reserved.
|
|
//
|
|
|
|
#import "MainViewController.h"
|
|
|
|
@interface MainViewController ()
|
|
|
|
@end
|
|
|
|
@implementation MainViewController
|
|
|
|
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
|
|
{
|
|
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
|
|
if (self) {
|
|
// Custom initialization
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)viewDidLoad
|
|
{
|
|
[super viewDidLoad];
|
|
// Do any additional setup after loading the view.
|
|
}
|
|
|
|
- (void)didReceiveMemoryWarning
|
|
{
|
|
[super didReceiveMemoryWarning];
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
/*
|
|
#pragma mark - Navigation
|
|
|
|
// In a storyboard-based application, you will often want to do a little preparation before navigation
|
|
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
|
|
{
|
|
// Get the new view controller using [segue destinationViewController].
|
|
// Pass the selected object to the new view controller.
|
|
}
|
|
*/
|
|
|
|
@end
|