Sha256: d00bc8bc1e822cf1bab8ebaad342daf44dc3408dcbedd6546c7bc9381329dc86

Contents?: true

Size: 1.02 KB

Versions: 8

Compression:

Stored size: 1.02 KB

Contents

//
//  GestureTestViewController.m
//  TestApp
//
//  Created by ThinkSys- Amit on 12/07/13.
//
//

#import "GestureTestViewController.h"

@interface GestureTestViewController ()

@end

@implementation GestureTestViewController

- (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 from its nib.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (IBAction)handleRotation:(UIRotationGestureRecognizer*)sender
{
    NSLog(@"Rotation Starts");
    sender.view.transform = CGAffineTransformRotate(sender.view.transform, sender.rotation);
    sender.rotation = 0;
}
- (void)dealloc {
    [_mapView release];
    [super dealloc];
}
@end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
Ifd_Mobile-1.1.0 project/apps/TestApp/Test App 2/GestureTestViewController.m
Ifd_Mobile-1.0.0 project/apps/TestApp/Test App 2/GestureTestViewController.m
Ifd_Mobile-0.1.9 project/apps/TestApp/Test App 2/GestureTestViewController.m
Ifd_Mobile-0.1.8 project/apps/TestApp/Test App 2/GestureTestViewController.m
Ifd_Mobile-0.1.6 project/apps/TestApp/Test App 2/GestureTestViewController.m
Ifd_Mobile-0.1.5 project/apps/TestApp/Test App 2/GestureTestViewController.m
Ifd_Mobile-0.1.1 project/apps/TestApp/Test App 2/GestureTestViewController.m
Ifd_Mobile-0.1.0 project/apps/TestApp/Test App 2/GestureTestViewController.m