├── ss.png
├── APRoundedMenu
├── en.lproj
│ └── InfoPlist.strings
├── APViewController.h
├── APAppDelegate.h
├── APRoundedMenu-Prefix.pch
├── main.m
├── Images.xcassets
│ ├── AppIcon.appiconset
│ │ └── Contents.json
│ └── LaunchImage.launchimage
│ │ └── Contents.json
├── APRoundedButton.h
├── APViewController.m
├── APRoundedMenu-Info.plist
├── APRoundedButton.m
├── APAppDelegate.m
└── Base.lproj
│ └── Main.storyboard
├── APRoundedMenuTests
├── en.lproj
│ └── InfoPlist.strings
├── APRoundedMenuTests-Info.plist
└── APRoundedMenuTests.m
├── APRoundedMenu.xcodeproj
├── xcuserdata
│ ├── elp.xcuserdatad
│ │ ├── xcdebugger
│ │ │ └── Breakpoints_v2.xcbkptlist
│ │ └── xcschemes
│ │ │ ├── xcschememanagement.plist
│ │ │ └── APRoundedMenu.xcscheme
│ └── pasky.xcuserdatad
│ │ └── xcschemes
│ │ ├── xcschememanagement.plist
│ │ └── APRoundedMenu.xcscheme
├── project.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcuserdata
│ │ ├── elp.xcuserdatad
│ │ ├── UserInterfaceState.xcuserstate
│ │ └── WorkspaceSettings.xcsettings
│ │ └── pasky.xcuserdatad
│ │ └── UserInterfaceState.xcuserstate
└── project.pbxproj
└── README.md
/ss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elpsk/APRoundedButton/HEAD/ss.png
--------------------------------------------------------------------------------
/APRoundedMenu/en.lproj/InfoPlist.strings:
--------------------------------------------------------------------------------
1 | /* Localized versions of Info.plist keys */
2 |
3 |
--------------------------------------------------------------------------------
/APRoundedMenuTests/en.lproj/InfoPlist.strings:
--------------------------------------------------------------------------------
1 | /* Localized versions of Info.plist keys */
2 |
3 |
--------------------------------------------------------------------------------
/APRoundedMenu.xcodeproj/xcuserdata/elp.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
--------------------------------------------------------------------------------
/APRoundedMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/APRoundedMenu.xcodeproj/project.xcworkspace/xcuserdata/elp.xcuserdatad/UserInterfaceState.xcuserstate:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elpsk/APRoundedButton/HEAD/APRoundedMenu.xcodeproj/project.xcworkspace/xcuserdata/elp.xcuserdatad/UserInterfaceState.xcuserstate
--------------------------------------------------------------------------------
/APRoundedMenu.xcodeproj/project.xcworkspace/xcuserdata/pasky.xcuserdatad/UserInterfaceState.xcuserstate:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elpsk/APRoundedButton/HEAD/APRoundedMenu.xcodeproj/project.xcworkspace/xcuserdata/pasky.xcuserdatad/UserInterfaceState.xcuserstate
--------------------------------------------------------------------------------
/APRoundedMenu/APViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // APViewController.h
3 | // APRoundedMenu
4 | //
5 | // Created by Alberto Pasca on 02/04/14.
6 | // Copyright (c) 2014 albertopasca.it. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface APViewController : UIViewController
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/APRoundedMenu/APAppDelegate.h:
--------------------------------------------------------------------------------
1 | //
2 | // APAppDelegate.h
3 | // APRoundedMenu
4 | //
5 | // Created by Alberto Pasca on 02/04/14.
6 | // Copyright (c) 2014 albertopasca.it. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface APAppDelegate : UIResponder
12 |
13 | @property (strong, nonatomic) UIWindow *window;
14 |
15 | @end
16 |
--------------------------------------------------------------------------------
/APRoundedMenu/APRoundedMenu-Prefix.pch:
--------------------------------------------------------------------------------
1 | //
2 | // Prefix header
3 | //
4 | // The contents of this file are implicitly included at the beginning of every source file.
5 | //
6 |
7 | #import
8 |
9 | #ifndef __IPHONE_5_0
10 | #warning "This project uses features only available in iOS SDK 5.0 and later."
11 | #endif
12 |
13 | #ifdef __OBJC__
14 | #import
15 | #import
16 | #endif
17 |
--------------------------------------------------------------------------------
/APRoundedMenu/main.m:
--------------------------------------------------------------------------------
1 | //
2 | // main.m
3 | // APRoundedMenu
4 | //
5 | // Created by Alberto Pasca on 02/04/14.
6 | // Copyright (c) 2014 albertopasca.it. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | #import "APAppDelegate.h"
12 |
13 | int main(int argc, char * argv[])
14 | {
15 | @autoreleasepool {
16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([APAppDelegate class]));
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/APRoundedMenu.xcodeproj/project.xcworkspace/xcuserdata/elp.xcuserdatad/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | HasAskedToTakeAutomaticSnapshotBeforeSignificantChanges
6 |
7 | SnapshotAutomaticallyBeforeSignificantChanges
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/APRoundedMenu/Images.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "29x29",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "40x40",
11 | "scale" : "2x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "60x60",
16 | "scale" : "2x"
17 | }
18 | ],
19 | "info" : {
20 | "version" : 1,
21 | "author" : "xcode"
22 | }
23 | }
--------------------------------------------------------------------------------
/APRoundedMenu/Images.xcassets/LaunchImage.launchimage/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "orientation" : "portrait",
5 | "idiom" : "iphone",
6 | "extent" : "full-screen",
7 | "minimum-system-version" : "7.0",
8 | "scale" : "2x"
9 | },
10 | {
11 | "orientation" : "portrait",
12 | "idiom" : "iphone",
13 | "subtype" : "retina4",
14 | "extent" : "full-screen",
15 | "minimum-system-version" : "7.0",
16 | "scale" : "2x"
17 | }
18 | ],
19 | "info" : {
20 | "version" : 1,
21 | "author" : "xcode"
22 | }
23 | }
--------------------------------------------------------------------------------
/APRoundedMenu/APRoundedButton.h:
--------------------------------------------------------------------------------
1 | //
2 | // Created by Alberto Pasca on 27/02/14.
3 | // Copyright (c) 2014 albertopasca.it. All rights reserved.
4 | //
5 |
6 | #import
7 |
8 |
9 | IB_DESIGNABLE
10 | @interface APRoundedButton : UIButton
11 |
12 | @property (nonatomic) IBInspectable BOOL topLeft;
13 | @property (nonatomic) IBInspectable BOOL topRigth;
14 | @property (nonatomic) IBInspectable BOOL bottomLeft;
15 | @property (nonatomic) IBInspectable BOOL bottomRigth;
16 | @property (nonatomic) IBInspectable int cornerRadius;
17 | @property (nonatomic) IBInspectable UIColor *fillColor;
18 |
19 | @end
20 |
--------------------------------------------------------------------------------
/APRoundedMenu/APViewController.m:
--------------------------------------------------------------------------------
1 | //
2 | // APViewController.m
3 | // APRoundedMenu
4 | //
5 | // Created by Alberto Pasca on 02/04/14.
6 | // Copyright (c) 2014 albertopasca.it. All rights reserved.
7 | //
8 |
9 | #import "APViewController.h"
10 |
11 | @interface APViewController ()
12 |
13 | @end
14 |
15 | @implementation APViewController
16 |
17 | - (void)viewDidLoad
18 | {
19 | [super viewDidLoad];
20 | // Do any additional setup after loading the view, typically from a nib.
21 | }
22 |
23 | - (void)didReceiveMemoryWarning
24 | {
25 | [super didReceiveMemoryWarning];
26 | // Dispose of any resources that can be recreated.
27 | }
28 |
29 | @end
30 |
--------------------------------------------------------------------------------
/APRoundedMenu.xcodeproj/xcuserdata/elp.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SchemeUserState
6 |
7 | APRoundedMenu.xcscheme
8 |
9 | orderHint
10 | 0
11 |
12 |
13 | SuppressBuildableAutocreation
14 |
15 | 59E5623718EC0FAD00CEDC86
16 |
17 | primary
18 |
19 |
20 | 59E5625818EC0FAD00CEDC86
21 |
22 | primary
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/APRoundedMenu.xcodeproj/xcuserdata/pasky.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SchemeUserState
6 |
7 | APRoundedMenu.xcscheme
8 |
9 | orderHint
10 | 0
11 |
12 |
13 | SuppressBuildableAutocreation
14 |
15 | 59E5623718EC0FAD00CEDC86
16 |
17 | primary
18 |
19 |
20 | 59E5625818EC0FAD00CEDC86
21 |
22 | primary
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/APRoundedMenuTests/APRoundedMenuTests-Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | ${EXECUTABLE_NAME}
9 | CFBundleIdentifier
10 | it.albertopasca.${PRODUCT_NAME:rfc1034identifier}
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundlePackageType
14 | BNDL
15 | CFBundleShortVersionString
16 | 1.0
17 | CFBundleSignature
18 | ????
19 | CFBundleVersion
20 | 1
21 |
22 |
23 |
--------------------------------------------------------------------------------
/APRoundedMenuTests/APRoundedMenuTests.m:
--------------------------------------------------------------------------------
1 | //
2 | // APRoundedMenuTests.m
3 | // APRoundedMenuTests
4 | //
5 | // Created by Alberto Pasca on 02/04/14.
6 | // Copyright (c) 2014 albertopasca.it. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface APRoundedMenuTests : XCTestCase
12 |
13 | @end
14 |
15 | @implementation APRoundedMenuTests
16 |
17 | - (void)setUp
18 | {
19 | [super setUp];
20 | // Put setup code here. This method is called before the invocation of each test method in the class.
21 | }
22 |
23 | - (void)tearDown
24 | {
25 | // Put teardown code here. This method is called after the invocation of each test method in the class.
26 | [super tearDown];
27 | }
28 |
29 | - (void)testExample
30 | {
31 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
32 | }
33 |
34 | @end
35 |
--------------------------------------------------------------------------------
/APRoundedMenu/APRoundedMenu-Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | ${PRODUCT_NAME}
9 | CFBundleExecutable
10 | ${EXECUTABLE_NAME}
11 | CFBundleIdentifier
12 | it.albertopasca.${PRODUCT_NAME:rfc1034identifier}
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | ${PRODUCT_NAME}
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | 1.0
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | 1.0
25 | LSRequiresIPhoneOS
26 |
27 | UIMainStoryboardFile
28 | Main
29 | UIRequiredDeviceCapabilities
30 |
31 | armv7
32 |
33 | UISupportedInterfaceOrientations
34 |
35 | UIInterfaceOrientationPortrait
36 | UIInterfaceOrientationLandscapeLeft
37 | UIInterfaceOrientationLandscapeRight
38 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/APRoundedMenu/APRoundedButton.m:
--------------------------------------------------------------------------------
1 | //
2 | // Created by Alberto Pasca on 27/02/14.
3 | // Copyright (c) 2014 albertopasca.it. All rights reserved.
4 | //
5 |
6 | #import "APRoundedButton.h"
7 | #import
8 |
9 | @interface APRoundedButton()
10 | {
11 | UIRectCorner _corners;
12 | }
13 | @end
14 |
15 | @implementation APRoundedButton
16 |
17 | - (void)setTopLeft:(BOOL)topLeft {
18 | _topLeft = topLeft;
19 | _corners |= UIRectCornerTopLeft;
20 | }
21 |
22 | - (void)setTopRigth:(BOOL)topRigth {
23 | _topRigth = topRigth;
24 | _corners |= UIRectCornerTopRight;
25 | }
26 |
27 | - (void)setBottomLeft:(BOOL)bottomLeft {
28 | _bottomLeft = bottomLeft;
29 | _corners |= UIRectCornerBottomLeft;
30 | }
31 |
32 | - (void)setBottomRigth:(BOOL)bottomRigth {
33 | _bottomRigth = bottomRigth;
34 | _corners |= UIRectCornerBottomRight;
35 | }
36 |
37 | - (void)setFillColor:(UIColor *)fillColor {
38 | _fillColor = fillColor;
39 | self.backgroundColor = fillColor;
40 | }
41 |
42 | - (void)setCornerRadius:(int)cornerRadius {
43 | _cornerRadius = cornerRadius;
44 | }
45 |
46 | - (void)drawRect:(CGRect)rect {
47 | [super drawRect:rect];
48 |
49 | UIBezierPath *maskPath =
50 | [UIBezierPath bezierPathWithRoundedRect:self.bounds
51 | byRoundingCorners:_corners
52 | cornerRadii:CGSizeMake(_cornerRadius, _cornerRadius+10)];
53 |
54 | CAShapeLayer *maskLayer = [CAShapeLayer layer];
55 | maskLayer.frame = self.bounds;
56 | maskLayer.path = maskPath.CGPath;
57 | self.layer.mask = maskLayer;
58 | }
59 |
60 | @end
61 |
62 |
63 |
--------------------------------------------------------------------------------
/APRoundedMenu/APAppDelegate.m:
--------------------------------------------------------------------------------
1 | //
2 | // APAppDelegate.m
3 | // APRoundedMenu
4 | //
5 | // Created by Alberto Pasca on 02/04/14.
6 | // Copyright (c) 2014 albertopasca.it. All rights reserved.
7 | //
8 |
9 | #import "APAppDelegate.h"
10 |
11 | @implementation APAppDelegate
12 |
13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
14 | {
15 | // Override point for customization after application launch.
16 | return YES;
17 | }
18 |
19 | - (void)applicationWillResignActive:(UIApplication *)application
20 | {
21 | // 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.
22 | // 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.
23 | }
24 |
25 | - (void)applicationDidEnterBackground:(UIApplication *)application
26 | {
27 | // 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.
28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
29 | }
30 |
31 | - (void)applicationWillEnterForeground:(UIApplication *)application
32 | {
33 | // 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.
34 | }
35 |
36 | - (void)applicationDidBecomeActive:(UIApplication *)application
37 | {
38 | // 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.
39 | }
40 |
41 | - (void)applicationWillTerminate:(UIApplication *)application
42 | {
43 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
44 | }
45 |
46 | @end
47 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | APRoundedButton [](https://raw.github.com/elpsk/APGraph-Route/master/passing.png)
2 | ===============
3 |
4 | A simple XIB extension to make rounded custom buttons, without writing one line of code, using **IBInspectable**.
5 |
6 | **IBInspectable** properties provide new access to an old feature: user-defined runtime attributes.
7 | Currently accessible from the identity inspector, these attributes have been available since before
8 | Interface Builder was integrated into Xcode.
9 | They provide a powerful mechanism for configuring any key-value coded property of an instance in a NIB, XIB, or storyboard.
10 |
11 | Apple doc: (https://developer.apple.com/library/ios/recipes/xcode_help-IB_objects_media/Chapters/CreatingaLiveViewofaCustomObject.html)
12 |
13 |
14 | Requirements
15 | ------------
16 | `ARC`, `iOS 7+`, `Xcode 5`
17 |
18 |
19 |
20 | How to use
21 | ------------
22 |
23 | Copy in your project the files:
24 |
25 | ```
26 | APRoundedButton.h
27 | APRoundedButton.m
28 | ```
29 |
30 | Next, open your *XIB* or *Storyboard*, make a button. Change *UIButton default class* with **APRoundedButton**.
31 |
32 | 
33 |
34 |
35 | That's all.
36 | Build and run.
37 |
38 | #### No one line of code is needed!
39 |
40 |
41 |
42 | MIT License
43 | ------------
44 |
45 | The MIT License (MIT)
46 |
47 | (c)2015 Alberto Pasca, albertopasca.it
48 |
49 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
50 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
51 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
52 |
53 |
--------------------------------------------------------------------------------
/APRoundedMenu.xcodeproj/xcuserdata/elp.xcuserdatad/xcschemes/APRoundedMenu.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
42 |
43 |
49 |
50 |
51 |
52 |
61 |
62 |
68 |
69 |
70 |
71 |
72 |
73 |
79 |
80 |
86 |
87 |
88 |
89 |
91 |
92 |
95 |
96 |
97 |
--------------------------------------------------------------------------------
/APRoundedMenu.xcodeproj/xcuserdata/pasky.xcuserdatad/xcschemes/APRoundedMenu.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
42 |
43 |
49 |
50 |
51 |
52 |
53 |
54 |
64 |
66 |
72 |
73 |
74 |
75 |
76 |
77 |
83 |
85 |
91 |
92 |
93 |
94 |
96 |
97 |
100 |
101 |
102 |
--------------------------------------------------------------------------------
/APRoundedMenu.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 59E5623C18EC0FAD00CEDC86 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 59E5623B18EC0FAD00CEDC86 /* Foundation.framework */; };
11 | 59E5623E18EC0FAD00CEDC86 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 59E5623D18EC0FAD00CEDC86 /* CoreGraphics.framework */; };
12 | 59E5624018EC0FAD00CEDC86 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 59E5623F18EC0FAD00CEDC86 /* UIKit.framework */; };
13 | 59E5624618EC0FAD00CEDC86 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 59E5624418EC0FAD00CEDC86 /* InfoPlist.strings */; };
14 | 59E5624818EC0FAD00CEDC86 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 59E5624718EC0FAD00CEDC86 /* main.m */; };
15 | 59E5624C18EC0FAD00CEDC86 /* APAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 59E5624B18EC0FAD00CEDC86 /* APAppDelegate.m */; };
16 | 59E5624F18EC0FAD00CEDC86 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 59E5624D18EC0FAD00CEDC86 /* Main.storyboard */; };
17 | 59E5625218EC0FAD00CEDC86 /* APViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 59E5625118EC0FAD00CEDC86 /* APViewController.m */; };
18 | 59E5625418EC0FAD00CEDC86 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 59E5625318EC0FAD00CEDC86 /* Images.xcassets */; };
19 | 59E5625B18EC0FAD00CEDC86 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 59E5625A18EC0FAD00CEDC86 /* XCTest.framework */; };
20 | 59E5625C18EC0FAD00CEDC86 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 59E5623B18EC0FAD00CEDC86 /* Foundation.framework */; };
21 | 59E5625D18EC0FAD00CEDC86 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 59E5623F18EC0FAD00CEDC86 /* UIKit.framework */; };
22 | 59E5626518EC0FAD00CEDC86 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 59E5626318EC0FAD00CEDC86 /* InfoPlist.strings */; };
23 | 59E5626718EC0FAD00CEDC86 /* APRoundedMenuTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 59E5626618EC0FAD00CEDC86 /* APRoundedMenuTests.m */; };
24 | 59E5627218EC0FBB00CEDC86 /* APRoundedButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 59E5627118EC0FBB00CEDC86 /* APRoundedButton.m */; };
25 | C3A1E88B1C07779700B33C13 /* README.md in Sources */ = {isa = PBXBuildFile; fileRef = C3A1E88A1C07779700B33C13 /* README.md */; };
26 | /* End PBXBuildFile section */
27 |
28 | /* Begin PBXContainerItemProxy section */
29 | 59E5625E18EC0FAD00CEDC86 /* PBXContainerItemProxy */ = {
30 | isa = PBXContainerItemProxy;
31 | containerPortal = 59E5623018EC0FAD00CEDC86 /* Project object */;
32 | proxyType = 1;
33 | remoteGlobalIDString = 59E5623718EC0FAD00CEDC86;
34 | remoteInfo = APRoundedMenu;
35 | };
36 | /* End PBXContainerItemProxy section */
37 |
38 | /* Begin PBXFileReference section */
39 | 59E5623818EC0FAD00CEDC86 /* APRoundedMenu.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = APRoundedMenu.app; sourceTree = BUILT_PRODUCTS_DIR; };
40 | 59E5623B18EC0FAD00CEDC86 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
41 | 59E5623D18EC0FAD00CEDC86 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
42 | 59E5623F18EC0FAD00CEDC86 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
43 | 59E5624318EC0FAD00CEDC86 /* APRoundedMenu-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "APRoundedMenu-Info.plist"; sourceTree = ""; };
44 | 59E5624518EC0FAD00CEDC86 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; };
45 | 59E5624718EC0FAD00CEDC86 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; };
46 | 59E5624918EC0FAD00CEDC86 /* APRoundedMenu-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "APRoundedMenu-Prefix.pch"; sourceTree = ""; };
47 | 59E5624A18EC0FAD00CEDC86 /* APAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = APAppDelegate.h; sourceTree = ""; };
48 | 59E5624B18EC0FAD00CEDC86 /* APAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = APAppDelegate.m; sourceTree = ""; };
49 | 59E5624E18EC0FAD00CEDC86 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
50 | 59E5625018EC0FAD00CEDC86 /* APViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = APViewController.h; sourceTree = ""; };
51 | 59E5625118EC0FAD00CEDC86 /* APViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = APViewController.m; sourceTree = ""; };
52 | 59E5625318EC0FAD00CEDC86 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; };
53 | 59E5625918EC0FAD00CEDC86 /* APRoundedMenuTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = APRoundedMenuTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
54 | 59E5625A18EC0FAD00CEDC86 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
55 | 59E5626218EC0FAD00CEDC86 /* APRoundedMenuTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "APRoundedMenuTests-Info.plist"; sourceTree = ""; };
56 | 59E5626418EC0FAD00CEDC86 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; };
57 | 59E5626618EC0FAD00CEDC86 /* APRoundedMenuTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = APRoundedMenuTests.m; sourceTree = ""; };
58 | 59E5627018EC0FBB00CEDC86 /* APRoundedButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APRoundedButton.h; sourceTree = ""; };
59 | 59E5627118EC0FBB00CEDC86 /* APRoundedButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = APRoundedButton.m; sourceTree = ""; };
60 | C3A1E88A1C07779700B33C13 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = SOURCE_ROOT; };
61 | /* End PBXFileReference section */
62 |
63 | /* Begin PBXFrameworksBuildPhase section */
64 | 59E5623518EC0FAD00CEDC86 /* Frameworks */ = {
65 | isa = PBXFrameworksBuildPhase;
66 | buildActionMask = 2147483647;
67 | files = (
68 | 59E5623E18EC0FAD00CEDC86 /* CoreGraphics.framework in Frameworks */,
69 | 59E5624018EC0FAD00CEDC86 /* UIKit.framework in Frameworks */,
70 | 59E5623C18EC0FAD00CEDC86 /* Foundation.framework in Frameworks */,
71 | );
72 | runOnlyForDeploymentPostprocessing = 0;
73 | };
74 | 59E5625618EC0FAD00CEDC86 /* Frameworks */ = {
75 | isa = PBXFrameworksBuildPhase;
76 | buildActionMask = 2147483647;
77 | files = (
78 | 59E5625B18EC0FAD00CEDC86 /* XCTest.framework in Frameworks */,
79 | 59E5625D18EC0FAD00CEDC86 /* UIKit.framework in Frameworks */,
80 | 59E5625C18EC0FAD00CEDC86 /* Foundation.framework in Frameworks */,
81 | );
82 | runOnlyForDeploymentPostprocessing = 0;
83 | };
84 | /* End PBXFrameworksBuildPhase section */
85 |
86 | /* Begin PBXGroup section */
87 | 59E5622F18EC0FAD00CEDC86 = {
88 | isa = PBXGroup;
89 | children = (
90 | 59E5624118EC0FAD00CEDC86 /* APRoundedMenu */,
91 | 59E5626018EC0FAD00CEDC86 /* APRoundedMenuTests */,
92 | 59E5623A18EC0FAD00CEDC86 /* Frameworks */,
93 | 59E5623918EC0FAD00CEDC86 /* Products */,
94 | );
95 | sourceTree = "";
96 | };
97 | 59E5623918EC0FAD00CEDC86 /* Products */ = {
98 | isa = PBXGroup;
99 | children = (
100 | 59E5623818EC0FAD00CEDC86 /* APRoundedMenu.app */,
101 | 59E5625918EC0FAD00CEDC86 /* APRoundedMenuTests.xctest */,
102 | );
103 | name = Products;
104 | sourceTree = "";
105 | };
106 | 59E5623A18EC0FAD00CEDC86 /* Frameworks */ = {
107 | isa = PBXGroup;
108 | children = (
109 | 59E5623B18EC0FAD00CEDC86 /* Foundation.framework */,
110 | 59E5623D18EC0FAD00CEDC86 /* CoreGraphics.framework */,
111 | 59E5623F18EC0FAD00CEDC86 /* UIKit.framework */,
112 | 59E5625A18EC0FAD00CEDC86 /* XCTest.framework */,
113 | );
114 | name = Frameworks;
115 | sourceTree = "";
116 | };
117 | 59E5624118EC0FAD00CEDC86 /* APRoundedMenu */ = {
118 | isa = PBXGroup;
119 | children = (
120 | 59E5624A18EC0FAD00CEDC86 /* APAppDelegate.h */,
121 | 59E5624B18EC0FAD00CEDC86 /* APAppDelegate.m */,
122 | 59E5624D18EC0FAD00CEDC86 /* Main.storyboard */,
123 | 59E5625018EC0FAD00CEDC86 /* APViewController.h */,
124 | 59E5625118EC0FAD00CEDC86 /* APViewController.m */,
125 | 59E5627018EC0FBB00CEDC86 /* APRoundedButton.h */,
126 | 59E5627118EC0FBB00CEDC86 /* APRoundedButton.m */,
127 | 59E5625318EC0FAD00CEDC86 /* Images.xcassets */,
128 | 59E5624218EC0FAD00CEDC86 /* Supporting Files */,
129 | );
130 | path = APRoundedMenu;
131 | sourceTree = "";
132 | };
133 | 59E5624218EC0FAD00CEDC86 /* Supporting Files */ = {
134 | isa = PBXGroup;
135 | children = (
136 | C3A1E88A1C07779700B33C13 /* README.md */,
137 | 59E5624318EC0FAD00CEDC86 /* APRoundedMenu-Info.plist */,
138 | 59E5624418EC0FAD00CEDC86 /* InfoPlist.strings */,
139 | 59E5624718EC0FAD00CEDC86 /* main.m */,
140 | 59E5624918EC0FAD00CEDC86 /* APRoundedMenu-Prefix.pch */,
141 | );
142 | name = "Supporting Files";
143 | sourceTree = "";
144 | };
145 | 59E5626018EC0FAD00CEDC86 /* APRoundedMenuTests */ = {
146 | isa = PBXGroup;
147 | children = (
148 | 59E5626618EC0FAD00CEDC86 /* APRoundedMenuTests.m */,
149 | 59E5626118EC0FAD00CEDC86 /* Supporting Files */,
150 | );
151 | path = APRoundedMenuTests;
152 | sourceTree = "";
153 | };
154 | 59E5626118EC0FAD00CEDC86 /* Supporting Files */ = {
155 | isa = PBXGroup;
156 | children = (
157 | 59E5626218EC0FAD00CEDC86 /* APRoundedMenuTests-Info.plist */,
158 | 59E5626318EC0FAD00CEDC86 /* InfoPlist.strings */,
159 | );
160 | name = "Supporting Files";
161 | sourceTree = "";
162 | };
163 | /* End PBXGroup section */
164 |
165 | /* Begin PBXNativeTarget section */
166 | 59E5623718EC0FAD00CEDC86 /* APRoundedMenu */ = {
167 | isa = PBXNativeTarget;
168 | buildConfigurationList = 59E5626A18EC0FAD00CEDC86 /* Build configuration list for PBXNativeTarget "APRoundedMenu" */;
169 | buildPhases = (
170 | 59E5623418EC0FAD00CEDC86 /* Sources */,
171 | 59E5623518EC0FAD00CEDC86 /* Frameworks */,
172 | 59E5623618EC0FAD00CEDC86 /* Resources */,
173 | );
174 | buildRules = (
175 | );
176 | dependencies = (
177 | );
178 | name = APRoundedMenu;
179 | productName = APRoundedMenu;
180 | productReference = 59E5623818EC0FAD00CEDC86 /* APRoundedMenu.app */;
181 | productType = "com.apple.product-type.application";
182 | };
183 | 59E5625818EC0FAD00CEDC86 /* APRoundedMenuTests */ = {
184 | isa = PBXNativeTarget;
185 | buildConfigurationList = 59E5626D18EC0FAD00CEDC86 /* Build configuration list for PBXNativeTarget "APRoundedMenuTests" */;
186 | buildPhases = (
187 | 59E5625518EC0FAD00CEDC86 /* Sources */,
188 | 59E5625618EC0FAD00CEDC86 /* Frameworks */,
189 | 59E5625718EC0FAD00CEDC86 /* Resources */,
190 | );
191 | buildRules = (
192 | );
193 | dependencies = (
194 | 59E5625F18EC0FAD00CEDC86 /* PBXTargetDependency */,
195 | );
196 | name = APRoundedMenuTests;
197 | productName = APRoundedMenuTests;
198 | productReference = 59E5625918EC0FAD00CEDC86 /* APRoundedMenuTests.xctest */;
199 | productType = "com.apple.product-type.bundle.unit-test";
200 | };
201 | /* End PBXNativeTarget section */
202 |
203 | /* Begin PBXProject section */
204 | 59E5623018EC0FAD00CEDC86 /* Project object */ = {
205 | isa = PBXProject;
206 | attributes = {
207 | CLASSPREFIX = AP;
208 | LastUpgradeCheck = 0510;
209 | ORGANIZATIONNAME = albertopasca.it;
210 | TargetAttributes = {
211 | 59E5625818EC0FAD00CEDC86 = {
212 | TestTargetID = 59E5623718EC0FAD00CEDC86;
213 | };
214 | };
215 | };
216 | buildConfigurationList = 59E5623318EC0FAD00CEDC86 /* Build configuration list for PBXProject "APRoundedMenu" */;
217 | compatibilityVersion = "Xcode 3.2";
218 | developmentRegion = English;
219 | hasScannedForEncodings = 0;
220 | knownRegions = (
221 | en,
222 | Base,
223 | );
224 | mainGroup = 59E5622F18EC0FAD00CEDC86;
225 | productRefGroup = 59E5623918EC0FAD00CEDC86 /* Products */;
226 | projectDirPath = "";
227 | projectRoot = "";
228 | targets = (
229 | 59E5623718EC0FAD00CEDC86 /* APRoundedMenu */,
230 | 59E5625818EC0FAD00CEDC86 /* APRoundedMenuTests */,
231 | );
232 | };
233 | /* End PBXProject section */
234 |
235 | /* Begin PBXResourcesBuildPhase section */
236 | 59E5623618EC0FAD00CEDC86 /* Resources */ = {
237 | isa = PBXResourcesBuildPhase;
238 | buildActionMask = 2147483647;
239 | files = (
240 | 59E5625418EC0FAD00CEDC86 /* Images.xcassets in Resources */,
241 | 59E5624618EC0FAD00CEDC86 /* InfoPlist.strings in Resources */,
242 | 59E5624F18EC0FAD00CEDC86 /* Main.storyboard in Resources */,
243 | );
244 | runOnlyForDeploymentPostprocessing = 0;
245 | };
246 | 59E5625718EC0FAD00CEDC86 /* Resources */ = {
247 | isa = PBXResourcesBuildPhase;
248 | buildActionMask = 2147483647;
249 | files = (
250 | 59E5626518EC0FAD00CEDC86 /* InfoPlist.strings in Resources */,
251 | );
252 | runOnlyForDeploymentPostprocessing = 0;
253 | };
254 | /* End PBXResourcesBuildPhase section */
255 |
256 | /* Begin PBXSourcesBuildPhase section */
257 | 59E5623418EC0FAD00CEDC86 /* Sources */ = {
258 | isa = PBXSourcesBuildPhase;
259 | buildActionMask = 2147483647;
260 | files = (
261 | 59E5624818EC0FAD00CEDC86 /* main.m in Sources */,
262 | 59E5627218EC0FBB00CEDC86 /* APRoundedButton.m in Sources */,
263 | C3A1E88B1C07779700B33C13 /* README.md in Sources */,
264 | 59E5625218EC0FAD00CEDC86 /* APViewController.m in Sources */,
265 | 59E5624C18EC0FAD00CEDC86 /* APAppDelegate.m in Sources */,
266 | );
267 | runOnlyForDeploymentPostprocessing = 0;
268 | };
269 | 59E5625518EC0FAD00CEDC86 /* Sources */ = {
270 | isa = PBXSourcesBuildPhase;
271 | buildActionMask = 2147483647;
272 | files = (
273 | 59E5626718EC0FAD00CEDC86 /* APRoundedMenuTests.m in Sources */,
274 | );
275 | runOnlyForDeploymentPostprocessing = 0;
276 | };
277 | /* End PBXSourcesBuildPhase section */
278 |
279 | /* Begin PBXTargetDependency section */
280 | 59E5625F18EC0FAD00CEDC86 /* PBXTargetDependency */ = {
281 | isa = PBXTargetDependency;
282 | target = 59E5623718EC0FAD00CEDC86 /* APRoundedMenu */;
283 | targetProxy = 59E5625E18EC0FAD00CEDC86 /* PBXContainerItemProxy */;
284 | };
285 | /* End PBXTargetDependency section */
286 |
287 | /* Begin PBXVariantGroup section */
288 | 59E5624418EC0FAD00CEDC86 /* InfoPlist.strings */ = {
289 | isa = PBXVariantGroup;
290 | children = (
291 | 59E5624518EC0FAD00CEDC86 /* en */,
292 | );
293 | name = InfoPlist.strings;
294 | sourceTree = "";
295 | };
296 | 59E5624D18EC0FAD00CEDC86 /* Main.storyboard */ = {
297 | isa = PBXVariantGroup;
298 | children = (
299 | 59E5624E18EC0FAD00CEDC86 /* Base */,
300 | );
301 | name = Main.storyboard;
302 | sourceTree = "";
303 | };
304 | 59E5626318EC0FAD00CEDC86 /* InfoPlist.strings */ = {
305 | isa = PBXVariantGroup;
306 | children = (
307 | 59E5626418EC0FAD00CEDC86 /* en */,
308 | );
309 | name = InfoPlist.strings;
310 | sourceTree = "";
311 | };
312 | /* End PBXVariantGroup section */
313 |
314 | /* Begin XCBuildConfiguration section */
315 | 59E5626818EC0FAD00CEDC86 /* Debug */ = {
316 | isa = XCBuildConfiguration;
317 | buildSettings = {
318 | ALWAYS_SEARCH_USER_PATHS = NO;
319 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
320 | CLANG_CXX_LIBRARY = "libc++";
321 | CLANG_ENABLE_MODULES = YES;
322 | CLANG_ENABLE_OBJC_ARC = YES;
323 | CLANG_WARN_BOOL_CONVERSION = YES;
324 | CLANG_WARN_CONSTANT_CONVERSION = YES;
325 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
326 | CLANG_WARN_EMPTY_BODY = YES;
327 | CLANG_WARN_ENUM_CONVERSION = YES;
328 | CLANG_WARN_INT_CONVERSION = YES;
329 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
330 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
331 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
332 | COPY_PHASE_STRIP = NO;
333 | GCC_C_LANGUAGE_STANDARD = gnu99;
334 | GCC_DYNAMIC_NO_PIC = NO;
335 | GCC_OPTIMIZATION_LEVEL = 0;
336 | GCC_PREPROCESSOR_DEFINITIONS = (
337 | "DEBUG=1",
338 | "$(inherited)",
339 | );
340 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
341 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
342 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
343 | GCC_WARN_UNDECLARED_SELECTOR = YES;
344 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
345 | GCC_WARN_UNUSED_FUNCTION = YES;
346 | GCC_WARN_UNUSED_VARIABLE = YES;
347 | IPHONEOS_DEPLOYMENT_TARGET = 7.1;
348 | ONLY_ACTIVE_ARCH = YES;
349 | SDKROOT = iphoneos;
350 | };
351 | name = Debug;
352 | };
353 | 59E5626918EC0FAD00CEDC86 /* Release */ = {
354 | isa = XCBuildConfiguration;
355 | buildSettings = {
356 | ALWAYS_SEARCH_USER_PATHS = NO;
357 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
358 | CLANG_CXX_LIBRARY = "libc++";
359 | CLANG_ENABLE_MODULES = YES;
360 | CLANG_ENABLE_OBJC_ARC = YES;
361 | CLANG_WARN_BOOL_CONVERSION = YES;
362 | CLANG_WARN_CONSTANT_CONVERSION = YES;
363 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
364 | CLANG_WARN_EMPTY_BODY = YES;
365 | CLANG_WARN_ENUM_CONVERSION = YES;
366 | CLANG_WARN_INT_CONVERSION = YES;
367 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
368 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
369 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
370 | COPY_PHASE_STRIP = YES;
371 | ENABLE_NS_ASSERTIONS = NO;
372 | GCC_C_LANGUAGE_STANDARD = gnu99;
373 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
374 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
375 | GCC_WARN_UNDECLARED_SELECTOR = YES;
376 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
377 | GCC_WARN_UNUSED_FUNCTION = YES;
378 | GCC_WARN_UNUSED_VARIABLE = YES;
379 | IPHONEOS_DEPLOYMENT_TARGET = 7.1;
380 | SDKROOT = iphoneos;
381 | VALIDATE_PRODUCT = YES;
382 | };
383 | name = Release;
384 | };
385 | 59E5626B18EC0FAD00CEDC86 /* Debug */ = {
386 | isa = XCBuildConfiguration;
387 | buildSettings = {
388 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
389 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
390 | GCC_PRECOMPILE_PREFIX_HEADER = YES;
391 | GCC_PREFIX_HEADER = "APRoundedMenu/APRoundedMenu-Prefix.pch";
392 | INFOPLIST_FILE = "APRoundedMenu/APRoundedMenu-Info.plist";
393 | PRODUCT_NAME = "$(TARGET_NAME)";
394 | WRAPPER_EXTENSION = app;
395 | };
396 | name = Debug;
397 | };
398 | 59E5626C18EC0FAD00CEDC86 /* Release */ = {
399 | isa = XCBuildConfiguration;
400 | buildSettings = {
401 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
402 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
403 | GCC_PRECOMPILE_PREFIX_HEADER = YES;
404 | GCC_PREFIX_HEADER = "APRoundedMenu/APRoundedMenu-Prefix.pch";
405 | INFOPLIST_FILE = "APRoundedMenu/APRoundedMenu-Info.plist";
406 | PRODUCT_NAME = "$(TARGET_NAME)";
407 | WRAPPER_EXTENSION = app;
408 | };
409 | name = Release;
410 | };
411 | 59E5626E18EC0FAD00CEDC86 /* Debug */ = {
412 | isa = XCBuildConfiguration;
413 | buildSettings = {
414 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/APRoundedMenu.app/APRoundedMenu";
415 | FRAMEWORK_SEARCH_PATHS = (
416 | "$(SDKROOT)/Developer/Library/Frameworks",
417 | "$(inherited)",
418 | "$(DEVELOPER_FRAMEWORKS_DIR)",
419 | );
420 | GCC_PRECOMPILE_PREFIX_HEADER = YES;
421 | GCC_PREFIX_HEADER = "APRoundedMenu/APRoundedMenu-Prefix.pch";
422 | GCC_PREPROCESSOR_DEFINITIONS = (
423 | "DEBUG=1",
424 | "$(inherited)",
425 | );
426 | INFOPLIST_FILE = "APRoundedMenuTests/APRoundedMenuTests-Info.plist";
427 | PRODUCT_NAME = "$(TARGET_NAME)";
428 | TEST_HOST = "$(BUNDLE_LOADER)";
429 | WRAPPER_EXTENSION = xctest;
430 | };
431 | name = Debug;
432 | };
433 | 59E5626F18EC0FAD00CEDC86 /* Release */ = {
434 | isa = XCBuildConfiguration;
435 | buildSettings = {
436 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/APRoundedMenu.app/APRoundedMenu";
437 | FRAMEWORK_SEARCH_PATHS = (
438 | "$(SDKROOT)/Developer/Library/Frameworks",
439 | "$(inherited)",
440 | "$(DEVELOPER_FRAMEWORKS_DIR)",
441 | );
442 | GCC_PRECOMPILE_PREFIX_HEADER = YES;
443 | GCC_PREFIX_HEADER = "APRoundedMenu/APRoundedMenu-Prefix.pch";
444 | INFOPLIST_FILE = "APRoundedMenuTests/APRoundedMenuTests-Info.plist";
445 | PRODUCT_NAME = "$(TARGET_NAME)";
446 | TEST_HOST = "$(BUNDLE_LOADER)";
447 | WRAPPER_EXTENSION = xctest;
448 | };
449 | name = Release;
450 | };
451 | /* End XCBuildConfiguration section */
452 |
453 | /* Begin XCConfigurationList section */
454 | 59E5623318EC0FAD00CEDC86 /* Build configuration list for PBXProject "APRoundedMenu" */ = {
455 | isa = XCConfigurationList;
456 | buildConfigurations = (
457 | 59E5626818EC0FAD00CEDC86 /* Debug */,
458 | 59E5626918EC0FAD00CEDC86 /* Release */,
459 | );
460 | defaultConfigurationIsVisible = 0;
461 | defaultConfigurationName = Release;
462 | };
463 | 59E5626A18EC0FAD00CEDC86 /* Build configuration list for PBXNativeTarget "APRoundedMenu" */ = {
464 | isa = XCConfigurationList;
465 | buildConfigurations = (
466 | 59E5626B18EC0FAD00CEDC86 /* Debug */,
467 | 59E5626C18EC0FAD00CEDC86 /* Release */,
468 | );
469 | defaultConfigurationIsVisible = 0;
470 | defaultConfigurationName = Release;
471 | };
472 | 59E5626D18EC0FAD00CEDC86 /* Build configuration list for PBXNativeTarget "APRoundedMenuTests" */ = {
473 | isa = XCConfigurationList;
474 | buildConfigurations = (
475 | 59E5626E18EC0FAD00CEDC86 /* Debug */,
476 | 59E5626F18EC0FAD00CEDC86 /* Release */,
477 | );
478 | defaultConfigurationIsVisible = 0;
479 | defaultConfigurationName = Release;
480 | };
481 | /* End XCConfigurationList section */
482 | };
483 | rootObject = 59E5623018EC0FAD00CEDC86 /* Project object */;
484 | }
485 |
--------------------------------------------------------------------------------
/APRoundedMenu/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
41 |
62 |
80 |
98 |
117 |
136 |
156 |
176 |
195 |
214 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
247 |
248 |
249 |
250 |
251 |
--------------------------------------------------------------------------------