[
  {
    "path": ".gitignore",
    "content": "# Xcode\n.DS_Store\n*/build/*\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!default.perspectivev3\nxcuserdata\nprofile\n*.moved-aside\nDerivedData\n.idea/\n*.hmap"
  },
  {
    "path": "LICENSE",
    "content": "Vertigo\n\nCopyright (c) 2013 Guillermo Gonzalez\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# Vertigo\n**Vertigo** is a simple image viewer which includes a **custom view controller transition** that mimics the new **iOS 7 Photos app** image zoom transition effect.\n<p align=\"center\" >\n<img src=\"https://raw.github.com/gonzalezreal/Vertigo/master/VertigoSample/VertigoSample.gif\" alt=\"Image zoom transition\" width=\"318\" height=\"566\" />\n</p>\n\n## Installation\n### Requirements\nVertigo requires iOS 7 or greater.\n### From CocoaPods\nAdd `pod 'Vertigo'` to your Podfile.\n### Manually\nDrag the `Vertigo` folder into your project. If your project doesn't use ARC you must enable it for all the `.m` files under the `Vertigo` folder.\n\n## Usage\n**Vertigo** includes the following classes:\n* `TGRImageViewController` is the image viewer itself. The user can double tap on the image to zoom it in or out. A single tap will dismiss the viewer.\n* `TGRImageZoomAnimationController` is the object that performs the custom transition between your view controller and a `TGRImageViewController` (that is, the **Photos app** image zoom transition effect).\n\nTo present and dismiss a `TGRImageViewController` from your view controller using the custom transition effect, your view controller needs to implement the new `UIViewControllerTransitioningDelegate` protocol and return a `TGRImageZoomAnimationController` initialized with the image view that will be used as the inital (or final in case of dismissal) point of the transition.\n```objc\n#import \"TGRImageViewController.h\"\n#import \"TGRImageZoomAnimationController.h\"\n\n@interface MyViewController () <UIViewControllerTransitioningDelegate>\n@end\n\n@implementation MyViewController\n...\n- (id<UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source {\n    if ([presented isKindOfClass:TGRImageViewController.class]) {\n        return [[TGRImageZoomAnimationController alloc] initWithReferenceImageView:self.imageView];\n    }\n    return nil;\n}\n\n- (id<UIViewControllerAnimatedTransitioning>)animationControllerForDismissedController:(UIViewController *)dismissed {\n    if ([dismissed isKindOfClass:TGRImageViewController.class]) {\n        return [[TGRImageZoomAnimationController alloc] initWithReferenceImageView:self.imageView];\n    }\n    return nil;\n}\n\n- (IBAction)showImageViewer {\n    TGRImageViewController *viewController = [[TGRImageViewController alloc] initWithImage:self.imageView.image];\n    // Don't forget to set ourselves as the transition delegate\n    viewController.transitioningDelegate = self;\n    \n    [self presentViewController:viewController animated:YES completion:nil];\n}\n```\n\n## Contact\n[Guillermo Gonzalez](http://github.com/gonzalezreal)  \n[@gonzalezreal](https://twitter.com/gonzalezreal)\n## License\nVertigo is available under the MIT license. See [LICENSE](https://github.com/gonzalezreal/Vertigo/blob/master/LICENSE).\n"
  },
  {
    "path": "Vertigo/TGRImageViewController.h",
    "content": "// TGRImageViewController.h\n//\n// Copyright (c) 2013 Guillermo Gonzalez\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\n#import <UIKit/UIKit.h>\n\n// Simple full screen image viewer.\n//\n// Allows the user to view an image in full screen and double tap to zoom it.\n// The view controller can be dismissed with a single tap.\n@interface TGRImageViewController : UIViewController\n\n// The scroll view used for zooming.\n@property (weak, nonatomic) IBOutlet UIScrollView *scrollView;\n\n// The image view that displays the image.\n@property (weak, nonatomic) IBOutlet UIImageView *imageView;\n\n// The image that will be shown.\n@property (strong, nonatomic, readonly) UIImage *image;\n\n// Initializes the receiver with the specified image.\n- (id)initWithImage:(UIImage *)image;\n\n@end\n"
  },
  {
    "path": "Vertigo/TGRImageViewController.m",
    "content": "// TGRImageZoomTransition.m\n//\n// Copyright (c) 2013 Guillermo Gonzalez\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\n#import \"TGRImageViewController.h\"\n\n@interface TGRImageViewController ()\n\n@property (weak, nonatomic) IBOutlet UITapGestureRecognizer *singleTapGestureRecognizer;\n@property (weak, nonatomic) IBOutlet UITapGestureRecognizer *doubleTapGestureRecognizer;\n\n@end\n\n@implementation TGRImageViewController\n\n- (id)initWithImage:(UIImage *)image {\n    if (self = [super init]) {\n        _image = image;\n    }\n    \n    return self;\n}\n\n- (void)viewDidLoad {\n    [super viewDidLoad];\n    \n    [self.singleTapGestureRecognizer requireGestureRecognizerToFail:self.doubleTapGestureRecognizer];\n    self.imageView.image = self.image;\n}\n\n- (BOOL)prefersStatusBarHidden {\n    return YES;\n}\n\n#pragma mark - UIScrollViewDelegate methods\n\n- (UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollView {\n    return self.imageView;\n}\n\n- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate {\n    if (self.scrollView.zoomScale == self.scrollView.minimumZoomScale) {\n        [self dismissViewControllerAnimated:YES completion:nil];\n    }\n}\n\n#pragma mark - Private methods\n\n- (IBAction)handleSingleTap:(UITapGestureRecognizer *)tapGestureRecognizer {\n    if (self.scrollView.zoomScale == self.scrollView.minimumZoomScale) {\n        [self dismissViewControllerAnimated:YES completion:nil];\n    }\n    else {\n        // Zoom out\n        [self.scrollView zoomToRect:self.scrollView.bounds animated:YES];\n    }\n}\n\n- (IBAction)handleDoubleTap:(UITapGestureRecognizer *)tapGestureRecognizer {\n    if (self.scrollView.zoomScale == self.scrollView.minimumZoomScale) {\n        // Zoom in\n        CGPoint center = [tapGestureRecognizer locationInView:self.scrollView];\n        CGSize size = CGSizeMake(self.scrollView.bounds.size.width / self.scrollView.maximumZoomScale,\n                                 self.scrollView.bounds.size.height / self.scrollView.maximumZoomScale);\n        CGRect rect = CGRectMake(center.x - (size.width / 2.0), center.y - (size.height / 2.0), size.width, size.height);\n        [self.scrollView zoomToRect:rect animated:YES];\n    }\n    else {\n        // Zoom out\n        [self.scrollView zoomToRect:self.scrollView.bounds animated:YES];\n    }\n}\n\n@end\n"
  },
  {
    "path": "Vertigo/TGRImageViewController.xib",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVersion=\"4514\" systemVersion=\"13A603\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\">\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"3747\"/>\n    </dependencies>\n    <objects>\n        <placeholder placeholderIdentifier=\"IBFilesOwner\" id=\"-1\" userLabel=\"File's Owner\" customClass=\"TGRImageViewController\">\n            <connections>\n                <outlet property=\"doubleTapGestureRecognizer\" destination=\"vr9-pv-9Ja\" id=\"pma-Gr-jls\"/>\n                <outlet property=\"imageView\" destination=\"YzD-IK-hmd\" id=\"zYT-gI-jQI\"/>\n                <outlet property=\"scrollView\" destination=\"mKd-iv-BEJ\" id=\"HHd-aJ-ztb\"/>\n                <outlet property=\"singleTapGestureRecognizer\" destination=\"dlf-fy-eoH\" id=\"vLg-fv-PqX\"/>\n                <outlet property=\"view\" destination=\"1\" id=\"3\"/>\n            </connections>\n        </placeholder>\n        <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"-2\" customClass=\"UIResponder\"/>\n        <view contentMode=\"scaleToFill\" id=\"1\">\n            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"320\" height=\"568\"/>\n            <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n            <subviews>\n                <scrollView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" maximumZoomScale=\"2\" id=\"mKd-iv-BEJ\">\n                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"320\" height=\"568\"/>\n                    <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                    <subviews>\n                        <imageView contentMode=\"scaleAspectFit\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" id=\"YzD-IK-hmd\">\n                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"320\" height=\"568\"/>\n                            <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                            <gestureRecognizers/>\n                            <connections>\n                                <outletCollection property=\"gestureRecognizers\" destination=\"dlf-fy-eoH\" appends=\"YES\" id=\"LZ8-Bc-cDh\"/>\n                                <outletCollection property=\"gestureRecognizers\" destination=\"vr9-pv-9Ja\" appends=\"YES\" id=\"W6T-9y-6GY\"/>\n                            </connections>\n                        </imageView>\n                    </subviews>\n                    <connections>\n                        <outlet property=\"delegate\" destination=\"-1\" id=\"zNw-31-f6r\"/>\n                    </connections>\n                </scrollView>\n            </subviews>\n            <color key=\"backgroundColor\" white=\"0.0\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n            <simulatedScreenMetrics key=\"simulatedDestinationMetrics\" type=\"retina4\"/>\n        </view>\n        <tapGestureRecognizer id=\"dlf-fy-eoH\" userLabel=\"Single Tap Gesture Recognizer\">\n            <connections>\n                <action selector=\"handleSingleTap:\" destination=\"-1\" id=\"ghn-l1-NAV\"/>\n            </connections>\n        </tapGestureRecognizer>\n        <tapGestureRecognizer numberOfTapsRequired=\"2\" id=\"vr9-pv-9Ja\" userLabel=\"Double Tap Gesture Recognizer\">\n            <connections>\n                <action selector=\"handleDoubleTap:\" destination=\"-1\" id=\"41j-31-3EF\"/>\n            </connections>\n        </tapGestureRecognizer>\n    </objects>\n</document>"
  },
  {
    "path": "Vertigo/TGRImageZoomAnimationController.h",
    "content": "// TGRImageZoomAnimationController.h\n// \n// Copyright (c) 2013 Guillermo Gonzalez\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n// \n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n// \n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\n#import <Foundation/Foundation.h>\n\n// Image zoom custom transition.\n@interface TGRImageZoomAnimationController : NSObject <UIViewControllerAnimatedTransitioning>\n\n// The image view that will be used as the source (zoom in) or destination\n// (zoom out) of the transition.\n@property (weak, nonatomic, readonly) UIImageView *referenceImageView;\n\n// Initializes the receiver with the specified reference image view.\n- (id)initWithReferenceImageView:(UIImageView *)referenceImageView;\n\n@end\n"
  },
  {
    "path": "Vertigo/TGRImageZoomAnimationController.m",
    "content": "// TGRImageZoomAnimationController.m\n// \n// Copyright (c) 2013 Guillermo Gonzalez\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n// \n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n// \n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\n#import \"TGRImageZoomAnimationController.h\"\n#import \"TGRImageViewController.h\"\n#import \"UIImage+AspectFit.h\"\n\n@implementation TGRImageZoomAnimationController\n\n- (id)initWithReferenceImageView:(UIImageView *)referenceImageView {\n    if (self = [super init]) {\n        NSAssert(referenceImageView.contentMode == UIViewContentModeScaleAspectFill, @\"*** referenceImageView must have a UIViewContentModeScaleAspectFill contentMode!\");\n        _referenceImageView = referenceImageView;\n    }\n    return self;\n}\n\n- (NSTimeInterval)transitionDuration:(id<UIViewControllerContextTransitioning>)transitionContext {\n    UIViewController *viewController = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];\n    return viewController.isBeingPresented ? 0.5 : 0.25;\n}\n\n- (void)animateTransition:(id<UIViewControllerContextTransitioning>)transitionContext {\n    UIViewController *viewController = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];\n    if (viewController.isBeingPresented) {\n        [self animateZoomInTransition:transitionContext];\n    }\n    else {\n        [self animateZoomOutTransition:transitionContext];\n    }\n}\n\n- (void)animateZoomInTransition:(id<UIViewControllerContextTransitioning>)transitionContext {\n    // Get the view controllers participating in the transition\n    UIViewController *fromViewController = [transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];\n    TGRImageViewController *toViewController = (TGRImageViewController *)[transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];\n    NSAssert([toViewController isKindOfClass:TGRImageViewController.class], @\"*** toViewController must be a TGRImageViewController!\");\n    \n    // Create a temporary view for the zoom in transition and set the initial frame based\n    // on the reference image view\n    UIImageView *transitionView = [[UIImageView alloc] initWithImage:self.referenceImageView.image];\n    transitionView.contentMode = UIViewContentModeScaleAspectFill;\n    transitionView.clipsToBounds = YES;\n    transitionView.frame = [transitionContext.containerView convertRect:self.referenceImageView.bounds\n                                                               fromView:self.referenceImageView];\n    [transitionContext.containerView addSubview:transitionView];\n    \n    // Compute the final frame for the temporary view\n    CGRect finalFrame = [transitionContext finalFrameForViewController:toViewController];\n    CGRect transitionViewFinalFrame = [self.referenceImageView.image tgr_aspectFitRectForSize:finalFrame.size];\n    \n    // Perform the transition using a spring motion effect\n    NSTimeInterval duration = [self transitionDuration:transitionContext];\n    \n    self.referenceImageView.alpha = 0;\n    \n    [UIView animateWithDuration:duration\n                          delay:0\n         usingSpringWithDamping:0.7\n          initialSpringVelocity:0\n                        options:UIViewAnimationOptionCurveLinear\n                     animations:^{\n                         fromViewController.view.alpha = 0;\n                         transitionView.frame = transitionViewFinalFrame;\n                     }\n                     completion:^(BOOL finished) {\n                         fromViewController.view.alpha = 1;\n                         \n                         [transitionView removeFromSuperview];\n                         [transitionContext.containerView addSubview:toViewController.view];\n                         \n                         [transitionContext completeTransition:YES];\n                     }];\n}\n\n- (void)animateZoomOutTransition:(id<UIViewControllerContextTransitioning>)transitionContext {\n    // Get the view controllers participating in the transition\n    UIViewController *toViewController = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey];\n    TGRImageViewController *fromViewController = (TGRImageViewController *)[transitionContext viewControllerForKey:UITransitionContextFromViewControllerKey];\n    NSAssert([fromViewController isKindOfClass:TGRImageViewController.class], @\"*** fromViewController must be a TGRImageViewController!\");\n    \n    // The toViewController view will fade in during the transition\n    toViewController.view.frame = [transitionContext finalFrameForViewController:toViewController];\n    toViewController.view.alpha = 0;\n    [transitionContext.containerView addSubview:toViewController.view];\n    [transitionContext.containerView sendSubviewToBack:toViewController.view];\n    \n    // Compute the initial frame for the temporary view based on the image view\n    // of the TGRImageViewController\n    CGRect transitionViewInitialFrame = [fromViewController.imageView.image tgr_aspectFitRectForSize:fromViewController.imageView.bounds.size];\n    transitionViewInitialFrame = [transitionContext.containerView convertRect:transitionViewInitialFrame\n                                                                     fromView:fromViewController.imageView];\n    \n    // Compute the final frame for the temporary view based on the reference\n    // image view\n    CGRect transitionViewFinalFrame = [transitionContext.containerView convertRect:self.referenceImageView.bounds\n                                                                          fromView:self.referenceImageView];\n    \n    if (UIApplication.sharedApplication.isStatusBarHidden && ![toViewController prefersStatusBarHidden]) {\n        transitionViewFinalFrame = CGRectOffset(transitionViewFinalFrame, 0, 20);\n    }\n    \n    // Create a temporary view for the zoom out transition based on the image\n    // view controller contents\n    UIImageView *transitionView = [[UIImageView alloc] initWithImage:fromViewController.imageView.image];\n    transitionView.contentMode = UIViewContentModeScaleAspectFill;\n    transitionView.clipsToBounds = YES;\n    transitionView.frame = transitionViewInitialFrame;\n    [transitionContext.containerView addSubview:transitionView];\n    [fromViewController.view removeFromSuperview];\n    \n    // Perform the transition\n    NSTimeInterval duration = [self transitionDuration:transitionContext];\n    \n    [UIView animateWithDuration:duration\n                          delay:0\n                        options:UIViewAnimationOptionCurveEaseInOut\n                     animations:^{\n                         toViewController.view.alpha = 1;\n                         transitionView.frame = transitionViewFinalFrame;\n                     } completion:^(BOOL finished) {\n                         self.referenceImageView.alpha = 1;\n                         [transitionView removeFromSuperview];\n                         [transitionContext completeTransition:YES];\n                     }];\n}\n\n@end\n"
  },
  {
    "path": "Vertigo/UIImage+AspectFit.h",
    "content": "// UIImage+AspectFit.h\n// \n// Copyright (c) 2013 Guillermo Gonzalez\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n// \n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n// \n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\n#import <UIKit/UIKit.h>\n\n@interface UIImage (AspectFit)\n\n- (CGRect)tgr_aspectFitRectForSize:(CGSize)size;\n\n@end\n\n"
  },
  {
    "path": "Vertigo/UIImage+AspectFit.m",
    "content": "// UIImage+AspectFit.m\n// \n// Copyright (c) 2013 Guillermo Gonzalez\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n// \n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n// \n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\n#import \"UIImage+AspectFit.h\"\n\n@implementation UIImage (AspectFit)\n\n- (CGRect)tgr_aspectFitRectForSize:(CGSize)size {\n    CGFloat targetAspect = size.width / size.height;\n    CGFloat sourceAspect = self.size.width / self.size.height;\n    CGRect rect = CGRectZero;\n    \n    if (targetAspect > sourceAspect) {\n        rect.size.height = size.height;\n        rect.size.width = ceilf(rect.size.height * sourceAspect);\n        rect.origin.x = ceilf((size.width - rect.size.width) * 0.5);\n    }\n    else {\n        rect.size.width = size.width;\n        rect.size.height = ceilf(rect.size.width / sourceAspect);\n        rect.origin.y = ceilf((size.height - rect.size.height) * 0.5);\n    }\n    \n    return rect;\n}\n\n@end\n"
  },
  {
    "path": "Vertigo.podspec",
    "content": "Pod::Spec.new do |s|\n  s.name         = \"Vertigo\"\n  s.version      = \"0.1\"\n  s.summary      = \"A simple image viewer which includes a custom transition that mimics the iOS 7 Photos app image zoom effect.\"\n  s.description  = <<-DESC\n                   **Vertigo** is a simple image viewer which includes a **custom view controller transition** that mimics the new **iOS 7 Photos app** image zoom transition effect.\n                   DESC\n  s.homepage     = \"https://github.com/gonzalezreal/Vertigo\"\n  s.screenshots  = \"https://raw.github.com/gonzalezreal/Vertigo/master/VertigoSample/VertigoSample.gif\"\n  s.license      = 'MIT'\n  s.author       = { 'Guillermo Gonzalez' => 'gonzalezreal@icloud.com' }\n  s.platform     = :ios, '7.0'\n  s.source       = { :git => \"https://github.com/gonzalezreal/Vertigo.git\", :tag => \"0.1\" }\n  s.source_files = 'Vertigo'\n  s.resources    = \"Vertigo/TGRImageViewController.xib\"\n  s.framework    = 'UIKit'\n  s.requires_arc = true\nend\n"
  },
  {
    "path": "VertigoSample/VertigoSample/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"4510\" systemVersion=\"12F45\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" initialViewController=\"qPR-dE-1Pj\">\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"3742\"/>\n    </dependencies>\n    <scenes>\n        <!--View Controller-->\n        <scene sceneID=\"ufC-wZ-h7g\">\n            <objects>\n                <viewController id=\"vXZ-lx-hvc\" customClass=\"TGRViewController\" sceneMemberID=\"viewController\">\n                    <layoutGuides>\n                        <viewControllerLayoutGuide type=\"top\" id=\"DQs-gf-0Wb\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"qWP-jA-U07\"/>\n                    </layoutGuides>\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"kh9-bI-dsS\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"320\" height=\"568\"/>\n                        <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMaxY=\"YES\"/>\n                        <subviews>\n                            <button opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" adjustsImageWhenDisabled=\"NO\" lineBreakMode=\"middleTruncation\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"yKs-BD-9se\">\n                                <rect key=\"frame\" x=\"108\" y=\"84\" width=\"104\" height=\"154\"/>\n                                <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMaxY=\"YES\"/>\n                                <constraints>\n                                    <constraint firstAttribute=\"width\" constant=\"104\" id=\"3fj-7t-joK\"/>\n                                    <constraint firstAttribute=\"height\" constant=\"154\" id=\"nad-vu-Egq\"/>\n                                </constraints>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"15\"/>\n                                <state key=\"normal\" image=\"photo\">\n                                    <color key=\"titleShadowColor\" white=\"0.5\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                                </state>\n                                <connections>\n                                    <action selector=\"showImage\" destination=\"vXZ-lx-hvc\" eventType=\"touchUpInside\" id=\"AFJ-YL-i1f\"/>\n                                </connections>\n                            </button>\n                            <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Tap on the image!\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"CAT-xy-Flo\">\n                                <rect key=\"frame\" x=\"92\" y=\"246\" width=\"137\" height=\"21\"/>\n                                <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMaxY=\"YES\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                <color key=\"textColor\" cocoaTouchSystemColor=\"darkTextColor\"/>\n                                <nil key=\"highlightedColor\"/>\n                            </label>\n                            <textView clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" editable=\"NO\" text=\"http://www.flickr.com/photos/aftab/2762692118/\" textAlignment=\"center\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"5nK-eX-Bzj\">\n                                <rect key=\"frame\" x=\"40\" y=\"503\" width=\"240\" height=\"50\"/>\n                                <autoresizingMask key=\"autoresizingMask\" flexibleMaxX=\"YES\" flexibleMaxY=\"YES\"/>\n                                <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"calibratedRGB\"/>\n                                <constraints>\n                                    <constraint firstAttribute=\"width\" constant=\"240\" id=\"Dt3-3f-8pU\"/>\n                                    <constraint firstAttribute=\"height\" constant=\"50\" id=\"Kog-7t-0tx\"/>\n                                </constraints>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <textInputTraits key=\"textInputTraits\" autocapitalizationType=\"sentences\"/>\n                                <dataDetectorType key=\"dataDetectorTypes\" link=\"YES\"/>\n                            </textView>\n                        </subviews>\n                        <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"calibratedWhite\"/>\n                        <constraints>\n                            <constraint firstItem=\"yKs-BD-9se\" firstAttribute=\"centerX\" secondItem=\"kh9-bI-dsS\" secondAttribute=\"centerX\" id=\"4Hq-gg-r60\"/>\n                            <constraint firstItem=\"CAT-xy-Flo\" firstAttribute=\"centerX\" secondItem=\"yKs-BD-9se\" secondAttribute=\"centerX\" id=\"Bub-gy-91C\"/>\n                            <constraint firstItem=\"CAT-xy-Flo\" firstAttribute=\"top\" secondItem=\"yKs-BD-9se\" secondAttribute=\"bottom\" constant=\"8\" symbolic=\"YES\" id=\"C0w-ht-mJp\"/>\n                            <constraint firstItem=\"qWP-jA-U07\" firstAttribute=\"top\" secondItem=\"5nK-eX-Bzj\" secondAttribute=\"bottom\" constant=\"15\" id=\"PyG-jy-M14\"/>\n                            <constraint firstItem=\"yKs-BD-9se\" firstAttribute=\"top\" secondItem=\"DQs-gf-0Wb\" secondAttribute=\"bottom\" constant=\"20\" id=\"TVY-zN-XML\"/>\n                            <constraint firstItem=\"yKs-BD-9se\" firstAttribute=\"centerX\" secondItem=\"5nK-eX-Bzj\" secondAttribute=\"centerX\" id=\"pxD-HN-fYn\"/>\n                        </constraints>\n                    </view>\n                    <navigationItem key=\"navigationItem\" id=\"kXu-BH-I1a\"/>\n                    <connections>\n                        <outlet property=\"imageButton\" destination=\"yKs-BD-9se\" id=\"VhJ-GE-KTd\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"x5A-6p-PRh\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"591\" y=\"22\"/>\n        </scene>\n        <!--Navigation Controller-->\n        <scene sceneID=\"mid-Wd-vQ7\">\n            <objects>\n                <navigationController definesPresentationContext=\"YES\" id=\"qPR-dE-1Pj\" sceneMemberID=\"viewController\">\n                    <navigationBar key=\"navigationBar\" contentMode=\"scaleToFill\" id=\"ZPB-OG-Rxb\">\n                        <autoresizingMask key=\"autoresizingMask\"/>\n                    </navigationBar>\n                    <connections>\n                        <segue destination=\"vXZ-lx-hvc\" kind=\"relationship\" relationship=\"rootViewController\" id=\"nxD-Xl-Dyb\"/>\n                    </connections>\n                </navigationController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"rSG-vk-FSX\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"135\" y=\"22\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <image name=\"photo\" width=\"685\" height=\"1024\"/>\n    </resources>\n    <simulatedMetricsContainer key=\"defaultSimulatedMetrics\">\n        <simulatedStatusBarMetrics key=\"statusBar\"/>\n        <simulatedOrientationMetrics key=\"orientation\"/>\n        <simulatedScreenMetrics key=\"destination\" type=\"retina4\"/>\n    </simulatedMetricsContainer>\n</document>"
  },
  {
    "path": "VertigoSample/VertigoSample/Images.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"2x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "VertigoSample/VertigoSample/Images.xcassets/LaunchImage.launchimage/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"orientation\" : \"portrait\",\n      \"idiom\" : \"iphone\",\n      \"extent\" : \"full-screen\",\n      \"minimum-system-version\" : \"7.0\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"orientation\" : \"portrait\",\n      \"idiom\" : \"iphone\",\n      \"subtype\" : \"retina4\",\n      \"extent\" : \"full-screen\",\n      \"minimum-system-version\" : \"7.0\",\n      \"scale\" : \"2x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "VertigoSample/VertigoSample/Images.xcassets/photo.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\",\n      \"filename\" : \"photo.png\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "VertigoSample/VertigoSample/TGRAppDelegate.h",
    "content": "//\n//  TGRAppDelegate.h\n//  VertigoSample\n//\n//  Created by guille on 07/10/13.\n//  Copyright (c) 2013 Guillermo Gonzalez. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n@interface TGRAppDelegate : UIResponder <UIApplicationDelegate>\n\n@property (strong, nonatomic) UIWindow *window;\n\n@end\n"
  },
  {
    "path": "VertigoSample/VertigoSample/TGRAppDelegate.m",
    "content": "//\n//  TGRAppDelegate.m\n//  VertigoSample\n//\n//  Created by guille on 07/10/13.\n//  Copyright (c) 2013 Guillermo Gonzalez. All rights reserved.\n//\n\n#import \"TGRAppDelegate.h\"\n\n@implementation TGRAppDelegate\n\n- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions\n{\n    // Override point for customization after application launch.\n    return YES;\n}\n\t\t\t\t\t\t\t\n- (void)applicationWillResignActive:(UIApplication *)application\n{\n    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.\n    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.\n}\n\n- (void)applicationDidEnterBackground:(UIApplication *)application\n{\n    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. \n    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.\n}\n\n- (void)applicationWillEnterForeground:(UIApplication *)application\n{\n    // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.\n}\n\n- (void)applicationDidBecomeActive:(UIApplication *)application\n{\n    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.\n}\n\n- (void)applicationWillTerminate:(UIApplication *)application\n{\n    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.\n}\n\n@end\n"
  },
  {
    "path": "VertigoSample/VertigoSample/TGRViewController.h",
    "content": "//\n//  TGRViewController.h\n//  VertigoSample\n//\n//  Created by guille on 07/10/13.\n//  Copyright (c) 2013 Guillermo Gonzalez. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n@interface TGRViewController : UIViewController\n\n@end\n"
  },
  {
    "path": "VertigoSample/VertigoSample/TGRViewController.m",
    "content": "//\n//  TGRViewController.m\n//  VertigoSample\n//\n//  Created by guille on 07/10/13.\n//  Copyright (c) 2013 Guillermo Gonzalez. All rights reserved.\n//\n\n#import \"TGRViewController.h\"\n#import \"TGRImageViewController.h\"\n#import \"TGRImageZoomAnimationController.h\"\n\n@interface TGRViewController () <UIViewControllerTransitioningDelegate>\n\n@property (weak, nonatomic) IBOutlet UIButton *imageButton;\n\n@end\n\n@implementation TGRViewController\n\n- (void)viewDidLoad {\n    [super viewDidLoad];\n\tself.imageButton.imageView.contentMode = UIViewContentModeScaleAspectFill;\n}\n\n#pragma mark - UIViewControllerTransitioningDelegate methods\n\n- (id<UIViewControllerAnimatedTransitioning>)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source {\n    if ([presented isKindOfClass:TGRImageViewController.class]) {\n        return [[TGRImageZoomAnimationController alloc] initWithReferenceImageView:self.imageButton.imageView];\n    }\n    return nil;\n}\n\n- (id<UIViewControllerAnimatedTransitioning>)animationControllerForDismissedController:(UIViewController *)dismissed {\n    if ([dismissed isKindOfClass:TGRImageViewController.class]) {\n        return [[TGRImageZoomAnimationController alloc] initWithReferenceImageView:self.imageButton.imageView];\n    }\n    return nil;\n}\n\n#pragma mark - Private methods\n\n- (IBAction)showImage {\n    TGRImageViewController *viewController = [[TGRImageViewController alloc] initWithImage:[self.imageButton imageForState:UIControlStateNormal]];\n    viewController.transitioningDelegate = self;\n    \n    [self presentViewController:viewController animated:YES completion:nil];\n}\n\n@end\n"
  },
  {
    "path": "VertigoSample/VertigoSample/VertigoSample-Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleDisplayName</key>\n\t<string>${PRODUCT_NAME}</string>\n\t<key>CFBundleExecutable</key>\n\t<string>${EXECUTABLE_NAME}</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>com.gonzalezreal.${PRODUCT_NAME:rfc1034identifier}</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>${PRODUCT_NAME}</string>\n\t<key>CFBundlePackageType</key>\n\t<string>APPL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1.0</string>\n\t<key>LSRequiresIPhoneOS</key>\n\t<true/>\n\t<key>UIMainStoryboardFile</key>\n\t<string>Main</string>\n\t<key>UIRequiredDeviceCapabilities</key>\n\t<array>\n\t\t<string>armv7</string>\n\t</array>\n\t<key>UISupportedInterfaceOrientations</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t\t<string>UIInterfaceOrientationLandscapeRight</string>\n\t</array>\n</dict>\n</plist>\n"
  },
  {
    "path": "VertigoSample/VertigoSample/VertigoSample-Prefix.pch",
    "content": "//\n//  Prefix header\n//\n//  The contents of this file are implicitly included at the beginning of every source file.\n//\n\n#import <Availability.h>\n\n#ifndef __IPHONE_5_0\n#warning \"This project uses features only available in iOS SDK 5.0 and later.\"\n#endif\n\n#ifdef __OBJC__\n    #import <UIKit/UIKit.h>\n    #import <Foundation/Foundation.h>\n#endif\n"
  },
  {
    "path": "VertigoSample/VertigoSample/en.lproj/InfoPlist.strings",
    "content": "/* Localized versions of Info.plist keys */\n\n"
  },
  {
    "path": "VertigoSample/VertigoSample/main.m",
    "content": "//\n//  main.m\n//  VertigoSample\n//\n//  Created by guille on 07/10/13.\n//  Copyright (c) 2013 Guillermo Gonzalez. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n#import \"TGRAppDelegate.h\"\n\nint main(int argc, char * argv[])\n{\n    @autoreleasepool {\n        return UIApplicationMain(argc, argv, nil, NSStringFromClass([TGRAppDelegate class]));\n    }\n}\n"
  },
  {
    "path": "VertigoSample/VertigoSample.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t99A9FE201802D6F100074858 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 99A9FE1F1802D6F100074858 /* Foundation.framework */; };\n\t\t99A9FE221802D6F100074858 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 99A9FE211802D6F100074858 /* CoreGraphics.framework */; };\n\t\t99A9FE241802D6F100074858 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 99A9FE231802D6F100074858 /* UIKit.framework */; };\n\t\t99A9FE2A1802D6F100074858 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 99A9FE281802D6F100074858 /* InfoPlist.strings */; };\n\t\t99A9FE2C1802D6F100074858 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 99A9FE2B1802D6F100074858 /* main.m */; };\n\t\t99A9FE301802D6F100074858 /* TGRAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 99A9FE2F1802D6F100074858 /* TGRAppDelegate.m */; };\n\t\t99A9FE331802D6F100074858 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 99A9FE311802D6F100074858 /* Main.storyboard */; };\n\t\t99A9FE361802D6F100074858 /* TGRViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 99A9FE351802D6F100074858 /* TGRViewController.m */; };\n\t\t99A9FE381802D6F100074858 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 99A9FE371802D6F100074858 /* Images.xcassets */; };\n\t\t99A9FE3F1802D6F100074858 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 99A9FE3E1802D6F100074858 /* XCTest.framework */; };\n\t\t99A9FE401802D6F100074858 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 99A9FE1F1802D6F100074858 /* Foundation.framework */; };\n\t\t99A9FE411802D6F100074858 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 99A9FE231802D6F100074858 /* UIKit.framework */; };\n\t\t99A9FE491802D6F100074858 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 99A9FE471802D6F100074858 /* InfoPlist.strings */; };\n\t\t99A9FE4B1802D6F100074858 /* VertigoSampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 99A9FE4A1802D6F100074858 /* VertigoSampleTests.m */; };\n\t\t99A9FE681802D76800074858 /* TGRImageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 99A9FE621802D76800074858 /* TGRImageViewController.m */; };\n\t\t99A9FE691802D76800074858 /* TGRImageViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 99A9FE631802D76800074858 /* TGRImageViewController.xib */; };\n\t\t99A9FE6A1802D76800074858 /* TGRImageZoomAnimationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 99A9FE651802D76800074858 /* TGRImageZoomAnimationController.m */; };\n\t\t99A9FE6B1802D76800074858 /* UIImage+AspectFit.m in Sources */ = {isa = PBXBuildFile; fileRef = 99A9FE671802D76800074858 /* UIImage+AspectFit.m */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t99A9FE421802D6F100074858 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 99A9FE141802D6F100074858 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 99A9FE1B1802D6F100074858;\n\t\t\tremoteInfo = VertigoSample;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t99A9FE1C1802D6F100074858 /* VertigoSample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = VertigoSample.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t99A9FE1F1802D6F100074858 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };\n\t\t99A9FE211802D6F100074858 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };\n\t\t99A9FE231802D6F100074858 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };\n\t\t99A9FE271802D6F100074858 /* VertigoSample-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = \"VertigoSample-Info.plist\"; sourceTree = \"<group>\"; };\n\t\t99A9FE291802D6F100074858 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = \"<group>\"; };\n\t\t99A9FE2B1802D6F100074858 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = \"<group>\"; };\n\t\t99A9FE2D1802D6F100074858 /* VertigoSample-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = \"VertigoSample-Prefix.pch\"; sourceTree = \"<group>\"; };\n\t\t99A9FE2E1802D6F100074858 /* TGRAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TGRAppDelegate.h; sourceTree = \"<group>\"; };\n\t\t99A9FE2F1802D6F100074858 /* TGRAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TGRAppDelegate.m; sourceTree = \"<group>\"; };\n\t\t99A9FE321802D6F100074858 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\t99A9FE341802D6F100074858 /* TGRViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TGRViewController.h; sourceTree = \"<group>\"; };\n\t\t99A9FE351802D6F100074858 /* TGRViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TGRViewController.m; sourceTree = \"<group>\"; };\n\t\t99A9FE371802D6F100074858 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = \"<group>\"; };\n\t\t99A9FE3D1802D6F100074858 /* VertigoSampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = VertigoSampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t99A9FE3E1802D6F100074858 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };\n\t\t99A9FE461802D6F100074858 /* VertigoSampleTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = \"VertigoSampleTests-Info.plist\"; sourceTree = \"<group>\"; };\n\t\t99A9FE481802D6F100074858 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = \"<group>\"; };\n\t\t99A9FE4A1802D6F100074858 /* VertigoSampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VertigoSampleTests.m; sourceTree = \"<group>\"; };\n\t\t99A9FE611802D76800074858 /* TGRImageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TGRImageViewController.h; sourceTree = \"<group>\"; };\n\t\t99A9FE621802D76800074858 /* TGRImageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TGRImageViewController.m; sourceTree = \"<group>\"; };\n\t\t99A9FE631802D76800074858 /* TGRImageViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TGRImageViewController.xib; sourceTree = \"<group>\"; };\n\t\t99A9FE641802D76800074858 /* TGRImageZoomAnimationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TGRImageZoomAnimationController.h; sourceTree = \"<group>\"; };\n\t\t99A9FE651802D76800074858 /* TGRImageZoomAnimationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TGRImageZoomAnimationController.m; sourceTree = \"<group>\"; };\n\t\t99A9FE661802D76800074858 /* UIImage+AspectFit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = \"UIImage+AspectFit.h\"; sourceTree = \"<group>\"; };\n\t\t99A9FE671802D76800074858 /* UIImage+AspectFit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = \"UIImage+AspectFit.m\"; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t99A9FE191802D6F100074858 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t99A9FE221802D6F100074858 /* CoreGraphics.framework in Frameworks */,\n\t\t\t\t99A9FE241802D6F100074858 /* UIKit.framework in Frameworks */,\n\t\t\t\t99A9FE201802D6F100074858 /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t99A9FE3A1802D6F100074858 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t99A9FE3F1802D6F100074858 /* XCTest.framework in Frameworks */,\n\t\t\t\t99A9FE411802D6F100074858 /* UIKit.framework in Frameworks */,\n\t\t\t\t99A9FE401802D6F100074858 /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t99A9FE131802D6F100074858 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t99A9FE601802D76700074858 /* Vertigo */,\n\t\t\t\t99A9FE251802D6F100074858 /* VertigoSample */,\n\t\t\t\t99A9FE441802D6F100074858 /* VertigoSampleTests */,\n\t\t\t\t99A9FE1E1802D6F100074858 /* Frameworks */,\n\t\t\t\t99A9FE1D1802D6F100074858 /* Products */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t99A9FE1D1802D6F100074858 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t99A9FE1C1802D6F100074858 /* VertigoSample.app */,\n\t\t\t\t99A9FE3D1802D6F100074858 /* VertigoSampleTests.xctest */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t99A9FE1E1802D6F100074858 /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t99A9FE1F1802D6F100074858 /* Foundation.framework */,\n\t\t\t\t99A9FE211802D6F100074858 /* CoreGraphics.framework */,\n\t\t\t\t99A9FE231802D6F100074858 /* UIKit.framework */,\n\t\t\t\t99A9FE3E1802D6F100074858 /* XCTest.framework */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t99A9FE251802D6F100074858 /* VertigoSample */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t99A9FE2E1802D6F100074858 /* TGRAppDelegate.h */,\n\t\t\t\t99A9FE2F1802D6F100074858 /* TGRAppDelegate.m */,\n\t\t\t\t99A9FE311802D6F100074858 /* Main.storyboard */,\n\t\t\t\t99A9FE341802D6F100074858 /* TGRViewController.h */,\n\t\t\t\t99A9FE351802D6F100074858 /* TGRViewController.m */,\n\t\t\t\t99A9FE371802D6F100074858 /* Images.xcassets */,\n\t\t\t\t99A9FE261802D6F100074858 /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = VertigoSample;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t99A9FE261802D6F100074858 /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t99A9FE271802D6F100074858 /* VertigoSample-Info.plist */,\n\t\t\t\t99A9FE281802D6F100074858 /* InfoPlist.strings */,\n\t\t\t\t99A9FE2B1802D6F100074858 /* main.m */,\n\t\t\t\t99A9FE2D1802D6F100074858 /* VertigoSample-Prefix.pch */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t99A9FE441802D6F100074858 /* VertigoSampleTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t99A9FE4A1802D6F100074858 /* VertigoSampleTests.m */,\n\t\t\t\t99A9FE451802D6F100074858 /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = VertigoSampleTests;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t99A9FE451802D6F100074858 /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t99A9FE461802D6F100074858 /* VertigoSampleTests-Info.plist */,\n\t\t\t\t99A9FE471802D6F100074858 /* InfoPlist.strings */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t99A9FE601802D76700074858 /* Vertigo */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t99A9FE611802D76800074858 /* TGRImageViewController.h */,\n\t\t\t\t99A9FE621802D76800074858 /* TGRImageViewController.m */,\n\t\t\t\t99A9FE631802D76800074858 /* TGRImageViewController.xib */,\n\t\t\t\t99A9FE641802D76800074858 /* TGRImageZoomAnimationController.h */,\n\t\t\t\t99A9FE651802D76800074858 /* TGRImageZoomAnimationController.m */,\n\t\t\t\t99A9FE661802D76800074858 /* UIImage+AspectFit.h */,\n\t\t\t\t99A9FE671802D76800074858 /* UIImage+AspectFit.m */,\n\t\t\t);\n\t\t\tname = Vertigo;\n\t\t\tpath = ../Vertigo;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\t99A9FE1B1802D6F100074858 /* VertigoSample */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 99A9FE4E1802D6F100074858 /* Build configuration list for PBXNativeTarget \"VertigoSample\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t99A9FE181802D6F100074858 /* Sources */,\n\t\t\t\t99A9FE191802D6F100074858 /* Frameworks */,\n\t\t\t\t99A9FE1A1802D6F100074858 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = VertigoSample;\n\t\t\tproductName = VertigoSample;\n\t\t\tproductReference = 99A9FE1C1802D6F100074858 /* VertigoSample.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n\t\t99A9FE3C1802D6F100074858 /* VertigoSampleTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 99A9FE511802D6F100074858 /* Build configuration list for PBXNativeTarget \"VertigoSampleTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t99A9FE391802D6F100074858 /* Sources */,\n\t\t\t\t99A9FE3A1802D6F100074858 /* Frameworks */,\n\t\t\t\t99A9FE3B1802D6F100074858 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t99A9FE431802D6F100074858 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = VertigoSampleTests;\n\t\t\tproductName = VertigoSampleTests;\n\t\t\tproductReference = 99A9FE3D1802D6F100074858 /* VertigoSampleTests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\t99A9FE141802D6F100074858 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tCLASSPREFIX = TGR;\n\t\t\t\tLastUpgradeCheck = 0500;\n\t\t\t\tORGANIZATIONNAME = \"Guillermo Gonzalez\";\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t99A9FE3C1802D6F100074858 = {\n\t\t\t\t\t\tTestTargetID = 99A9FE1B1802D6F100074858;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = 99A9FE171802D6F100074858 /* Build configuration list for PBXProject \"VertigoSample\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = English;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = 99A9FE131802D6F100074858;\n\t\t\tproductRefGroup = 99A9FE1D1802D6F100074858 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t99A9FE1B1802D6F100074858 /* VertigoSample */,\n\t\t\t\t99A9FE3C1802D6F100074858 /* VertigoSampleTests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t99A9FE1A1802D6F100074858 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t99A9FE381802D6F100074858 /* Images.xcassets in Resources */,\n\t\t\t\t99A9FE2A1802D6F100074858 /* InfoPlist.strings in Resources */,\n\t\t\t\t99A9FE691802D76800074858 /* TGRImageViewController.xib in Resources */,\n\t\t\t\t99A9FE331802D6F100074858 /* Main.storyboard in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t99A9FE3B1802D6F100074858 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t99A9FE491802D6F100074858 /* InfoPlist.strings in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t99A9FE181802D6F100074858 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t99A9FE6A1802D76800074858 /* TGRImageZoomAnimationController.m in Sources */,\n\t\t\t\t99A9FE301802D6F100074858 /* TGRAppDelegate.m in Sources */,\n\t\t\t\t99A9FE2C1802D6F100074858 /* main.m in Sources */,\n\t\t\t\t99A9FE6B1802D76800074858 /* UIImage+AspectFit.m in Sources */,\n\t\t\t\t99A9FE681802D76800074858 /* TGRImageViewController.m in Sources */,\n\t\t\t\t99A9FE361802D6F100074858 /* TGRViewController.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t99A9FE391802D6F100074858 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t99A9FE4B1802D6F100074858 /* VertigoSampleTests.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\t99A9FE431802D6F100074858 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 99A9FE1B1802D6F100074858 /* VertigoSample */;\n\t\t\ttargetProxy = 99A9FE421802D6F100074858 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin PBXVariantGroup section */\n\t\t99A9FE281802D6F100074858 /* InfoPlist.strings */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t99A9FE291802D6F100074858 /* en */,\n\t\t\t);\n\t\t\tname = InfoPlist.strings;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t99A9FE311802D6F100074858 /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t99A9FE321802D6F100074858 /* Base */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t99A9FE471802D6F100074858 /* InfoPlist.strings */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t99A9FE481802D6F100074858 /* en */,\n\t\t\t);\n\t\t\tname = InfoPlist.strings;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXVariantGroup section */\n\n/* Begin XCBuildConfiguration section */\n\t\t99A9FE4C1802D6F100074858 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tARCHS = \"$(ARCHS_STANDARD_INCLUDING_64_BIT)\";\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_SYMBOLS_PRIVATE_EXTERN = NO;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 7.0;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t99A9FE4D1802D6F100074858 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tARCHS = \"$(ARCHS_STANDARD_INCLUDING_64_BIT)\";\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = YES;\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 7.0;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t99A9FE4F1802D6F100074858 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;\n\t\t\t\tGCC_PRECOMPILE_PREFIX_HEADER = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"VertigoSample/VertigoSample-Prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"VertigoSample/VertigoSample-Info.plist\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tWRAPPER_EXTENSION = app;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t99A9FE501802D6F100074858 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;\n\t\t\t\tGCC_PRECOMPILE_PREFIX_HEADER = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"VertigoSample/VertigoSample-Prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"VertigoSample/VertigoSample-Info.plist\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tWRAPPER_EXTENSION = app;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t99A9FE521802D6F100074858 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tARCHS = \"$(ARCHS_STANDARD_INCLUDING_64_BIT)\";\n\t\t\t\tBUNDLE_LOADER = \"$(BUILT_PRODUCTS_DIR)/VertigoSample.app/VertigoSample\";\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(SDKROOT)/Developer/Library/Frameworks\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"$(DEVELOPER_FRAMEWORKS_DIR)\",\n\t\t\t\t);\n\t\t\t\tGCC_PRECOMPILE_PREFIX_HEADER = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"VertigoSample/VertigoSample-Prefix.pch\";\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = \"VertigoSampleTests/VertigoSampleTests-Info.plist\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTEST_HOST = \"$(BUNDLE_LOADER)\";\n\t\t\t\tWRAPPER_EXTENSION = xctest;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t99A9FE531802D6F100074858 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tARCHS = \"$(ARCHS_STANDARD_INCLUDING_64_BIT)\";\n\t\t\t\tBUNDLE_LOADER = \"$(BUILT_PRODUCTS_DIR)/VertigoSample.app/VertigoSample\";\n\t\t\t\tFRAMEWORK_SEARCH_PATHS = (\n\t\t\t\t\t\"$(SDKROOT)/Developer/Library/Frameworks\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"$(DEVELOPER_FRAMEWORKS_DIR)\",\n\t\t\t\t);\n\t\t\t\tGCC_PRECOMPILE_PREFIX_HEADER = YES;\n\t\t\t\tGCC_PREFIX_HEADER = \"VertigoSample/VertigoSample-Prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"VertigoSampleTests/VertigoSampleTests-Info.plist\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTEST_HOST = \"$(BUNDLE_LOADER)\";\n\t\t\t\tWRAPPER_EXTENSION = xctest;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t99A9FE171802D6F100074858 /* Build configuration list for PBXProject \"VertigoSample\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t99A9FE4C1802D6F100074858 /* Debug */,\n\t\t\t\t99A9FE4D1802D6F100074858 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t99A9FE4E1802D6F100074858 /* Build configuration list for PBXNativeTarget \"VertigoSample\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t99A9FE4F1802D6F100074858 /* Debug */,\n\t\t\t\t99A9FE501802D6F100074858 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t};\n\t\t99A9FE511802D6F100074858 /* Build configuration list for PBXNativeTarget \"VertigoSampleTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t99A9FE521802D6F100074858 /* Debug */,\n\t\t\t\t99A9FE531802D6F100074858 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = 99A9FE141802D6F100074858 /* Project object */;\n}\n"
  },
  {
    "path": "VertigoSample/VertigoSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:VertigoSample.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "VertigoSample/VertigoSampleTests/VertigoSampleTests-Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>${EXECUTABLE_NAME}</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>com.gonzalezreal.${PRODUCT_NAME:rfc1034identifier}</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundlePackageType</key>\n\t<string>BNDL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "VertigoSample/VertigoSampleTests/VertigoSampleTests.m",
    "content": "//\n//  VertigoSampleTests.m\n//  VertigoSampleTests\n//\n//  Created by guille on 07/10/13.\n//  Copyright (c) 2013 Guillermo Gonzalez. All rights reserved.\n//\n\n#import <XCTest/XCTest.h>\n\n@interface VertigoSampleTests : XCTestCase\n\n@end\n\n@implementation VertigoSampleTests\n\n- (void)setUp\n{\n    [super setUp];\n    // Put setup code here. This method is called before the invocation of each test method in the class.\n}\n\n- (void)tearDown\n{\n    // Put teardown code here. This method is called after the invocation of each test method in the class.\n    [super tearDown];\n}\n\n- (void)testExample\n{\n    XCTFail(@\"No implementation for \\\"%s\\\"\", __PRETTY_FUNCTION__);\n}\n\n@end\n"
  },
  {
    "path": "VertigoSample/VertigoSampleTests/en.lproj/InfoPlist.strings",
    "content": "/* Localized versions of Info.plist keys */\n\n"
  }
]