[
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2014 tuyou\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."
  },
  {
    "path": "README.md",
    "content": "# SphereMenu\n\nSphereMenu is a fun menu powered by `UIDynamicAnimator`. Inspired by [Sphere](https://itunes.apple.com/hk/app/sphere-360o-photography/id335671384?mt=8).\n\n## Usage\nTo use SpereMenu, create a `SpereMenu` like this\n\n```objective-c\nUIImage *startImage = [UIImage imageNamed:@\"start\"];\nUIImage *image1 = [UIImage imageNamed:@\"icon-twitter\"];\nUIImage *image2 = [UIImage imageNamed:@\"icon-email\"];\nUIImage *image3 = [UIImage imageNamed:@\"icon-facebook\"];\nNSArray *images = @[image1, image2, image3];\nSphereMenu *sphereMenu = [[SphereMenu alloc] initWithStartPoint:CGPointMake(160, 320) startImage:startImage submenuImages:images];\nsphereMenu.delegate = self;\n[self.view addSubview:sphereMenu];\n```\n\n## A Quick Peek\n![screenshots](https://cloud.githubusercontent.com/assets/4316898/4098401/7cc3710e-301b-11e4-83ba-529349111c4d.gif)\n\n## License\n\nSphereMenu is available under the MIT license, see the LICENSE file for more information.     \n"
  },
  {
    "path": "SphereMenu/AppDelegate.h",
    "content": "//\n//  AppDelegate.h\n//  SphereMenu\n//\n//  Created by Tu You on 14-8-24.\n//  Copyright (c) 2014年 TU YOU. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n@interface AppDelegate : UIResponder <UIApplicationDelegate>\n\n@property (strong, nonatomic) UIWindow *window;\n\n@end\n"
  },
  {
    "path": "SphereMenu/AppDelegate.m",
    "content": "//\n//  AppDelegate.m\n//  SphereMenu\n//\n//  Created by Tu You on 14-8-24.\n//  Copyright (c) 2014年 TU YOU. All rights reserved.\n//\n\n#import \"AppDelegate.h\"\n\n@implementation AppDelegate\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": "SphereMenu/Base.lproj/Main_iPad.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"5023\" systemVersion=\"13A603\" targetRuntime=\"iOS.CocoaTouch.iPad\" propertyAccessControl=\"none\" useAutolayout=\"YES\" initialViewController=\"BYZ-38-t0r\">\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"3733\"/>\n    </dependencies>\n    <scenes>\n        <!--class Prefix:identifier View Controller-->\n        <scene sceneID=\"tne-QT-ifu\">\n            <objects>\n                <viewController id=\"BYZ-38-t0r\" customClass=\"ViewController\" sceneMemberID=\"viewController\">\n                    <layoutGuides>\n                        <viewControllerLayoutGuide type=\"top\" id=\"y3c-jy-aDJ\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"wfy-db-euE\"/>\n                    </layoutGuides>\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"8bC-Xf-vdC\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"768\" height=\"1024\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"calibratedWhite\"/>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"dkx-z0-nzr\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n        </scene>\n    </scenes>\n    <simulatedMetricsContainer key=\"defaultSimulatedMetrics\">\n        <simulatedStatusBarMetrics key=\"statusBar\"/>\n        <simulatedOrientationMetrics key=\"orientation\"/>\n        <simulatedScreenMetrics key=\"destination\"/>\n    </simulatedMetricsContainer>\n</document>\n"
  },
  {
    "path": "SphereMenu/Base.lproj/Main_iPhone.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"5023\" systemVersion=\"13A603\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" initialViewController=\"vXZ-lx-hvc\">\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"3733\"/>\n    </dependencies>\n    <scenes>\n        <!--class Prefix:identifier View Controller-->\n        <scene sceneID=\"ufC-wZ-h7g\">\n            <objects>\n                <viewController id=\"vXZ-lx-hvc\" customClass=\"ViewController\" sceneMemberID=\"viewController\">\n                    <layoutGuides>\n                        <viewControllerLayoutGuide type=\"top\" id=\"jyV-Pf-zRb\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"2fi-mo-0CV\"/>\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                        <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"calibratedWhite\"/>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"x5A-6p-PRh\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n        </scene>\n    </scenes>\n    <simulatedMetricsContainer key=\"defaultSimulatedMetrics\">\n        <simulatedStatusBarMetrics key=\"statusBar\"/>\n        <simulatedOrientationMetrics key=\"orientation\"/>\n        <simulatedScreenMetrics key=\"destination\" type=\"retina4\"/>\n    </simulatedMetricsContainer>\n</document>\n"
  },
  {
    "path": "SphereMenu/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": "SphereMenu/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": "SphereMenu/Images.xcassets/icon-email.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\",\n      \"filename\" : \"icon-email@2x.png\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "SphereMenu/Images.xcassets/icon-facebook.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\",\n      \"filename\" : \"icon-facebook@2x.png\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "SphereMenu/Images.xcassets/icon-twitter.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\",\n      \"filename\" : \"icon-twitter@2x.png\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "SphereMenu/Images.xcassets/start.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"2x\",\n      \"filename\" : \"start@2x.png\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "SphereMenu/Launch Screen.xib",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVersion=\"6214\" systemVersion=\"14A314h\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" useTraitCollections=\"YES\">\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"6207\"/>\n        <capability name=\"Constraints with non-1.0 multipliers\" minToolsVersion=\"5.1\"/>\n    </dependencies>\n    <objects>\n        <placeholder placeholderIdentifier=\"IBFilesOwner\" id=\"-1\" userLabel=\"File's Owner\"/>\n        <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"-2\" customClass=\"UIResponder\"/>\n        <view contentMode=\"scaleToFill\" id=\"iN0-l3-epB\">\n            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"480\" height=\"480\"/>\n            <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n            <subviews>\n                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"  Copyright (c) 2015年 TU YOU. All rights reserved.\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" minimumFontSize=\"9\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"8ie-xW-0ye\">\n                    <rect key=\"frame\" x=\"20\" y=\"439\" width=\"441\" height=\"21\"/>\n                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                    <color key=\"textColor\" cocoaTouchSystemColor=\"darkTextColor\"/>\n                    <nil key=\"highlightedColor\"/>\n                    <variation key=\"widthClass=compact\">\n                        <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"11\"/>\n                    </variation>\n                </label>\n                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"SphereMenu\" textAlignment=\"center\" lineBreakMode=\"middleTruncation\" baselineAdjustment=\"alignBaselines\" minimumFontSize=\"18\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"kId-c2-rCX\">\n                    <rect key=\"frame\" x=\"20\" y=\"140\" width=\"441\" height=\"43\"/>\n                    <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"36\"/>\n                    <color key=\"textColor\" cocoaTouchSystemColor=\"darkTextColor\"/>\n                    <nil key=\"highlightedColor\"/>\n                </label>\n            </subviews>\n            <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"calibratedWhite\"/>\n            <constraints>\n                <constraint firstItem=\"kId-c2-rCX\" firstAttribute=\"centerY\" secondItem=\"iN0-l3-epB\" secondAttribute=\"bottom\" multiplier=\"1/3\" constant=\"1\" id=\"Kid-kn-2rF\"/>\n                <constraint firstAttribute=\"centerX\" secondItem=\"kId-c2-rCX\" secondAttribute=\"centerX\" id=\"Koa-jz-hwk\"/>\n                <constraint firstAttribute=\"bottom\" secondItem=\"8ie-xW-0ye\" secondAttribute=\"bottom\" constant=\"20\" id=\"Kzo-t9-V3l\"/>\n                <constraint firstItem=\"8ie-xW-0ye\" firstAttribute=\"leading\" secondItem=\"iN0-l3-epB\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"MfP-vx-nX0\"/>\n                <constraint firstAttribute=\"centerX\" secondItem=\"8ie-xW-0ye\" secondAttribute=\"centerX\" id=\"ZEH-qu-HZ9\"/>\n                <constraint firstItem=\"kId-c2-rCX\" firstAttribute=\"leading\" secondItem=\"iN0-l3-epB\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"fvb-Df-36g\"/>\n            </constraints>\n            <nil key=\"simulatedStatusBarMetrics\"/>\n            <freeformSimulatedSizeMetrics key=\"simulatedDestinationMetrics\"/>\n            <point key=\"canvasLocation\" x=\"404\" y=\"445\"/>\n        </view>\n    </objects>\n</document>\n"
  },
  {
    "path": "SphereMenu/SphereMenu/SphereMenu.h",
    "content": "//\n//  SphereMenu.h\n//  SphereMenu\n//\n//  Created by Tu You on 14-8-24.\n//  Copyright (c) 2014年 TU YOU. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n@protocol SphereMenuDelegate <NSObject>\n\n- (void)sphereDidSelected:(int)index;\n\n@end\n\n@interface SphereMenu : UIView\n\n- (instancetype)initWithStartPoint:(CGPoint)startPoint\n                        startImage:(UIImage *)startImage\n                     submenuImages:(NSArray *)images;\n\n@property (nonatomic, weak) id<SphereMenuDelegate> delegate;\n\n@property (nonatomic, assign) CGFloat angle;\n@property (nonatomic, assign) CGFloat sphereDamping;\n@property (nonatomic, assign) CGFloat sphereLength;\n\n\n@end\n"
  },
  {
    "path": "SphereMenu/SphereMenu/SphereMenu.m",
    "content": "//\n//  SphereMenu.m\n//  SphereMenu\n//\n//  Created by Tu You on 14-8-24.\n//  Copyright (c) 2014年 TU YOU. All rights reserved.\n//\n\n#import \"SphereMenu.h\"\n\nstatic const int kItemInitTag = 1001;\nstatic const CGFloat kAngleOffset = M_PI_2 / 2;\nstatic const CGFloat kSphereLength = 80;\nstatic const float kSphereDamping = 0.3;\n\n@interface SphereMenu () <UICollisionBehaviorDelegate>\n\n@property (nonatomic, assign) NSUInteger count ;\n@property (nonatomic, strong) UIImageView *start;\n@property (nonatomic, strong) NSArray *images;\n@property (nonatomic, strong) NSMutableArray *items;\n@property (nonatomic, strong) NSMutableArray *positions;\n\n// animator and behaviors\n@property (nonatomic, strong) UIDynamicAnimator *animator;\n@property (nonatomic, strong) UICollisionBehavior *collision;\n@property (nonatomic, strong) UIDynamicItemBehavior *itemBehavior;\n@property (nonatomic, strong) NSMutableArray *snaps;\n\n@property (nonatomic, strong) UITapGestureRecognizer *tapOnStart;\n\n@property (nonatomic, strong) id<UIDynamicItem> bumper;\n@property (nonatomic, assign) BOOL expanded;\n\n@end\n\n\n@implementation SphereMenu\n\n- (instancetype)initWithStartPoint:(CGPoint)startPoint startImage:(UIImage *)startImage submenuImages:(NSArray *)images\n{\n    if (self = [super init]) {\n        \n        self.bounds = CGRectMake(0, 0, startImage.size.width, startImage.size.height);\n        self.center = startPoint;\n        \n        _angle = kAngleOffset;\n        _sphereLength = kSphereLength;\n        _sphereDamping = kSphereDamping;\n        \n        _images = images;\n        _count = self.images.count;\n        _start = [[UIImageView alloc] initWithImage:startImage];\n        _start.userInteractionEnabled = YES;\n        _tapOnStart = [[UITapGestureRecognizer alloc] initWithTarget:self\n                                                                  action:@selector(startTapped:)];\n        [_start addGestureRecognizer:_tapOnStart];\n        [self addSubview:_start];\n    }\n    return self;\n}\n\n- (void)commonSetup\n{\n    self.items = [NSMutableArray array];\n    self.positions = [NSMutableArray array];\n    self.snaps = [NSMutableArray array];\n\n    // setup the items\n    for (int i = 0; i < self.count; i++) {\n        UIImageView *item = [[UIImageView alloc] initWithImage:self.images[i]];\n        item.tag = kItemInitTag + i;\n        item.userInteractionEnabled = YES;\n        [self.superview addSubview:item];\n        \n        CGPoint position = [self centerForSphereAtIndex:i];\n        item.center = self.center;\n        [self.positions addObject:[NSValue valueWithCGPoint:position]];\n        \n        UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapped:)];\n        [item addGestureRecognizer:tap];\n        \n        UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panned:)];\n        [item addGestureRecognizer:pan];\n        \n        [self.items addObject:item];\n    }\n    \n    [self.superview bringSubviewToFront:self];\n    \n    // setup animator and behavior\n    self.animator = [[UIDynamicAnimator alloc] initWithReferenceView:self.superview];\n    \n    self.collision = [[UICollisionBehavior alloc] initWithItems:self.items];\n    self.collision.translatesReferenceBoundsIntoBoundary = YES;\n    self.collision.collisionDelegate = self;\n    \n    for (int i = 0; i < self.count; i++) {\n        UISnapBehavior *snap = [[UISnapBehavior alloc] initWithItem:self.items[i] snapToPoint:self.center];\n        snap.damping = self.sphereDamping;\n        [self.snaps addObject:snap];\n    }\n    \n    self.itemBehavior = [[UIDynamicItemBehavior alloc] initWithItems:self.items];\n    self.itemBehavior.allowsRotation = NO;\n    self.itemBehavior.elasticity = 1.2;\n    self.itemBehavior.density = 0.5;\n    self.itemBehavior.angularResistance = 5;\n    self.itemBehavior.resistance = 10;\n    self.itemBehavior.elasticity = 0.8;\n    self.itemBehavior.friction = 0.5;\n}\n\n- (void)didMoveToSuperview\n{\n    [self commonSetup];\n}\n\n- (void)removeFromSuperview\n{\n    for (int i = 0; i < self.count; i++) {\n        [self.items[i] removeFromSuperview];\n    }\n    \n    [super removeFromSuperview];\n}\n\n- (CGPoint)centerForSphereAtIndex:(int)index\n{\n    CGFloat firstAngle = M_PI + (M_PI_2 - self.angle) + index * self.angle;\n    CGPoint startPoint = self.center;\n    CGFloat x = startPoint.x + cos(firstAngle) * self.sphereLength;\n    CGFloat y = startPoint.y + sin(firstAngle) * self.sphereLength;\n    CGPoint position = CGPointMake(x, y);\n    return position;\n}\n\n- (void)tapped:(UITapGestureRecognizer *)gesture\n{\n    if ([self.delegate respondsToSelector:@selector(sphereDidSelected:)]) {\n        int tag = (int)gesture.view.tag;\n        tag -= kItemInitTag;\n        [self.delegate sphereDidSelected:tag];\n    }\n    \n    [self shrinkSubmenu];\n}\n\n- (void)startTapped:(UITapGestureRecognizer *)gesture\n{\n    [self.animator removeBehavior:self.collision];\n    [self.animator removeBehavior:self.itemBehavior];\n    [self removeSnapBehaviors];\n    \n    if (self.expanded) {\n        [self shrinkSubmenu];\n    } else {\n        [self expandSubmenu];\n    }\n}\n\n- (void)expandSubmenu\n{\n    for (int i = 0; i < self.count; i++) {\n        [self snapToPostionsWithIndex:i];\n    }\n    \n    self.expanded = YES;\n}\n\n- (void)shrinkSubmenu\n{\n    [self.animator removeBehavior:self.collision];\n    \n    for (int i = 0; i < self.count; i++) {\n        [self snapToStartWithIndex:i];\n    }\n    \n    self.expanded = NO;\n}\n\n- (void)panned:(UIPanGestureRecognizer *)gesture\n{\n    UIView *touchedView = gesture.view;\n    if (gesture.state == UIGestureRecognizerStateBegan) {\n        [self.animator removeBehavior:self.itemBehavior];\n        [self.animator removeBehavior:self.collision];\n        [self removeSnapBehaviors];\n    } else if (gesture.state == UIGestureRecognizerStateChanged) {\n        touchedView.center = [gesture locationInView:self.superview];\n    } else if (gesture.state == UIGestureRecognizerStateEnded) {\n        self.bumper = touchedView;\n        [self.animator addBehavior:self.collision];\n        NSUInteger index = [self.items indexOfObject:touchedView];\n        \n        if (index != NSNotFound) {\n            [self snapToPostionsWithIndex:index];\n        }\n    }\n}\n\n- (void)collisionBehavior:(UICollisionBehavior *)behavior endedContactForItem:(id<UIDynamicItem>)item1 withItem:(id<UIDynamicItem>)item2\n{\n    [self.animator addBehavior:self.itemBehavior];\n    \n    if (item1 != self.bumper) {\n        NSUInteger index = (int)[self.items indexOfObject:item1];\n        if (index != NSNotFound) {\n            [self snapToPostionsWithIndex:index];\n        }\n    }\n    \n    if (item2 != self.bumper) {\n        NSUInteger index = (int)[self.items indexOfObject:item2];\n        if (index != NSNotFound) {\n            [self snapToPostionsWithIndex:index];\n        }\n    }\n}\n\n- (void)snapToStartWithIndex:(NSUInteger)index\n{\n    UISnapBehavior *snap = [[UISnapBehavior alloc] initWithItem:self.items[index] snapToPoint:self.center];\n    snap.damping = self.sphereDamping;\n    UISnapBehavior *snapToRemove = self.snaps[index];\n    self.snaps[index] = snap;\n    [self.animator removeBehavior:snapToRemove];\n    [self.animator addBehavior:snap];\n}\n\n- (void)snapToPostionsWithIndex:(NSUInteger)index\n{\n    id positionValue = self.positions[index];\n    CGPoint position = [positionValue CGPointValue];\n    UISnapBehavior *snap = [[UISnapBehavior alloc] initWithItem:self.items[index] snapToPoint:position];\n    snap.damping = self.sphereDamping;\n    UISnapBehavior *snapToRemove = self.snaps[index];\n    self.snaps[index] = snap;\n    [self.animator removeBehavior:snapToRemove];\n    [self.animator addBehavior:snap];\n}\n\n- (void)removeSnapBehaviors\n{\n    [self.snaps enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {\n        [self.animator removeBehavior:obj];\n    }];\n}\n\n@end\n"
  },
  {
    "path": "SphereMenu/SphereMenu-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.tuyou.${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>UILaunchStoryboardName</key>\n\t<string>Launch Screen</string>\n\t<key>UIMainStoryboardFile</key>\n\t<string>Main_iPhone</string>\n\t<key>UIMainStoryboardFile~ipad</key>\n\t<string>Main_iPad</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\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": "SphereMenu/SphereMenu-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": "SphereMenu/ViewController.h",
    "content": "//\n//  ViewController.h\n//  SphereMenu\n//\n//  Created by Tu You on 14-8-24.\n//  Copyright (c) 2014年 TU YOU. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n@interface ViewController : UIViewController\n\n@end\n"
  },
  {
    "path": "SphereMenu/ViewController.m",
    "content": "//\n//  ViewController.m\n//  SphereMenu\n//\n//  Created by Tu You on 14-8-24.\n//  Copyright (c) 2014年 TU YOU. All rights reserved.\n//\n\n#import \"ViewController.h\"\n#import \"SphereMenu.h\"\n\n@interface ViewController () <SphereMenuDelegate>\n\n@end\n\n@implementation ViewController\n\n- (void)viewDidLoad\n{\n    [super viewDidLoad];\n    \n    self.view.backgroundColor = [UIColor colorWithRed:1 green:0.58 blue:0.27 alpha:1];\n    \n    UIImage *startImage = [UIImage imageNamed:@\"start\"];\n    UIImage *image1 = [UIImage imageNamed:@\"icon-twitter\"];\n    UIImage *image2 = [UIImage imageNamed:@\"icon-email\"];\n    UIImage *image3 = [UIImage imageNamed:@\"icon-facebook\"];\n    NSArray *images = @[image1, image2, image3];\n    SphereMenu *sphereMenu = [[SphereMenu alloc] initWithStartPoint:CGPointMake(CGRectGetWidth(self.view.frame) / 2, 320)\n                                                         startImage:startImage\n                                                      submenuImages:images];\n    sphereMenu.sphereDamping = 0.3;\n    sphereMenu.sphereLength = 85;\n    sphereMenu.delegate = self;\n    [self.view addSubview:sphereMenu];\n}\n\n- (void)sphereDidSelected:(int)index\n{\n    NSLog(@\"sphere %d selected\", index);\n}\n\n- (void)didReceiveMemoryWarning\n{\n    [super didReceiveMemoryWarning];\n}\n\n- (UIStatusBarStyle)preferredStatusBarStyle\n{\n    return UIStatusBarStyleLightContent;\n}\n\n@end\n"
  },
  {
    "path": "SphereMenu/en.lproj/InfoPlist.strings",
    "content": "/* Localized versions of Info.plist keys */\n\n"
  },
  {
    "path": "SphereMenu/main.m",
    "content": "//\n//  main.m\n//  SphereMenu\n//\n//  Created by Tu You on 14-8-24.\n//  Copyright (c) 2014年 TU YOU. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n#import \"AppDelegate.h\"\n\nint main(int argc, char * argv[])\n{\n    @autoreleasepool {\n        return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));\n    }\n}\n"
  },
  {
    "path": "SphereMenu.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\tCB98A1C11A75CFA6006378C2 /* Launch Screen.xib in Resources */ = {isa = PBXBuildFile; fileRef = CB98A1C01A75CFA6006378C2 /* Launch Screen.xib */; };\n\t\tCBEE2F9B19AA323700461BDB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBEE2F9A19AA323700461BDB /* Foundation.framework */; };\n\t\tCBEE2F9D19AA323700461BDB /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBEE2F9C19AA323700461BDB /* CoreGraphics.framework */; };\n\t\tCBEE2F9F19AA323700461BDB /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBEE2F9E19AA323700461BDB /* UIKit.framework */; };\n\t\tCBEE2FA519AA323700461BDB /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = CBEE2FA319AA323700461BDB /* InfoPlist.strings */; };\n\t\tCBEE2FA719AA323700461BDB /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = CBEE2FA619AA323700461BDB /* main.m */; };\n\t\tCBEE2FAB19AA323700461BDB /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = CBEE2FAA19AA323700461BDB /* AppDelegate.m */; };\n\t\tCBEE2FAE19AA323700461BDB /* Main_iPhone.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = CBEE2FAC19AA323700461BDB /* Main_iPhone.storyboard */; };\n\t\tCBEE2FB119AA323700461BDB /* Main_iPad.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = CBEE2FAF19AA323700461BDB /* Main_iPad.storyboard */; };\n\t\tCBEE2FB419AA323700461BDB /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CBEE2FB319AA323700461BDB /* ViewController.m */; };\n\t\tCBEE2FB619AA323700461BDB /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = CBEE2FB519AA323700461BDB /* Images.xcassets */; };\n\t\tCBEE2FBD19AA323700461BDB /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBEE2FBC19AA323700461BDB /* XCTest.framework */; };\n\t\tCBEE2FBE19AA323700461BDB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBEE2F9A19AA323700461BDB /* Foundation.framework */; };\n\t\tCBEE2FBF19AA323700461BDB /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CBEE2F9E19AA323700461BDB /* UIKit.framework */; };\n\t\tCBEE2FC719AA323700461BDB /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = CBEE2FC519AA323700461BDB /* InfoPlist.strings */; };\n\t\tCBEE2FC919AA323700461BDB /* SphereMenuTests.m in Sources */ = {isa = PBXBuildFile; fileRef = CBEE2FC819AA323700461BDB /* SphereMenuTests.m */; };\n\t\tCBEE2FD519AA338100461BDB /* SphereMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = CBEE2FD419AA338100461BDB /* SphereMenu.m */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\tCBEE2FC019AA323700461BDB /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = CBEE2F8F19AA323600461BDB /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = CBEE2F9619AA323700461BDB;\n\t\t\tremoteInfo = SphereMenu;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\tCB98A1C01A75CFA6006378C2 /* Launch Screen.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = \"Launch Screen.xib\"; sourceTree = \"<group>\"; };\n\t\tCBEE2F9719AA323700461BDB /* SphereMenu.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SphereMenu.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tCBEE2F9A19AA323700461BDB /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };\n\t\tCBEE2F9C19AA323700461BDB /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };\n\t\tCBEE2F9E19AA323700461BDB /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };\n\t\tCBEE2FA219AA323700461BDB /* SphereMenu-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = \"SphereMenu-Info.plist\"; sourceTree = \"<group>\"; };\n\t\tCBEE2FA419AA323700461BDB /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = \"<group>\"; };\n\t\tCBEE2FA619AA323700461BDB /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = \"<group>\"; };\n\t\tCBEE2FA819AA323700461BDB /* SphereMenu-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = \"SphereMenu-Prefix.pch\"; sourceTree = \"<group>\"; };\n\t\tCBEE2FA919AA323700461BDB /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = \"<group>\"; };\n\t\tCBEE2FAA19AA323700461BDB /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = \"<group>\"; };\n\t\tCBEE2FAD19AA323700461BDB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main_iPhone.storyboard; sourceTree = \"<group>\"; };\n\t\tCBEE2FB019AA323700461BDB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main_iPad.storyboard; sourceTree = \"<group>\"; };\n\t\tCBEE2FB219AA323700461BDB /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = \"<group>\"; };\n\t\tCBEE2FB319AA323700461BDB /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = \"<group>\"; };\n\t\tCBEE2FB519AA323700461BDB /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = \"<group>\"; };\n\t\tCBEE2FBB19AA323700461BDB /* SphereMenuTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SphereMenuTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tCBEE2FBC19AA323700461BDB /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };\n\t\tCBEE2FC419AA323700461BDB /* SphereMenuTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = \"SphereMenuTests-Info.plist\"; sourceTree = \"<group>\"; };\n\t\tCBEE2FC619AA323700461BDB /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = \"<group>\"; };\n\t\tCBEE2FC819AA323700461BDB /* SphereMenuTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SphereMenuTests.m; sourceTree = \"<group>\"; };\n\t\tCBEE2FD319AA338100461BDB /* SphereMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SphereMenu.h; sourceTree = \"<group>\"; };\n\t\tCBEE2FD419AA338100461BDB /* SphereMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SphereMenu.m; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\tCBEE2F9419AA323700461BDB /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tCBEE2F9D19AA323700461BDB /* CoreGraphics.framework in Frameworks */,\n\t\t\t\tCBEE2F9F19AA323700461BDB /* UIKit.framework in Frameworks */,\n\t\t\t\tCBEE2F9B19AA323700461BDB /* Foundation.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tCBEE2FB819AA323700461BDB /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tCBEE2FBD19AA323700461BDB /* XCTest.framework in Frameworks */,\n\t\t\t\tCBEE2FBF19AA323700461BDB /* UIKit.framework in Frameworks */,\n\t\t\t\tCBEE2FBE19AA323700461BDB /* 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\tCBEE2F8E19AA323600461BDB = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tCBEE2FA019AA323700461BDB /* SphereMenu */,\n\t\t\t\tCBEE2FC219AA323700461BDB /* SphereMenuTests */,\n\t\t\t\tCBEE2F9919AA323700461BDB /* Frameworks */,\n\t\t\t\tCBEE2F9819AA323700461BDB /* Products */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tCBEE2F9819AA323700461BDB /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tCBEE2F9719AA323700461BDB /* SphereMenu.app */,\n\t\t\t\tCBEE2FBB19AA323700461BDB /* SphereMenuTests.xctest */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tCBEE2F9919AA323700461BDB /* Frameworks */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tCBEE2F9A19AA323700461BDB /* Foundation.framework */,\n\t\t\t\tCBEE2F9C19AA323700461BDB /* CoreGraphics.framework */,\n\t\t\t\tCBEE2F9E19AA323700461BDB /* UIKit.framework */,\n\t\t\t\tCBEE2FBC19AA323700461BDB /* XCTest.framework */,\n\t\t\t);\n\t\t\tname = Frameworks;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tCBEE2FA019AA323700461BDB /* SphereMenu */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tCBEE2FD219AA325C00461BDB /* SphereMenu */,\n\t\t\t\tCBEE2FA919AA323700461BDB /* AppDelegate.h */,\n\t\t\t\tCBEE2FAA19AA323700461BDB /* AppDelegate.m */,\n\t\t\t\tCBEE2FAC19AA323700461BDB /* Main_iPhone.storyboard */,\n\t\t\t\tCBEE2FAF19AA323700461BDB /* Main_iPad.storyboard */,\n\t\t\t\tCBEE2FB219AA323700461BDB /* ViewController.h */,\n\t\t\t\tCBEE2FB319AA323700461BDB /* ViewController.m */,\n\t\t\t\tCBEE2FB519AA323700461BDB /* Images.xcassets */,\n\t\t\t\tCBEE2FA119AA323700461BDB /* Supporting Files */,\n\t\t\t\tCB98A1C01A75CFA6006378C2 /* Launch Screen.xib */,\n\t\t\t);\n\t\t\tpath = SphereMenu;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tCBEE2FA119AA323700461BDB /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tCBEE2FA219AA323700461BDB /* SphereMenu-Info.plist */,\n\t\t\t\tCBEE2FA319AA323700461BDB /* InfoPlist.strings */,\n\t\t\t\tCBEE2FA619AA323700461BDB /* main.m */,\n\t\t\t\tCBEE2FA819AA323700461BDB /* SphereMenu-Prefix.pch */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tCBEE2FC219AA323700461BDB /* SphereMenuTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tCBEE2FC819AA323700461BDB /* SphereMenuTests.m */,\n\t\t\t\tCBEE2FC319AA323700461BDB /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = SphereMenuTests;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tCBEE2FC319AA323700461BDB /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tCBEE2FC419AA323700461BDB /* SphereMenuTests-Info.plist */,\n\t\t\t\tCBEE2FC519AA323700461BDB /* InfoPlist.strings */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tCBEE2FD219AA325C00461BDB /* SphereMenu */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tCBEE2FD319AA338100461BDB /* SphereMenu.h */,\n\t\t\t\tCBEE2FD419AA338100461BDB /* SphereMenu.m */,\n\t\t\t);\n\t\t\tpath = SphereMenu;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\tCBEE2F9619AA323700461BDB /* SphereMenu */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = CBEE2FCC19AA323700461BDB /* Build configuration list for PBXNativeTarget \"SphereMenu\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tCBEE2F9319AA323700461BDB /* Sources */,\n\t\t\t\tCBEE2F9419AA323700461BDB /* Frameworks */,\n\t\t\t\tCBEE2F9519AA323700461BDB /* 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 = SphereMenu;\n\t\t\tproductName = SphereMenu;\n\t\t\tproductReference = CBEE2F9719AA323700461BDB /* SphereMenu.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n\t\tCBEE2FBA19AA323700461BDB /* SphereMenuTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = CBEE2FCF19AA323700461BDB /* Build configuration list for PBXNativeTarget \"SphereMenuTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tCBEE2FB719AA323700461BDB /* Sources */,\n\t\t\t\tCBEE2FB819AA323700461BDB /* Frameworks */,\n\t\t\t\tCBEE2FB919AA323700461BDB /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\tCBEE2FC119AA323700461BDB /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = SphereMenuTests;\n\t\t\tproductName = SphereMenuTests;\n\t\t\tproductReference = CBEE2FBB19AA323700461BDB /* SphereMenuTests.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\tCBEE2F8F19AA323600461BDB /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastUpgradeCheck = 0510;\n\t\t\t\tORGANIZATIONNAME = \"TU YOU\";\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\tCBEE2FBA19AA323700461BDB = {\n\t\t\t\t\t\tTestTargetID = CBEE2F9619AA323700461BDB;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = CBEE2F9219AA323700461BDB /* Build configuration list for PBXProject \"SphereMenu\" */;\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 = CBEE2F8E19AA323600461BDB;\n\t\t\tproductRefGroup = CBEE2F9819AA323700461BDB /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\tCBEE2F9619AA323700461BDB /* SphereMenu */,\n\t\t\t\tCBEE2FBA19AA323700461BDB /* SphereMenuTests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\tCBEE2F9519AA323700461BDB /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tCBEE2FB119AA323700461BDB /* Main_iPad.storyboard in Resources */,\n\t\t\t\tCBEE2FB619AA323700461BDB /* Images.xcassets in Resources */,\n\t\t\t\tCBEE2FAE19AA323700461BDB /* Main_iPhone.storyboard in Resources */,\n\t\t\t\tCBEE2FA519AA323700461BDB /* InfoPlist.strings in Resources */,\n\t\t\t\tCB98A1C11A75CFA6006378C2 /* Launch Screen.xib in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tCBEE2FB919AA323700461BDB /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tCBEE2FC719AA323700461BDB /* 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\tCBEE2F9319AA323700461BDB /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tCBEE2FB419AA323700461BDB /* ViewController.m in Sources */,\n\t\t\t\tCBEE2FAB19AA323700461BDB /* AppDelegate.m in Sources */,\n\t\t\t\tCBEE2FA719AA323700461BDB /* main.m in Sources */,\n\t\t\t\tCBEE2FD519AA338100461BDB /* SphereMenu.m in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tCBEE2FB719AA323700461BDB /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tCBEE2FC919AA323700461BDB /* SphereMenuTests.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\tCBEE2FC119AA323700461BDB /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = CBEE2F9619AA323700461BDB /* SphereMenu */;\n\t\t\ttargetProxy = CBEE2FC019AA323700461BDB /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin PBXVariantGroup section */\n\t\tCBEE2FA319AA323700461BDB /* InfoPlist.strings */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tCBEE2FA419AA323700461BDB /* en */,\n\t\t\t);\n\t\t\tname = InfoPlist.strings;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tCBEE2FAC19AA323700461BDB /* Main_iPhone.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tCBEE2FAD19AA323700461BDB /* Base */,\n\t\t\t);\n\t\t\tname = Main_iPhone.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tCBEE2FAF19AA323700461BDB /* Main_iPad.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tCBEE2FB019AA323700461BDB /* Base */,\n\t\t\t);\n\t\t\tname = Main_iPad.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tCBEE2FC519AA323700461BDB /* InfoPlist.strings */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tCBEE2FC619AA323700461BDB /* 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\tCBEE2FCA19AA323700461BDB /* 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\tCBEE2FCB19AA323700461BDB /* 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\tCBEE2FCD19AA323700461BDB /* 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 = \"SphereMenu/SphereMenu-Prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"SphereMenu/SphereMenu-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\tCBEE2FCE19AA323700461BDB /* 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 = \"SphereMenu/SphereMenu-Prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"SphereMenu/SphereMenu-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\tCBEE2FD019AA323700461BDB /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(BUILT_PRODUCTS_DIR)/SphereMenu.app/SphereMenu\";\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 = \"SphereMenu/SphereMenu-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 = \"SphereMenuTests/SphereMenuTests-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\tCBEE2FD119AA323700461BDB /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(BUILT_PRODUCTS_DIR)/SphereMenu.app/SphereMenu\";\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 = \"SphereMenu/SphereMenu-Prefix.pch\";\n\t\t\t\tINFOPLIST_FILE = \"SphereMenuTests/SphereMenuTests-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\tCBEE2F9219AA323700461BDB /* Build configuration list for PBXProject \"SphereMenu\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tCBEE2FCA19AA323700461BDB /* Debug */,\n\t\t\t\tCBEE2FCB19AA323700461BDB /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tCBEE2FCC19AA323700461BDB /* Build configuration list for PBXNativeTarget \"SphereMenu\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tCBEE2FCD19AA323700461BDB /* Debug */,\n\t\t\t\tCBEE2FCE19AA323700461BDB /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tCBEE2FCF19AA323700461BDB /* Build configuration list for PBXNativeTarget \"SphereMenuTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tCBEE2FD019AA323700461BDB /* Debug */,\n\t\t\t\tCBEE2FD119AA323700461BDB /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = CBEE2F8F19AA323600461BDB /* Project object */;\n}\n"
  },
  {
    "path": "SphereMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:SphereMenu.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "SphereMenu.xcodeproj/project.xcworkspace/xcshareddata/SphereMenu.xccheckout",
    "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>IDESourceControlProjectFavoriteDictionaryKey</key>\n\t<false/>\n\t<key>IDESourceControlProjectIdentifier</key>\n\t<string>D74E715F-09C1-4AB9-A5A3-F039E3F29C3C</string>\n\t<key>IDESourceControlProjectName</key>\n\t<string>SphereMenu</string>\n\t<key>IDESourceControlProjectOriginsDictionary</key>\n\t<dict>\n\t\t<key>32704FBC98C62B87AB408B5578AA0ADD9E778FAF</key>\n\t\t<string>https://github.com/itouch2/SphereMenu.git</string>\n\t</dict>\n\t<key>IDESourceControlProjectPath</key>\n\t<string>SphereMenu.xcodeproj/project.xcworkspace</string>\n\t<key>IDESourceControlProjectRelativeInstallPathDictionary</key>\n\t<dict>\n\t\t<key>32704FBC98C62B87AB408B5578AA0ADD9E778FAF</key>\n\t\t<string>../..</string>\n\t</dict>\n\t<key>IDESourceControlProjectURL</key>\n\t<string>https://github.com/itouch2/SphereMenu.git</string>\n\t<key>IDESourceControlProjectVersion</key>\n\t<integer>111</integer>\n\t<key>IDESourceControlProjectWCCIdentifier</key>\n\t<string>32704FBC98C62B87AB408B5578AA0ADD9E778FAF</string>\n\t<key>IDESourceControlProjectWCConfigurations</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>IDESourceControlRepositoryExtensionIdentifierKey</key>\n\t\t\t<string>public.vcs.git</string>\n\t\t\t<key>IDESourceControlWCCIdentifierKey</key>\n\t\t\t<string>32704FBC98C62B87AB408B5578AA0ADD9E778FAF</string>\n\t\t\t<key>IDESourceControlWCCName</key>\n\t\t\t<string>SphereMenu</string>\n\t\t</dict>\n\t</array>\n</dict>\n</plist>\n"
  },
  {
    "path": "SphereMenu.xcodeproj/xcuserdata/Chandler.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Bucket\n   type = \"1\"\n   version = \"2.0\">\n   <Breakpoints>\n      <BreakpointProxy\n         BreakpointExtensionID = \"Xcode.Breakpoint.ExceptionBreakpoint\">\n         <BreakpointContent\n            shouldBeEnabled = \"Yes\"\n            ignoreCount = \"0\"\n            continueAfterRunningActions = \"No\"\n            scope = \"0\"\n            stopOnStyle = \"0\">\n         </BreakpointContent>\n      </BreakpointProxy>\n      <BreakpointProxy\n         BreakpointExtensionID = \"Xcode.Breakpoint.ExceptionBreakpoint\">\n         <BreakpointContent\n            shouldBeEnabled = \"No\"\n            ignoreCount = \"0\"\n            continueAfterRunningActions = \"No\"\n            scope = \"0\"\n            stopOnStyle = \"0\">\n         </BreakpointContent>\n      </BreakpointProxy>\n      <BreakpointProxy\n         BreakpointExtensionID = \"Xcode.Breakpoint.FileBreakpoint\">\n         <BreakpointContent\n            shouldBeEnabled = \"Yes\"\n            ignoreCount = \"0\"\n            continueAfterRunningActions = \"No\"\n            filePath = \"SphereMenu/SphereMenu/SphereMenu.m\"\n            timestampString = \"443928495.367858\"\n            startingColumnNumber = \"9223372036854775807\"\n            endingColumnNumber = \"9223372036854775807\"\n            startingLineNumber = \"234\"\n            endingLineNumber = \"234\"\n            landmarkName = \"-snapToPostionsWithIndex:\"\n            landmarkType = \"5\">\n         </BreakpointContent>\n      </BreakpointProxy>\n      <BreakpointProxy\n         BreakpointExtensionID = \"Xcode.Breakpoint.FileBreakpoint\">\n         <BreakpointContent\n            shouldBeEnabled = \"Yes\"\n            ignoreCount = \"0\"\n            continueAfterRunningActions = \"No\"\n            filePath = \"SphereMenu/SphereMenu/SphereMenu.m\"\n            timestampString = \"443928495.367858\"\n            startingColumnNumber = \"9223372036854775807\"\n            endingColumnNumber = \"9223372036854775807\"\n            startingLineNumber = \"227\"\n            endingLineNumber = \"227\"\n            landmarkName = \"-snapToStartWithIndex:\"\n            landmarkType = \"5\">\n         </BreakpointContent>\n      </BreakpointProxy>\n   </Breakpoints>\n</Bucket>\n"
  },
  {
    "path": "SphereMenu.xcodeproj/xcuserdata/Chandler.xcuserdatad/xcschemes/SphereMenu.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0510\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"CBEE2F9619AA323700461BDB\"\n               BuildableName = \"SphereMenu.app\"\n               BlueprintName = \"SphereMenu\"\n               ReferencedContainer = \"container:SphereMenu.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      buildConfiguration = \"Debug\">\n      <Testables>\n         <TestableReference\n            skipped = \"NO\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"CBEE2FBA19AA323700461BDB\"\n               BuildableName = \"SphereMenuTests.xctest\"\n               BlueprintName = \"SphereMenuTests\"\n               ReferencedContainer = \"container:SphereMenu.xcodeproj\">\n            </BuildableReference>\n         </TestableReference>\n      </Testables>\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"CBEE2F9619AA323700461BDB\"\n            BuildableName = \"SphereMenu.app\"\n            BlueprintName = \"SphereMenu\"\n            ReferencedContainer = \"container:SphereMenu.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n   </TestAction>\n   <LaunchAction\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Debug\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      allowLocationSimulation = \"YES\">\n      <BuildableProductRunnable>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"CBEE2F9619AA323700461BDB\"\n            BuildableName = \"SphereMenu.app\"\n            BlueprintName = \"SphereMenu\"\n            ReferencedContainer = \"container:SphereMenu.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      buildConfiguration = \"Release\"\n      debugDocumentVersioning = \"YES\">\n      <BuildableProductRunnable>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"CBEE2F9619AA323700461BDB\"\n            BuildableName = \"SphereMenu.app\"\n            BlueprintName = \"SphereMenu\"\n            ReferencedContainer = \"container:SphereMenu.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "SphereMenu.xcodeproj/xcuserdata/Chandler.xcuserdatad/xcschemes/xcschememanagement.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>SchemeUserState</key>\n\t<dict>\n\t\t<key>SphereMenu.xcscheme</key>\n\t\t<dict>\n\t\t\t<key>orderHint</key>\n\t\t\t<integer>0</integer>\n\t\t</dict>\n\t</dict>\n\t<key>SuppressBuildableAutocreation</key>\n\t<dict>\n\t\t<key>CBEE2F9619AA323700461BDB</key>\n\t\t<dict>\n\t\t\t<key>primary</key>\n\t\t\t<true/>\n\t\t</dict>\n\t\t<key>CBEE2FBA19AA323700461BDB</key>\n\t\t<dict>\n\t\t\t<key>primary</key>\n\t\t\t<true/>\n\t\t</dict>\n\t</dict>\n</dict>\n</plist>\n"
  },
  {
    "path": "SphereMenuTests/SphereMenuTests-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.tuyou.${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": "SphereMenuTests/SphereMenuTests.m",
    "content": "//\n//  SphereMenuTests.m\n//  SphereMenuTests\n//\n//  Created by Tu You on 14-8-24.\n//  Copyright (c) 2014年 TU YOU. All rights reserved.\n//\n\n#import <XCTest/XCTest.h>\n\n@interface SphereMenuTests : XCTestCase\n\n@end\n\n@implementation SphereMenuTests\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": "SphereMenuTests/en.lproj/InfoPlist.strings",
    "content": "/* Localized versions of Info.plist keys */\n\n"
  }
]