Sha256: 61a8155c9a10345a9b827406d7f49ba94929e02c2320299fe6a8a501cf2fd8b4

Contents?: true

Size: 992 Bytes

Versions: 4

Compression:

Stored size: 992 Bytes

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

4 entries across 4 versions & 1 rubygems

Version Path
Ifd_Mobile-0.1.7 project/apps/TestApp/Test App 2/GestureTestViewController.m
Ifd_Mobile-0.1.4 project/apps/TestApp/Test App 2/GestureTestViewController.m
Ifd_Mobile-0.1.3 project/apps/TestApp/Test App 2/GestureTestViewController.m
Ifd_Mobile-0.1.2 project/apps/TestApp/Test App 2/GestureTestViewController.m