[
  {
    "path": ".gitignore",
    "content": "# Xcode\n#\nbuild/\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!default.perspectivev3\nxcuserdata\n*.xccheckout\n*.moved-aside\nDerivedData\n*.hmap\n*.ipa\n*.xcuserstate\n\n# CocoaPods\n#\n# We recommend against adding the Pods directory to your .gitignore. However\n# you should judge for yourself, the pros and cons are mentioned at:\n# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control\n#\n# Pods/\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Vladimir Angelov\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 all\ncopies 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 THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# VLDContextSheet\n\nA clone of the Pinterest iOS app context menu.\n\n![BackgroundImage](https://github.com/vangelov/VLDContextSheet/blob/master/Screenshot.png)\n\n## Example Usage\n\n```objective-c\nVLDContextSheetItem *item1 = [[VLDContextSheetItem alloc] initWithTitle: @\"Gift\"\n                                                                  image: [UIImage imageNamed: @\"gift\"]\n                                                       highlightedImage: [UIImage imageNamed: @\"gift_highlighted\"]];\n\nVLDContextSheetItem *item2 = ...\n    \nVLDContextSheetItem *item3 = ...\n    \nself.contextSheet = [[VLDContextSheet alloc] initWithItems: @[ item1, item2, item3 ]];\nself.contextSheet.delegate = self;\n```\n\n### Show\n\n```objective-c\n- (void) longPressed: (UIGestureRecognizer *) gestureRecognizer {\n    if(gestureRecognizer.state == UIGestureRecognizerStateBegan) {\n\n        [self.contextSheet startWithGestureRecognizer: gestureRecognizer\n                                               inView: self.view];\n    }\n}\n```\n### Delegate method\n\n```objective-c\n- (void) contextSheet: (VLDContextSheet *) contextSheet didSelectItem: (VLDContextSheetItem *) item {\n    NSLog(@\"Selected item: %@\", item.title);\n}\n```\n\n### Hide\n\n```objective-c\n[self.contextSheet end];\n```\n\nFor more info check the Example project.\n\n       \n"
  },
  {
    "path": "VLDContextSheet/VLDContextSheet.h",
    "content": "//\n//  VLDContextSheet.h\n//\n//  Created by Vladimir Angelov on 2/7/14.\n//  Copyright (c) 2014 Vladimir Angelov. All rights reserved.\n//\n\n#import <Foundation/Foundation.h>\n\n@class VLDContextSheet;\n@class VLDContextSheetItem;\n\n@protocol VLDContextSheetDelegate <NSObject>\n\n- (void) contextSheet: (VLDContextSheet *) contextSheet didSelectItem: (VLDContextSheetItem *) item;\n\n@end\n\n@interface VLDContextSheet : UIView\n\n@property (assign, nonatomic) NSInteger radius;\n@property (assign, nonatomic) CGFloat rotation;\n@property (assign, nonatomic) CGFloat rangeAngle;\n@property (strong, nonatomic) NSArray *items;\n@property (assign, nonatomic) id<VLDContextSheetDelegate> delegate;\n\n- (id) initWithItems: (NSArray *) items;\n\n- (void) startWithGestureRecognizer: (UIGestureRecognizer *) gestureRecognizer\n                             inView: (UIView *) view;\n- (void) end;\n\n@end\n"
  },
  {
    "path": "VLDContextSheet/VLDContextSheet.m",
    "content": "//\n//  VLDContextSheet.m\n//\n//  Created by Vladimir Angelov on 2/7/14.\n//  Copyright (c) 2014 Vladimir Angelov. All rights reserved.\n//\n\n#import \"VLDContextSheetItemView.h\"\n#import \"VLDContextSheet.h\"\n\ntypedef struct {\n    CGRect rect;\n    CGFloat rotation;\n} VLDZone;\n\nstatic const NSInteger VLDMaxTouchDistanceAllowance = 40;\nstatic const NSInteger VLDZonesCount = 10;\n\nstatic inline VLDZone VLDZoneMake(CGRect rect, CGFloat rotation) {\n    VLDZone zone;\n    \n    zone.rect = rect;\n    zone.rotation = rotation;\n    \n    return zone;\n}\n\nstatic CGFloat VLDVectorDotProduct(CGPoint vector1, CGPoint vector2) {\n    return vector1.x * vector2.x + vector1.y * vector2.y;\n}\n\nstatic CGFloat VLDVectorLength(CGPoint vector) {\n    return sqrt(vector.x * vector.x + vector.y * vector.y);\n}\n\nstatic CGRect VLDOrientedScreenBounds() {\n    CGRect bounds = [UIScreen mainScreen].bounds;\n    \n    if(UIInterfaceOrientationIsLandscape([UIApplication sharedApplication].statusBarOrientation) &&\n        bounds.size.width < bounds.size.height) {\n        \n        bounds.size = CGSizeMake(bounds.size.height, bounds.size.width);\n    }\n    \n    return bounds;\n}\n\n@interface VLDContextSheet ()\n\n@property (strong, nonatomic) NSArray *itemViews;\n@property (strong, nonatomic) UIView *centerView;\n@property (strong, nonatomic) UIView *backgroundView;\n@property (strong, nonatomic) VLDContextSheetItemView *selectedItemView;\n@property (assign, nonatomic) BOOL openAnimationFinished;\n@property (assign, nonatomic) CGPoint touchCenter;\n@property (strong, nonatomic) UIGestureRecognizer *starterGestureRecognizer;\n\n@end\n\n@implementation VLDContextSheet {\n    \n    VLDZone zones[VLDZonesCount];\n}\n\n- (id) initWithFrame: (CGRect) frame {\n    return [self initWithItems: nil];\n}\n\n- (id) initWithItems: (NSArray *) items {\n    self = [super initWithFrame: VLDOrientedScreenBounds()];\n    \n    if(self) {\n        _items = items;\n        _radius = 100;\n        _rangeAngle = M_PI / 1.6;\n        \n        [self createSubviews];\n    }\n    \n    return self;\n}\n\n- (void) dealloc {\n    [self.starterGestureRecognizer removeTarget: self action: @selector(gestureRecognizedStateObserver:)];\n}\n\n- (void) createSubviews {\n    _backgroundView = [[UIView alloc] initWithFrame: CGRectZero];\n    _backgroundView.backgroundColor = [UIColor colorWithWhite: 0 alpha: 0.6];\n    [self addSubview: self.backgroundView];\n    \n    _itemViews = [[NSMutableArray alloc] init];\n    \n    for(VLDContextSheetItem *item in _items) {\n        VLDContextSheetItemView *itemView = [[VLDContextSheetItemView alloc] init];\n        itemView.item = item;\n        \n        [self addSubview: itemView];\n        [(NSMutableArray *) _itemViews addObject: itemView];\n    }\n    \n    VLDContextSheetItemView *sampleItemView = _itemViews[0];\n    \n    _centerView = [[UIView alloc] initWithFrame: CGRectMake(0, 0, sampleItemView.frame.size.width, sampleItemView.frame.size.width)];\n    _centerView.layer.cornerRadius = 25;\n    _centerView.layer.borderWidth = 2;\n    _centerView.layer.borderColor = [UIColor grayColor].CGColor;\n    [self addSubview: _centerView];\n\n}\n\n- (void) layoutSubviews {\n    [super layoutSubviews];\n        \n    self.backgroundView.frame = self.bounds;\n}\n\n- (void) setCenterViewHighlighted: (BOOL) highlighted {\n    _centerView.backgroundColor = highlighted ? [UIColor colorWithWhite: 0.5 alpha: 0.4] : nil;\n}\n\n- (void) createZones {\n    CGRect screenRect = self.bounds;\n    \n    NSInteger rowHeight1 = 120;\n    \n    zones[0] = VLDZoneMake(CGRectMake(0, 0, 70, rowHeight1), 0.8);\n    zones[1] = VLDZoneMake(CGRectMake(zones[0].rect.size.width, 0, 40, rowHeight1), 0.4);\n    \n    zones[2] = VLDZoneMake(CGRectMake(zones[1].rect.origin.x + zones[1].rect.size.width, 0, screenRect.size.width - 2 *(zones[0].rect.size.width + zones[1].rect.size.width), rowHeight1), 0);\n    \n    zones[3] = VLDZoneMake(CGRectMake(zones[2].rect.origin.x + zones[2].rect.size.width, 0, zones[1].rect.size.width, rowHeight1),  -zones[1].rotation);\n    zones[4] = VLDZoneMake(CGRectMake(zones[3].rect.origin.x + zones[3].rect.size.width, 0, zones[0].rect.size.width, rowHeight1), -zones[0].rotation);\n    \n    NSInteger rowHeight2 = screenRect.size.height - zones[0].rect.size.height;\n    \n    zones[5] = VLDZoneMake(CGRectMake(0, zones[0].rect.size.height, zones[0].rect.size.width, rowHeight2), M_PI - zones[0].rotation);\n    zones[6] = VLDZoneMake(CGRectMake(zones[5].rect.size.width, zones[5].rect.origin.y, zones[1].rect.size.width, rowHeight2), M_PI - zones[1].rotation);\n    zones[7] = VLDZoneMake(CGRectMake(zones[6].rect.origin.x + zones[6].rect.size.width, zones[5].rect.origin.y, zones[2].rect.size.width, rowHeight2), M_PI - zones[2].rotation);\n    zones[8] = VLDZoneMake(CGRectMake(zones[7].rect.origin.x + zones[7].rect.size.width, zones[5].rect.origin.y, zones[3].rect.size.width, rowHeight2), M_PI - zones[3].rotation);\n    zones[9] = VLDZoneMake(CGRectMake(zones[8].rect.origin.x + zones[8].rect.size.width, zones[5].rect.origin.y, zones[4].rect.size.width, rowHeight2), M_PI - zones[4].rotation);\n}\n\n/* Only used for testing the touch zones */\n- (void) drawZones {\n    for(int i = 0; i < VLDZonesCount; i++) {\n        UIView *zoneView = [[UIView alloc] initWithFrame: zones[i].rect];\n        \n        CGFloat hue = ( arc4random() % 256 / 256.0 );\n        CGFloat saturation = ( arc4random() % 128 / 256.0 ) + 0.5;\n        CGFloat brightness = ( arc4random() % 128 / 256.0 ) + 0.5;\n        UIColor *color = [UIColor colorWithHue:hue saturation:saturation brightness:brightness alpha:1];\n        \n        zoneView.backgroundColor = color;\n        [self addSubview: zoneView];\n    }\n}\n\n- (void) updateItemView: (UIView *) itemView\n          touchDistance: (CGFloat) touchDistance\n               animated: (BOOL) animated  {\n    \n    if(!animated) {\n        [self updateItemViewNotAnimated: itemView touchDistance: touchDistance];\n    }\n    else  {        \n        [UIView animateWithDuration: 0.4\n                              delay: 0\n             usingSpringWithDamping: 0.45\n              initialSpringVelocity: 7.5\n                            options: UIViewAnimationOptionBeginFromCurrentState\n                         animations: ^{\n                             [self updateItemViewNotAnimated: itemView\n                                               touchDistance: touchDistance];\n                         }\n                         completion: nil];\n    }\n}\n\n- (void) updateItemViewNotAnimated: (UIView *) itemView touchDistance: (CGFloat) touchDistance  {\n    NSInteger itemIndex = [self.itemViews indexOfObject: itemView];\n    CGFloat angle = -0.65 + self.rotation + itemIndex * (self.rangeAngle / self.itemViews.count);\n    \n    CGFloat resistanceFactor = 1.0 / (touchDistance > 0 ? 6.0 : 3.0);\n    \n    itemView.center = CGPointMake(self.touchCenter.x + (self.radius + touchDistance * resistanceFactor) * sin(angle),\n                                  self.touchCenter.y + (self.radius + touchDistance * resistanceFactor) * cos(angle));\n    \n    CGFloat scale = 1 + 0.2 * (fabs(touchDistance) / self.radius);\n    \n    itemView.transform = CGAffineTransformMakeScale(scale, scale);\n}\n\n- (void) openItemsFromCenterView {\n    self.openAnimationFinished = NO;\n    \n    for(int i = 0; i < self.itemViews.count; i++) {\n        VLDContextSheetItemView *itemView = self.itemViews[i];\n        itemView.transform = CGAffineTransformIdentity;\n        itemView.center = self.touchCenter;\n        [itemView setHighlighted: NO animated: NO];\n        \n        [UIView animateWithDuration: 0.5\n                              delay: i * 0.01\n             usingSpringWithDamping: 0.45\n              initialSpringVelocity: 7.5\n                            options: 0\n                         animations: ^{\n                             [self updateItemViewNotAnimated: itemView touchDistance: 0.0];\n                             \n                         }\n                         completion: ^(BOOL finished) {\n                             self.openAnimationFinished = YES;\n                         }];\n    }\n}\n\n- (void) closeItemsToCenterView {\n    [UIView animateWithDuration: 0.1\n                          delay: 0.0\n                        options: UIViewAnimationOptionCurveEaseInOut\n                     animations:^{\n                         self.alpha = 0.0;\n                     }\n                     completion:^(BOOL finished) {\n                         [self removeFromSuperview];\n                         self.alpha = 1.0;\n                     }];\n    \n}\n\n- (void) startWithGestureRecognizer: (UIGestureRecognizer *) gestureRecognizer inView: (UIView *) view {\n    [view addSubview: self];\n    \n    self.frame = VLDOrientedScreenBounds();\n    [self createZones];\n    \n    self.starterGestureRecognizer = gestureRecognizer;\n    \n    self.touchCenter = [self.starterGestureRecognizer locationInView: self];\n    self.centerView.center = self.touchCenter;\n    self.selectedItemView = nil;\n    [self setCenterViewHighlighted: YES];\n    self.rotation = [self rotationForCenter: self.centerView.center];\n    \n    [self openItemsFromCenterView];\n    \n    [self.starterGestureRecognizer addTarget: self action: @selector(gestureRecognizedStateObserver:)];\n}\n\n- (CGFloat) rotationForCenter: (CGPoint) center {\n    for(NSInteger i = 0; i < 10; i++) {\n        VLDZone zone = zones[i];\n        \n        if(CGRectContainsPoint(zone.rect, center)) {\n            return zone.rotation;\n        }\n    }\n    \n    return 0;\n}\n\n- (void) gestureRecognizedStateObserver: (UIGestureRecognizer *) gestureRecognizer {\n    if(self.openAnimationFinished && gestureRecognizer.state == UIGestureRecognizerStateChanged) {\n        CGPoint touchPoint = [gestureRecognizer locationInView: self];\n        \n        [self updateItemViewsForTouchPoint: touchPoint];\n    }\n    else if(gestureRecognizer.state == UIGestureRecognizerStateEnded || gestureRecognizer.state == UIGestureRecognizerStateCancelled) {\n        if(gestureRecognizer.state == UIGestureRecognizerStateCancelled) {\n            self.selectedItemView = nil;\n        }\n        \n        [self end];\n    }\n}\n\n- (CGFloat) signedTouchDistanceForTouchVector: (CGPoint) touchVector itemView: (UIView *) itemView {\n    CGFloat touchDistance = VLDVectorLength(touchVector);\n    \n    CGPoint oldCenter = itemView.center;\n    CGAffineTransform oldTransform = itemView.transform;\n    \n    [self updateItemViewNotAnimated: itemView touchDistance: self.radius + 40];\n    \n    if(!CGRectContainsRect(self.bounds, itemView.frame)) {\n        touchDistance = -touchDistance;\n    }\n    \n    itemView.center = oldCenter;\n    itemView.transform = oldTransform;\n    \n    return touchDistance;\n}\n\n- (void) updateItemViewsForTouchPoint: (CGPoint) touchPoint {\n    CGPoint touchVector = {touchPoint.x - self.touchCenter.x, touchPoint.y - self.touchCenter.y};\n    VLDContextSheetItemView *itemView = [self itemViewForTouchVector: touchVector];\n    CGFloat touchDistance = [self signedTouchDistanceForTouchVector: touchVector itemView: itemView];\n    \n    if(fabs(touchDistance) <= VLDMaxTouchDistanceAllowance) {\n        self.centerView.center = CGPointMake(self.touchCenter.x + touchVector.x, self.touchCenter.y + touchVector.y);\n        [self setCenterViewHighlighted: YES];\n    }\n    else {\n        [self setCenterViewHighlighted: NO];\n        \n        [UIView animateWithDuration: 0.4\n                              delay: 0\n             usingSpringWithDamping: 0.35\n              initialSpringVelocity: 7.5\n                            options: UIViewAnimationOptionBeginFromCurrentState\n                         animations: ^{\n                             self.centerView.center = self.touchCenter;\n                             \n                         }\n                         completion: nil];\n    }\n    \n    if(touchDistance > self.radius + VLDMaxTouchDistanceAllowance) {\n        [itemView setHighlighted: NO animated: YES];\n        \n        [self updateItemView: itemView\n               touchDistance: 0.0\n                    animated: YES];\n        \n        self.selectedItemView = nil;\n        \n        return;\n    }\n    \n    if(itemView != self.selectedItemView) {\n        [self.selectedItemView setHighlighted: NO animated: YES];\n        \n        [self updateItemView: self.selectedItemView\n               touchDistance: 0.0\n                    animated: YES];\n        \n        [self updateItemView: itemView\n               touchDistance: touchDistance\n                    animated: YES];\n        \n        [self bringSubviewToFront: itemView];\n    }\n    else  {\n        [self updateItemView: itemView\n               touchDistance: touchDistance\n                    animated: NO];\n    }\n    \n    if(fabs(touchDistance) > VLDMaxTouchDistanceAllowance) {\n        [itemView setHighlighted: YES animated: YES];\n    }\n    \n    self.selectedItemView = itemView;\n}\n\n- (VLDContextSheetItemView *) itemViewForTouchVector: (CGPoint) touchVector  {\n    CGFloat maxCosOfAngle = -2;\n    VLDContextSheetItemView *resultItemView = nil;\n    \n    for(int i = 0; i < self.itemViews.count; i++) {\n        VLDContextSheetItemView *itemView = self.itemViews[i];\n        CGPoint itemViewVector = {\n            itemView.center.x - self.touchCenter.x,\n            itemView.center.y - self.touchCenter.y\n        };\n        \n        CGFloat cosOfAngle = VLDVectorDotProduct(itemViewVector, touchVector) / VLDVectorLength(itemViewVector);\n        \n        if(cosOfAngle > maxCosOfAngle) {\n            maxCosOfAngle = cosOfAngle;\n            resultItemView = itemView;\n        }\n    }\n\n    return resultItemView;\n}\n\n- (void) end {\n    [self.starterGestureRecognizer removeTarget: self action: @selector(gestureRecognizedStateObserver:)];\n    \n    if(self.selectedItemView && self.selectedItemView.isHighlighted) {\n        [self.delegate contextSheet: self didSelectItem: self.selectedItemView.item];\n    }\n    \n    [self closeItemsToCenterView];\n}\n\n@end\n"
  },
  {
    "path": "VLDContextSheet/VLDContextSheetItem.h",
    "content": "//\n//  VLDContextSheetItem.h\n//\n//  Created by Vladimir Angelov on 2/10/14.\n//  Copyright (c) 2014 Vladimir Angelov. All rights reserved.\n//\n\n#import <Foundation/Foundation.h>\n\n@interface VLDContextSheetItem : NSObject\n\n- (id) initWithTitle: (NSString *) title\n               image: (UIImage *) image\n    highlightedImage: (UIImage *) highlightedImage;\n\n@property (strong, readonly) NSString *title;\n@property (strong, readonly) UIImage *image;\n@property (strong, readonly) UIImage *highlightedImage;\n\n@property (assign, readwrite, getter = isEnabled) BOOL enabled;\n\n@end\n"
  },
  {
    "path": "VLDContextSheet/VLDContextSheetItem.m",
    "content": "//\n//  VLDContextSheetItem.m\n//\n//  Created by Vladimir Angelov on 2/10/14.\n//  Copyright (c) 2014 Vladimir Angelov. All rights reserved.\n//\n\n#import \"VLDContextSheetItem.h\"\n\n@implementation VLDContextSheetItem\n\n- (id) initWithTitle: (NSString *) title\n               image: (UIImage *) image\n    highlightedImage: (UIImage *) highlightedImage {\n    \n    self = [super init];\n    \n    if(self) {\n        _title = title;\n        _image = image;\n        _highlightedImage = highlightedImage;\n        _enabled = YES;\n    }\n    \n    return self;\n}\n\n@end\n"
  },
  {
    "path": "VLDContextSheet/VLDContextSheetItemView.h",
    "content": "//\n//  VLDContextSheetItem.h\n//\n//  Created by Vladimir Angelov on 2/9/14.\n//  Copyright (c) 2014 Vladimir Angelov. All rights reserved.\n//\n\n#import <Foundation/Foundation.h>\n\n@class VLDContextSheetItem;\n\n@interface VLDContextSheetItemView : UIView\n\n@property (strong, nonatomic) VLDContextSheetItem *item;\n@property (readonly) BOOL isHighlighted;\n\n- (void) setHighlighted: (BOOL) highlighted animated: (BOOL) animated;\n\n@end\n"
  },
  {
    "path": "VLDContextSheet/VLDContextSheetItemView.m",
    "content": "//\n//  VLDContextSheetItemView.m,\n//\n//  Created by Vladimir Angelov on 2/9/14.\n//  Copyright (c) 2014 Vladimir Angelov. All rights reserved.\n//\n\n#import \"VLDContextSheetItemView.h\"\n#import \"VLDContextSheetItem.h\"\n\n#import <CoreImage/CoreImage.h>\n\n\nstatic const NSInteger VLDTextPadding = 5;\n\n@interface VLDContextSheetItemView ()\n\n@property (nonatomic, strong) UIImageView *imageView;\n@property (nonatomic, strong) UIImageView *highlightedImageView;\n@property (nonatomic, strong) UILabel *label;\n@property (nonatomic, assign) NSInteger labelWidth;\n\n@end\n\n@implementation VLDContextSheetItemView\n\n@synthesize item = _item;\n\n- (id) initWithFrame: (CGRect) frame {\n    self = [super initWithFrame: CGRectMake(0, 0, 50, 83)];\n    \n    if(self) {\n        [self createSubviews];\n    }\n    \n    return self;\n}\n\n- (void) createSubviews {\n    _imageView = [[UIImageView alloc] init];\n    [self addSubview: _imageView];\n    \n    _highlightedImageView = [[UIImageView alloc] init];\n    _highlightedImageView.alpha = 0.0;\n    [self addSubview: _highlightedImageView];\n    \n    _label = [[UILabel alloc] init];\n    _label.clipsToBounds = YES;\n    _label.font = [UIFont systemFontOfSize: 10];\n    _label.textAlignment = NSTextAlignmentCenter;\n    _label.layer.cornerRadius = 7;\n    _label.backgroundColor = [UIColor colorWithWhite: 0.0 alpha: 0.4];\n    _label.textColor = [UIColor whiteColor];\n    _label.alpha = 0.0;\n    [self addSubview: _label];\n}\n\n- (void) layoutSubviews {\n    [super layoutSubviews];\n    \n    self.imageView.frame = CGRectMake(0, (self.frame.size.height - self.frame.size.width) / 2, self.frame.size.width, self.frame.size.width);\n    self.highlightedImageView.frame = self.imageView.frame;\n    self.label.frame = CGRectMake((self.frame.size.width - self.labelWidth) / 2.0, 0, self.labelWidth, 14);\n}\n\n- (void) setItem:(VLDContextSheetItem *)item {\n    _item = item;\n    \n    [self updateImages];\n    [self updateLabelText];\n}\n\n- (void) updateImages {\n    self.imageView.image = self.item.image;\n    self.highlightedImageView.image = self.item.highlightedImage;\n    \n    self.imageView.alpha = self.item.isEnabled ? 1.0 : 0.3;\n}\n\n- (void) updateLabelText {\n    self.label.text = self.item.title;\n    self.labelWidth = 2 * VLDTextPadding + ceil([self.label.text sizeWithAttributes: @{ NSFontAttributeName: self.label.font }].width);\n    [self setNeedsDisplay];\n}\n\n- (void) setHighlighted: (BOOL) highlighted animated: (BOOL) animated {\n    if (!self.item.isEnabled) {\n        return;\n    }\n\n    _isHighlighted = highlighted;\n    \n    [UIView animateWithDuration: animated ? 0.3 : 0.0\n                          delay: 0.0\n                        options: UIViewAnimationOptionCurveEaseInOut\n                     animations:^{\n                         self.highlightedImageView.alpha = (highlighted ? 1.0 : 0.0);\n                         self.imageView.alpha = 1 - self.highlightedImageView.alpha;\n                         self.label.alpha = self.highlightedImageView.alpha;\n                         \n                     }\n                     completion: nil];\n    \n    \n    \n}\n\n@end\n"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample/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      \"idiom\" : \"ipad\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"76x76\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"76x76\",\n      \"scale\" : \"2x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample/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      \"orientation\" : \"portrait\",\n      \"idiom\" : \"ipad\",\n      \"extent\" : \"full-screen\",\n      \"minimum-system-version\" : \"7.0\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"orientation\" : \"landscape\",\n      \"idiom\" : \"ipad\",\n      \"extent\" : \"full-screen\",\n      \"minimum-system-version\" : \"7.0\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"orientation\" : \"portrait\",\n      \"idiom\" : \"ipad\",\n      \"extent\" : \"full-screen\",\n      \"minimum-system-version\" : \"7.0\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"orientation\" : \"landscape\",\n      \"idiom\" : \"ipad\",\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": "VLDContextSheetExample/VLDContextSheetExample/Images.xcassets/add.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\",\n      \"filename\" : \"add_to_collection_button@2x.png\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample/Images.xcassets/add_highlighted.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\",\n      \"filename\" : \"add_to_collection_button2@2x.png\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample/Images.xcassets/gift.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\",\n      \"filename\" : \"gift_button@2x.png\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample/Images.xcassets/gift_highlighted.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\",\n      \"filename\" : \"gift_button2@2x.png\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample/Images.xcassets/share.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\",\n      \"filename\" : \"share_button@2x.png\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample/Images.xcassets/share_highlighted.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\",\n      \"filename\" : \"share_button2@2x.png\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample/VLDAppDelegate.h",
    "content": "//\n//  VLDAppDelegate.h\n//  VLDContextSheetExample\n//\n//  Created by Vladimir Angelov on 11/2/14.\n//  Copyright (c) 2014 Vladimir Angelov. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n@class VLDExampleViewController;\n\n@interface VLDAppDelegate : UIResponder <UIApplicationDelegate>\n\n@property (strong, nonatomic) UIWindow *window;\n@property (strong, nonatomic) VLDExampleViewController *viewController;\n\n@end\n"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample/VLDAppDelegate.m",
    "content": "//\n//  VLDAppDelegate.m\n//  VLDContextSheetExample\n//\n//  Created by Vladimir Angelov on 11/2/14.\n//  Copyright (c) 2014 Vladimir Angelov. All rights reserved.\n//\n\n#import \"VLDAppDelegate.h\"\n#import \"VLDExampleViewController.h\"\n\n@implementation VLDAppDelegate\n\n- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions\n{\n    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];\n    // Override point for customization after application launch.\n    self.window.backgroundColor = [UIColor whiteColor];\n    [self.window makeKeyAndVisible];\n    \n    self.viewController = [[VLDExampleViewController alloc] init];\n    self.window.rootViewController = self.viewController;\n    \n    return YES;\n}\n\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": "VLDContextSheetExample/VLDContextSheetExample/VLDContextSheetExample-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.example.${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>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\t<key>UISupportedInterfaceOrientations~ipad</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t\t<string>UIInterfaceOrientationPortraitUpsideDown</string>\n\t\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t\t<string>UIInterfaceOrientationLandscapeRight</string>\n\t</array>\n</dict>\n</plist>\n"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample/VLDContextSheetExample-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_3_0\n#warning \"This project uses features only available in iOS SDK 3.0 and later.\"\n#endif\n\n#ifdef __OBJC__\n    #import <UIKit/UIKit.h>\n    #import <Foundation/Foundation.h>\n#endif\n"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample/VLDExampleViewController.h",
    "content": "//\n//  VLDExampleViewController.h\n//  VLDContextSheetExample\n//\n//  Created by Vladimir Angelov on 11/2/14.\n//  Copyright (c) 2014 Vladimir Angelov. All rights reserved.\n//\n\n#import <Foundation/Foundation.h>\n#import \"VLDContextSheet.h\"\n\n@interface VLDExampleViewController : UIViewController <VLDContextSheetDelegate>\n\n@property (strong, nonatomic) VLDContextSheet *contextSheet;\n\n@end\n"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample/VLDExampleViewController.m",
    "content": "//\n//  VLDExampleViewController.m\n//  VLDContextSheetExample\n//\n//  Created by Vladimir Angelov on 11/2/14.\n//  Copyright (c) 2014 Vladimir Angelov. All rights reserved.\n//\n\n#import \"VLDExampleViewController.h\"\n#import \"VLDContextSheetItem.h\"\n\n\n@implementation VLDExampleViewController\n\n- (void) viewDidLoad {\n    [super viewDidLoad];\n    [self createContextSheet];\n    \n    self.view.backgroundColor = [UIColor grayColor];\n    \n    UIGestureRecognizer *gestureRecognizer = [[UILongPressGestureRecognizer alloc] initWithTarget: self\n                                                                                    action: @selector(longPressed:)];\n    [self.view addGestureRecognizer: gestureRecognizer];\n}\n\n- (void) createContextSheet {\n    VLDContextSheetItem *item1 = [[VLDContextSheetItem alloc] initWithTitle: @\"Gift\"\n                                                                image: [UIImage imageNamed: @\"gift\"]\n                                                     highlightedImage: [UIImage imageNamed: @\"gift_highlighted\"]];\n\n    \n    VLDContextSheetItem *item2 = [[VLDContextSheetItem alloc] initWithTitle: @\"Add to\"\n                                                                image: [UIImage imageNamed: @\"add\"]\n                                                     highlightedImage: [UIImage imageNamed: @\"add_highlighted\"]];\n    \n    VLDContextSheetItem *item3 = [[VLDContextSheetItem alloc] initWithTitle: @\"Share\"\n                                                                image: [UIImage imageNamed: @\"share\"]\n                                                     highlightedImage: [UIImage imageNamed: @\"share_highlighted\"]];\n    \n    self.contextSheet = [[VLDContextSheet alloc] initWithItems: @[ item1, item2, item3 ]];\n    self.contextSheet.delegate = self;\n}\n\n- (void) contextSheet: (VLDContextSheet *) contextSheet didSelectItem: (VLDContextSheetItem *) item {\n    NSLog(@\"Selected item: %@\", item.title);\n}\n\n- (void) longPressed: (UIGestureRecognizer *) gestureRecognizer {\n    if(gestureRecognizer.state == UIGestureRecognizerStateBegan) {\n\n        [self.contextSheet startWithGestureRecognizer: gestureRecognizer\n                                               inView: self.view];\n    }\n}\n\n- (void) willRotateToInterfaceOrientation: (UIInterfaceOrientation) toInterfaceOrientation\n                                 duration: (NSTimeInterval) duration {\n    \n    [super willRotateToInterfaceOrientation: toInterfaceOrientation duration: duration];\n\n    [self.contextSheet end];\n}\n\n@end\n"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample/en.lproj/InfoPlist.strings",
    "content": "/* Localized versions of Info.plist keys */\n\n"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample/main.m",
    "content": "//\n//  main.m\n//  VLDContextSheetExample\n//\n//  Created by Vladimir Angelov on 11/2/14.\n//  Copyright (c) 2014 Vladimir Angelov. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n#import \"VLDAppDelegate.h\"\n\nint main(int argc, char * argv[])\n{\n    @autoreleasepool {\n        return UIApplicationMain(argc, argv, nil, NSStringFromClass([VLDAppDelegate class]));\n    }\n}\n"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample.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\t75001E4F1A0662990098C5C4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 75001E4E1A0662990098C5C4 /* Foundation.framework */; };\n\t\t75001E511A0662990098C5C4 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 75001E501A0662990098C5C4 /* CoreGraphics.framework */; };\n\t\t75001E531A0662990098C5C4 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 75001E521A0662990098C5C4 /* UIKit.framework */; };\n\t\t75001E591A06629A0098C5C4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 75001E571A06629A0098C5C4 /* InfoPlist.strings */; };\n\t\t75001E5B1A06629A0098C5C4 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 75001E5A1A06629A0098C5C4 /* main.m */; };\n\t\t75001E5F1A06629A0098C5C4 /* VLDAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 75001E5E1A06629A0098C5C4 /* VLDAppDelegate.m */; };\n\t\t75001E611A06629A0098C5C4 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 75001E601A06629A0098C5C4 /* Images.xcassets */; };\n\t\t75001E681A06629A0098C5C4 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 75001E671A06629A0098C5C4 /* XCTest.framework */; };\n\t\t75001E691A06629A0098C5C4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 75001E4E1A0662990098C5C4 /* Foundation.framework */; };\n\t\t75001E6A1A06629A0098C5C4 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 75001E521A0662990098C5C4 /* UIKit.framework */; };\n\t\t75001E721A06629A0098C5C4 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 75001E701A06629A0098C5C4 /* InfoPlist.strings */; };\n\t\t75001E741A06629A0098C5C4 /* VLDContextSheetExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 75001E731A06629A0098C5C4 /* VLDContextSheetExampleTests.m */; };\n\t\t75001E841A0662CF0098C5C4 /* VLDContextSheetItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 75001E7F1A0662CF0098C5C4 /* VLDContextSheetItem.m */; };\n\t\t75001E851A0662CF0098C5C4 /* VLDContextSheetItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = 75001E811A0662CF0098C5C4 /* VLDContextSheetItemView.m */; };\n\t\t75001E861A0662CF0098C5C4 /* VLDContextSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 75001E831A0662CF0098C5C4 /* VLDContextSheet.m */; };\n\t\t75001E891A0663190098C5C4 /* VLDExampleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 75001E881A0663190098C5C4 /* VLDExampleViewController.m */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t75001E6B1A06629A0098C5C4 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 75001E431A0662990098C5C4 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 75001E4A1A0662990098C5C4;\n\t\t\tremoteInfo = VLDContextSheetExample;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t75001E4B1A0662990098C5C4 /* VLDContextSheetExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = VLDContextSheetExample.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t75001E4E1A0662990098C5C4 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };\n\t\t75001E501A0662990098C5C4 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };\n\t\t75001E521A0662990098C5C4 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };\n\t\t75001E561A06629A0098C5C4 /* VLDContextSheetExample-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = \"VLDContextSheetExample-Info.plist\"; sourceTree = \"<group>\"; };\n\t\t75001E581A06629A0098C5C4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = \"<group>\"; };\n\t\t75001E5A1A06629A0098C5C4 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = \"<group>\"; };\n\t\t75001E5C1A06629A0098C5C4 /* VLDContextSheetExample-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = \"VLDContextSheetExample-Prefix.pch\"; sourceTree = \"<group>\"; };\n\t\t75001E5D1A06629A0098C5C4 /* VLDAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VLDAppDelegate.h; sourceTree = \"<group>\"; };\n\t\t75001E5E1A06629A0098C5C4 /* VLDAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VLDAppDelegate.m; sourceTree = \"<group>\"; };\n\t\t75001E601A06629A0098C5C4 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = \"<group>\"; };\n\t\t75001E661A06629A0098C5C4 /* VLDContextSheetExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = VLDContextSheetExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t75001E671A06629A0098C5C4 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };\n\t\t75001E6F1A06629A0098C5C4 /* VLDContextSheetExampleTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = \"VLDContextSheetExampleTests-Info.plist\"; sourceTree = \"<group>\"; };\n\t\t75001E711A06629A0098C5C4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = \"<group>\"; };\n\t\t75001E731A06629A0098C5C4 /* VLDContextSheetExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VLDContextSheetExampleTests.m; sourceTree = \"<group>\"; };\n\t\t75001E7E1A0662CF0098C5C4 /* VLDContextSheetItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLDContextSheetItem.h; sourceTree = \"<group>\"; };\n\t\t75001E7F1A0662CF0098C5C4 /* VLDContextSheetItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLDContextSheetItem.m; sourceTree = \"<group>\"; };\n\t\t75001E801A0662CF0098C5C4 /* VLDContextSheetItemView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLDContextSheetItemView.h; sourceTree = \"<group>\"; };\n\t\t75001E811A0662CF0098C5C4 /* VLDContextSheetItemView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLDContextSheetItemView.m; sourceTree = \"<group>\"; };\n\t\t75001E821A0662CF0098C5C4 /* VLDContextSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLDContextSheet.h; sourceTree = \"<group>\"; };\n\t\t75001E831A0662CF0098C5C4 /* VLDContextSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLDContextSheet.m; sourceTree = \"<group>\"; };\n\t\t75001E871A0663190098C5C4 /* VLDExampleViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLDExampleViewController.h; sourceTree = \"<group>\"; };\n\t\t75001E881A0663190098C5C4 /* VLDExampleViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLDExampleViewController.m; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t75001E481A0662990098C5C4 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t75001E511A0662990098C5C4 /* CoreGraphics.framework in Frameworks */,\n\t\t\t\t75001E531A0662990098C5C4 /* UIKit.framework in Frameworks */,\n\t\t\t\t75001E4F1A0662990098C5C4 /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t75001E631A06629A0098C5C4 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t75001E681A06629A0098C5C4 /* XCTest.framework in Frameworks */,\n\t\t\t\t75001E6A1A06629A0098C5C4 /* UIKit.framework in Frameworks */,\n\t\t\t\t75001E691A06629A0098C5C4 /* 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\t75001E421A0662990098C5C4 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t75001E7D1A0662CF0098C5C4 /* VLDContextSheet */,\n\t\t\t\t75001E541A06629A0098C5C4 /* VLDContextSheetExample */,\n\t\t\t\t75001E6D1A06629A0098C5C4 /* VLDContextSheetExampleTests */,\n\t\t\t\t75001E4D1A0662990098C5C4 /* Frameworks */,\n\t\t\t\t75001E4C1A0662990098C5C4 /* Products */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t75001E4C1A0662990098C5C4 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t75001E4B1A0662990098C5C4 /* VLDContextSheetExample.app */,\n\t\t\t\t75001E661A06629A0098C5C4 /* VLDContextSheetExampleTests.xctest */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t75001E4D1A0662990098C5C4 /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t75001E4E1A0662990098C5C4 /* Foundation.framework */,\n\t\t\t\t75001E501A0662990098C5C4 /* CoreGraphics.framework */,\n\t\t\t\t75001E521A0662990098C5C4 /* UIKit.framework */,\n\t\t\t\t75001E671A06629A0098C5C4 /* XCTest.framework */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t75001E541A06629A0098C5C4 /* VLDContextSheetExample */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t75001E5D1A06629A0098C5C4 /* VLDAppDelegate.h */,\n\t\t\t\t75001E5E1A06629A0098C5C4 /* VLDAppDelegate.m */,\n\t\t\t\t75001E871A0663190098C5C4 /* VLDExampleViewController.h */,\n\t\t\t\t75001E881A0663190098C5C4 /* VLDExampleViewController.m */,\n\t\t\t\t75001E601A06629A0098C5C4 /* Images.xcassets */,\n\t\t\t\t75001E551A06629A0098C5C4 /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = VLDContextSheetExample;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t75001E551A06629A0098C5C4 /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t75001E561A06629A0098C5C4 /* VLDContextSheetExample-Info.plist */,\n\t\t\t\t75001E571A06629A0098C5C4 /* InfoPlist.strings */,\n\t\t\t\t75001E5A1A06629A0098C5C4 /* main.m */,\n\t\t\t\t75001E5C1A06629A0098C5C4 /* VLDContextSheetExample-Prefix.pch */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t75001E6D1A06629A0098C5C4 /* VLDContextSheetExampleTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t75001E731A06629A0098C5C4 /* VLDContextSheetExampleTests.m */,\n\t\t\t\t75001E6E1A06629A0098C5C4 /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = VLDContextSheetExampleTests;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t75001E6E1A06629A0098C5C4 /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t75001E6F1A06629A0098C5C4 /* VLDContextSheetExampleTests-Info.plist */,\n\t\t\t\t75001E701A06629A0098C5C4 /* InfoPlist.strings */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t75001E7D1A0662CF0098C5C4 /* VLDContextSheet */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t75001E7E1A0662CF0098C5C4 /* VLDContextSheetItem.h */,\n\t\t\t\t75001E7F1A0662CF0098C5C4 /* VLDContextSheetItem.m */,\n\t\t\t\t75001E801A0662CF0098C5C4 /* VLDContextSheetItemView.h */,\n\t\t\t\t75001E811A0662CF0098C5C4 /* VLDContextSheetItemView.m */,\n\t\t\t\t75001E821A0662CF0098C5C4 /* VLDContextSheet.h */,\n\t\t\t\t75001E831A0662CF0098C5C4 /* VLDContextSheet.m */,\n\t\t\t);\n\t\t\tname = VLDContextSheet;\n\t\t\tpath = ../VLDContextSheet;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\t75001E4A1A0662990098C5C4 /* VLDContextSheetExample */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 75001E771A06629A0098C5C4 /* Build configuration list for PBXNativeTarget \"VLDContextSheetExample\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t75001E471A0662990098C5C4 /* Sources */,\n\t\t\t\t75001E481A0662990098C5C4 /* Frameworks */,\n\t\t\t\t75001E491A0662990098C5C4 /* 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 = VLDContextSheetExample;\n\t\t\tproductName = VLDContextSheetExample;\n\t\t\tproductReference = 75001E4B1A0662990098C5C4 /* VLDContextSheetExample.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n\t\t75001E651A06629A0098C5C4 /* VLDContextSheetExampleTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 75001E7A1A06629A0098C5C4 /* Build configuration list for PBXNativeTarget \"VLDContextSheetExampleTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t75001E621A06629A0098C5C4 /* Sources */,\n\t\t\t\t75001E631A06629A0098C5C4 /* Frameworks */,\n\t\t\t\t75001E641A06629A0098C5C4 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t75001E6C1A06629A0098C5C4 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = VLDContextSheetExampleTests;\n\t\t\tproductName = VLDContextSheetExampleTests;\n\t\t\tproductReference = 75001E661A06629A0098C5C4 /* VLDContextSheetExampleTests.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\t75001E431A0662990098C5C4 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tCLASSPREFIX = VLD;\n\t\t\t\tLastUpgradeCheck = 0510;\n\t\t\t\tORGANIZATIONNAME = \"Vladimir Angelov\";\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t75001E651A06629A0098C5C4 = {\n\t\t\t\t\t\tTestTargetID = 75001E4A1A0662990098C5C4;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = 75001E461A0662990098C5C4 /* Build configuration list for PBXProject \"VLDContextSheetExample\" */;\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);\n\t\t\tmainGroup = 75001E421A0662990098C5C4;\n\t\t\tproductRefGroup = 75001E4C1A0662990098C5C4 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t75001E4A1A0662990098C5C4 /* VLDContextSheetExample */,\n\t\t\t\t75001E651A06629A0098C5C4 /* VLDContextSheetExampleTests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t75001E491A0662990098C5C4 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t75001E591A06629A0098C5C4 /* InfoPlist.strings in Resources */,\n\t\t\t\t75001E611A06629A0098C5C4 /* Images.xcassets in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t75001E641A06629A0098C5C4 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t75001E721A06629A0098C5C4 /* 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\t75001E471A0662990098C5C4 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t75001E891A0663190098C5C4 /* VLDExampleViewController.m in Sources */,\n\t\t\t\t75001E861A0662CF0098C5C4 /* VLDContextSheet.m in Sources */,\n\t\t\t\t75001E851A0662CF0098C5C4 /* VLDContextSheetItemView.m in Sources */,\n\t\t\t\t75001E5B1A06629A0098C5C4 /* main.m in Sources */,\n\t\t\t\t75001E841A0662CF0098C5C4 /* VLDContextSheetItem.m in Sources */,\n\t\t\t\t75001E5F1A06629A0098C5C4 /* VLDAppDelegate.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t75001E621A06629A0098C5C4 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t75001E741A06629A0098C5C4 /* VLDContextSheetExampleTests.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\t75001E6C1A06629A0098C5C4 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 75001E4A1A0662990098C5C4 /* VLDContextSheetExample */;\n\t\t\ttargetProxy = 75001E6B1A06629A0098C5C4 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin PBXVariantGroup section */\n\t\t75001E571A06629A0098C5C4 /* InfoPlist.strings */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t75001E581A06629A0098C5C4 /* en */,\n\t\t\t);\n\t\t\tname = InfoPlist.strings;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t75001E701A06629A0098C5C4 /* InfoPlist.strings */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t75001E711A06629A0098C5C4 /* 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\t75001E751A06629A0098C5C4 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\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_AGGRESSIVE;\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.1;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t75001E761A06629A0098C5C4 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\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_AGGRESSIVE;\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.1;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t75001E781A06629A0098C5C4 /* 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 = \"VLDContextSheetExample/VLDContextSheetExample-Prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"VLDContextSheetExample/VLDContextSheetExample-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\t75001E791A06629A0098C5C4 /* 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 = \"VLDContextSheetExample/VLDContextSheetExample-Prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"VLDContextSheetExample/VLDContextSheetExample-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\t75001E7B1A06629A0098C5C4 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(BUILT_PRODUCTS_DIR)/VLDContextSheetExample.app/VLDContextSheetExample\";\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 = \"VLDContextSheetExample/VLDContextSheetExample-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 = \"VLDContextSheetExampleTests/VLDContextSheetExampleTests-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\t75001E7C1A06629A0098C5C4 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(BUILT_PRODUCTS_DIR)/VLDContextSheetExample.app/VLDContextSheetExample\";\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 = \"VLDContextSheetExample/VLDContextSheetExample-Prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"VLDContextSheetExampleTests/VLDContextSheetExampleTests-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\t75001E461A0662990098C5C4 /* Build configuration list for PBXProject \"VLDContextSheetExample\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t75001E751A06629A0098C5C4 /* Debug */,\n\t\t\t\t75001E761A06629A0098C5C4 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t75001E771A06629A0098C5C4 /* Build configuration list for PBXNativeTarget \"VLDContextSheetExample\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t75001E781A06629A0098C5C4 /* Debug */,\n\t\t\t\t75001E791A06629A0098C5C4 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t};\n\t\t75001E7A1A06629A0098C5C4 /* Build configuration list for PBXNativeTarget \"VLDContextSheetExampleTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t75001E7B1A06629A0098C5C4 /* Debug */,\n\t\t\t\t75001E7C1A06629A0098C5C4 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = 75001E431A0662990098C5C4 /* Project object */;\n}\n"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:VLDContextSheetExample.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "VLDContextSheetExample/VLDContextSheetExampleTests/VLDContextSheetExampleTests-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.example.${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": "VLDContextSheetExample/VLDContextSheetExampleTests/VLDContextSheetExampleTests.m",
    "content": "//\n//  VLDContextSheetExampleTests.m\n//  VLDContextSheetExampleTests\n//\n//  Created by Vladimir Angelov on 11/2/14.\n//  Copyright (c) 2014 Vladimir Angelov. All rights reserved.\n//\n\n#import <XCTest/XCTest.h>\n\n@interface VLDContextSheetExampleTests : XCTestCase\n\n@end\n\n@implementation VLDContextSheetExampleTests\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": "VLDContextSheetExample/VLDContextSheetExampleTests/en.lproj/InfoPlist.strings",
    "content": "/* Localized versions of Info.plist keys */\n\n"
  }
]