├── README.md
├── JXButtonDemo
├── Assets.xcassets
│ ├── Contents.json
│ ├── cat.imageset
│ │ ├── cat.png
│ │ └── Contents.json
│ ├── dog.imageset
│ │ ├── dog.png
│ │ └── Contents.json
│ └── AppIcon.appiconset
│ │ └── Contents.json
├── JXButton.h
├── ViewController.h
├── AppDelegate.h
├── main.m
├── ViewController.m
├── JXButton.m
├── Info.plist
├── Base.lproj
│ ├── LaunchScreen.storyboard
│ └── Main.storyboard
└── AppDelegate.m
├── JXButtonDemo.xcodeproj
├── project.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcuserdata
│ │ └── pconline.xcuserdatad
│ │ └── UserInterfaceState.xcuserstate
├── xcuserdata
│ └── pconline.xcuserdatad
│ │ └── xcschemes
│ │ ├── xcschememanagement.plist
│ │ └── JXButtonDemo.xcscheme
└── project.pbxproj
├── JXButtonDemoTests
├── Info.plist
└── JXButtonDemoTests.m
└── JXButtonDemoUITests
├── Info.plist
└── JXButtonDemoUITests.m
/README.md:
--------------------------------------------------------------------------------
1 | # JXButton(文字在下图片在上)
2 |
3 | JXButton,继承自UIButton,将UIButton替换为JXButton就是文字在下图片在上,支持代码和xib方式
4 |
--------------------------------------------------------------------------------
/JXButtonDemo/Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
--------------------------------------------------------------------------------
/JXButtonDemo/Assets.xcassets/cat.imageset/cat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dolacmeng/JXButton/HEAD/JXButtonDemo/Assets.xcassets/cat.imageset/cat.png
--------------------------------------------------------------------------------
/JXButtonDemo/Assets.xcassets/dog.imageset/dog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dolacmeng/JXButton/HEAD/JXButtonDemo/Assets.xcassets/dog.imageset/dog.png
--------------------------------------------------------------------------------
/JXButtonDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/JXButtonDemo.xcodeproj/project.xcworkspace/xcuserdata/pconline.xcuserdatad/UserInterfaceState.xcuserstate:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dolacmeng/JXButton/HEAD/JXButtonDemo.xcodeproj/project.xcworkspace/xcuserdata/pconline.xcuserdatad/UserInterfaceState.xcuserstate
--------------------------------------------------------------------------------
/JXButtonDemo/JXButton.h:
--------------------------------------------------------------------------------
1 | //
2 | // JXButton.h
3 | // JXButtonDemo
4 | //
5 | // Created by pconline on 2016/11/28.
6 | // Copyright © 2016年 pconline. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface JXButton : UIButton
12 |
13 | @end
14 |
--------------------------------------------------------------------------------
/JXButtonDemo/ViewController.h:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.h
3 | // JXButtonDemo
4 | //
5 | // Created by pconline on 2016/11/28.
6 | // Copyright © 2016年 pconline. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface ViewController : UIViewController
12 |
13 |
14 | @end
15 |
16 |
--------------------------------------------------------------------------------
/JXButtonDemo/AppDelegate.h:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.h
3 | // JXButtonDemo
4 | //
5 | // Created by pconline on 2016/11/28.
6 | // Copyright © 2016年 pconline. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface AppDelegate : UIResponder
12 |
13 | @property (strong, nonatomic) UIWindow *window;
14 |
15 |
16 | @end
17 |
18 |
--------------------------------------------------------------------------------
/JXButtonDemo/main.m:
--------------------------------------------------------------------------------
1 | //
2 | // main.m
3 | // JXButtonDemo
4 | //
5 | // Created by pconline on 2016/11/28.
6 | // Copyright © 2016年 pconline. All rights reserved.
7 | //
8 |
9 | #import
10 | #import "AppDelegate.h"
11 |
12 | int main(int argc, char * argv[]) {
13 | @autoreleasepool {
14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/JXButtonDemo/Assets.xcassets/cat.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "scale" : "1x"
6 | },
7 | {
8 | "idiom" : "universal",
9 | "filename" : "cat.png",
10 | "scale" : "2x"
11 | },
12 | {
13 | "idiom" : "universal",
14 | "scale" : "3x"
15 | }
16 | ],
17 | "info" : {
18 | "version" : 1,
19 | "author" : "xcode"
20 | }
21 | }
--------------------------------------------------------------------------------
/JXButtonDemo/Assets.xcassets/dog.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "scale" : "1x"
6 | },
7 | {
8 | "idiom" : "universal",
9 | "filename" : "dog.png",
10 | "scale" : "2x"
11 | },
12 | {
13 | "idiom" : "universal",
14 | "scale" : "3x"
15 | }
16 | ],
17 | "info" : {
18 | "version" : 1,
19 | "author" : "xcode"
20 | }
21 | }
--------------------------------------------------------------------------------
/JXButtonDemoTests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleVersion
20 | 1
21 |
22 |
23 |
--------------------------------------------------------------------------------
/JXButtonDemoUITests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleVersion
20 | 1
21 |
22 |
23 |
--------------------------------------------------------------------------------
/JXButtonDemo.xcodeproj/xcuserdata/pconline.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SchemeUserState
6 |
7 | JXButtonDemo.xcscheme
8 |
9 | orderHint
10 | 0
11 |
12 |
13 | SuppressBuildableAutocreation
14 |
15 | 32CC922E1DEBD6AD002F10A2
16 |
17 | primary
18 |
19 |
20 | 32CC92471DEBD6AD002F10A2
21 |
22 | primary
23 |
24 |
25 | 32CC92521DEBD6AD002F10A2
26 |
27 | primary
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/JXButtonDemo/ViewController.m:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.m
3 | // JXButtonDemo
4 | //
5 | // Created by pconline on 2016/11/28.
6 | // Copyright © 2016年 pconline. All rights reserved.
7 | //
8 |
9 | #import "ViewController.h"
10 | #import "JXButton.h"
11 |
12 | @interface ViewController ()
13 |
14 | @end
15 |
16 | @implementation ViewController
17 |
18 | - (void)viewDidLoad {
19 | [super viewDidLoad];
20 |
21 | //1、从代码创建
22 | JXButton *dogButton = [[JXButton alloc] initWithFrame:CGRectMake(20, 100, 80, 80)];
23 | [dogButton setTitle:@"Oh,Dog!" forState:0];
24 | [dogButton setTitleColor:[UIColor blackColor] forState:0];
25 | [dogButton setImage:[UIImage imageNamed:@"dog"] forState:0];
26 | [self.view addSubview:dogButton];
27 |
28 | //2、从storyboard创建,请参看storyboard
29 |
30 | }
31 |
32 |
33 | - (void)didReceiveMemoryWarning {
34 | [super didReceiveMemoryWarning];
35 | // Dispose of any resources that can be recreated.
36 | }
37 |
38 |
39 | @end
40 |
--------------------------------------------------------------------------------
/JXButtonDemoTests/JXButtonDemoTests.m:
--------------------------------------------------------------------------------
1 | //
2 | // JXButtonDemoTests.m
3 | // JXButtonDemoTests
4 | //
5 | // Created by pconline on 2016/11/28.
6 | // Copyright © 2016年 pconline. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface JXButtonDemoTests : XCTestCase
12 |
13 | @end
14 |
15 | @implementation JXButtonDemoTests
16 |
17 | - (void)setUp {
18 | [super setUp];
19 | // Put setup code here. This method is called before the invocation of each test method in the class.
20 | }
21 |
22 | - (void)tearDown {
23 | // Put teardown code here. This method is called after the invocation of each test method in the class.
24 | [super tearDown];
25 | }
26 |
27 | - (void)testExample {
28 | // This is an example of a functional test case.
29 | // Use XCTAssert and related functions to verify your tests produce the correct results.
30 | }
31 |
32 | - (void)testPerformanceExample {
33 | // This is an example of a performance test case.
34 | [self measureBlock:^{
35 | // Put the code you want to measure the time of here.
36 | }];
37 | }
38 |
39 | @end
40 |
--------------------------------------------------------------------------------
/JXButtonDemo/JXButton.m:
--------------------------------------------------------------------------------
1 | //
2 | // JXButton.m
3 | // JXButtonDemo
4 | //
5 | // Created by pconline on 2016/11/28.
6 | // Copyright © 2016年 pconline. All rights reserved.
7 | //
8 |
9 | #import "JXButton.h"
10 |
11 | @implementation JXButton
12 |
13 | -(id)initWithCoder:(NSCoder *)aDecoder{
14 | if (self=[super initWithCoder:aDecoder]) {
15 | [self commonInit];
16 | }
17 | return self;
18 | }
19 |
20 | -(id)initWithFrame:(CGRect)frame{
21 | if (self=[super initWithFrame:frame]) {
22 | [self commonInit];
23 | }
24 | return self;
25 | }
26 |
27 | -(void)commonInit{
28 | self.titleLabel.textAlignment = NSTextAlignmentCenter;
29 | self.imageView.contentMode = UIViewContentModeScaleAspectFit;
30 | self.titleLabel.font = [UIFont systemFontOfSize:14];
31 | }
32 |
33 | -(CGRect)titleRectForContentRect:(CGRect)contentRect{
34 | CGFloat titleX = 0;
35 | CGFloat titleY = contentRect.size.height *0.75;
36 | CGFloat titleW = contentRect.size.width;
37 | CGFloat titleH = contentRect.size.height - titleY;
38 | return CGRectMake(titleX, titleY, titleW, titleH);
39 | }
40 |
41 | -(CGRect)imageRectForContentRect:(CGRect)contentRect{
42 | CGFloat imageW = CGRectGetWidth(contentRect);
43 | CGFloat imageH = contentRect.size.height * 0.7;
44 | return CGRectMake(0, 0, imageW, imageH);
45 | }
46 |
47 | @end
48 |
--------------------------------------------------------------------------------
/JXButtonDemoUITests/JXButtonDemoUITests.m:
--------------------------------------------------------------------------------
1 | //
2 | // JXButtonDemoUITests.m
3 | // JXButtonDemoUITests
4 | //
5 | // Created by pconline on 2016/11/28.
6 | // Copyright © 2016年 pconline. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | @interface JXButtonDemoUITests : XCTestCase
12 |
13 | @end
14 |
15 | @implementation JXButtonDemoUITests
16 |
17 | - (void)setUp {
18 | [super setUp];
19 |
20 | // Put setup code here. This method is called before the invocation of each test method in the class.
21 |
22 | // In UI tests it is usually best to stop immediately when a failure occurs.
23 | self.continueAfterFailure = NO;
24 | // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method.
25 | [[[XCUIApplication alloc] init] launch];
26 |
27 | // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this.
28 | }
29 |
30 | - (void)tearDown {
31 | // Put teardown code here. This method is called after the invocation of each test method in the class.
32 | [super tearDown];
33 | }
34 |
35 | - (void)testExample {
36 | // Use recording to get started writing UI tests.
37 | // Use XCTAssert and related functions to verify your tests produce the correct results.
38 | }
39 |
40 | @end
41 |
--------------------------------------------------------------------------------
/JXButtonDemo/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | APPL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleVersion
20 | 1
21 | LSRequiresIPhoneOS
22 |
23 | UILaunchStoryboardName
24 | LaunchScreen
25 | UIMainStoryboardFile
26 | Main
27 | UIRequiredDeviceCapabilities
28 |
29 | armv7
30 |
31 | UISupportedInterfaceOrientations
32 |
33 | UIInterfaceOrientationPortrait
34 | UIInterfaceOrientationLandscapeLeft
35 | UIInterfaceOrientationLandscapeRight
36 |
37 | UISupportedInterfaceOrientations~ipad
38 |
39 | UIInterfaceOrientationPortrait
40 | UIInterfaceOrientationPortraitUpsideDown
41 | UIInterfaceOrientationLandscapeLeft
42 | UIInterfaceOrientationLandscapeRight
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/JXButtonDemo/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/JXButtonDemo/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "size" : "20x20",
6 | "scale" : "2x"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "size" : "20x20",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "29x29",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "29x29",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "40x40",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "40x40",
31 | "scale" : "3x"
32 | },
33 | {
34 | "idiom" : "iphone",
35 | "size" : "60x60",
36 | "scale" : "2x"
37 | },
38 | {
39 | "idiom" : "iphone",
40 | "size" : "60x60",
41 | "scale" : "3x"
42 | },
43 | {
44 | "idiom" : "ipad",
45 | "size" : "20x20",
46 | "scale" : "1x"
47 | },
48 | {
49 | "idiom" : "ipad",
50 | "size" : "20x20",
51 | "scale" : "2x"
52 | },
53 | {
54 | "idiom" : "ipad",
55 | "size" : "29x29",
56 | "scale" : "1x"
57 | },
58 | {
59 | "idiom" : "ipad",
60 | "size" : "29x29",
61 | "scale" : "2x"
62 | },
63 | {
64 | "idiom" : "ipad",
65 | "size" : "40x40",
66 | "scale" : "1x"
67 | },
68 | {
69 | "idiom" : "ipad",
70 | "size" : "40x40",
71 | "scale" : "2x"
72 | },
73 | {
74 | "idiom" : "ipad",
75 | "size" : "76x76",
76 | "scale" : "1x"
77 | },
78 | {
79 | "idiom" : "ipad",
80 | "size" : "76x76",
81 | "scale" : "2x"
82 | },
83 | {
84 | "idiom" : "ipad",
85 | "size" : "83.5x83.5",
86 | "scale" : "2x"
87 | }
88 | ],
89 | "info" : {
90 | "version" : 1,
91 | "author" : "xcode"
92 | }
93 | }
--------------------------------------------------------------------------------
/JXButtonDemo/AppDelegate.m:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.m
3 | // JXButtonDemo
4 | //
5 | // Created by pconline on 2016/11/28.
6 | // Copyright © 2016年 pconline. All rights reserved.
7 | //
8 |
9 | #import "AppDelegate.h"
10 |
11 | @interface AppDelegate ()
12 |
13 | @end
14 |
15 | @implementation AppDelegate
16 |
17 |
18 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
19 | // Override point for customization after application launch.
20 | return YES;
21 | }
22 |
23 |
24 | - (void)applicationWillResignActive:(UIApplication *)application {
25 | // 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.
26 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
27 | }
28 |
29 |
30 | - (void)applicationDidEnterBackground:(UIApplication *)application {
31 | // 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.
32 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
33 | }
34 |
35 |
36 | - (void)applicationWillEnterForeground:(UIApplication *)application {
37 | // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
38 | }
39 |
40 |
41 | - (void)applicationDidBecomeActive:(UIApplication *)application {
42 | // 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.
43 | }
44 |
45 |
46 | - (void)applicationWillTerminate:(UIApplication *)application {
47 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
48 | }
49 |
50 |
51 | @end
52 |
--------------------------------------------------------------------------------
/JXButtonDemo/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/JXButtonDemo.xcodeproj/xcuserdata/pconline.xcuserdatad/xcschemes/JXButtonDemo.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
43 |
49 |
50 |
51 |
52 |
53 |
59 |
60 |
61 |
62 |
63 |
64 |
74 |
76 |
82 |
83 |
84 |
85 |
86 |
87 |
93 |
95 |
101 |
102 |
103 |
104 |
106 |
107 |
110 |
111 |
112 |
--------------------------------------------------------------------------------
/JXButtonDemo.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 32CC92341DEBD6AD002F10A2 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CC92331DEBD6AD002F10A2 /* main.m */; };
11 | 32CC92371DEBD6AD002F10A2 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CC92361DEBD6AD002F10A2 /* AppDelegate.m */; };
12 | 32CC923A1DEBD6AD002F10A2 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CC92391DEBD6AD002F10A2 /* ViewController.m */; };
13 | 32CC923D1DEBD6AD002F10A2 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 32CC923B1DEBD6AD002F10A2 /* Main.storyboard */; };
14 | 32CC923F1DEBD6AD002F10A2 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 32CC923E1DEBD6AD002F10A2 /* Assets.xcassets */; };
15 | 32CC92421DEBD6AD002F10A2 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 32CC92401DEBD6AD002F10A2 /* LaunchScreen.storyboard */; };
16 | 32CC924D1DEBD6AD002F10A2 /* JXButtonDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CC924C1DEBD6AD002F10A2 /* JXButtonDemoTests.m */; };
17 | 32CC92581DEBD6AD002F10A2 /* JXButtonDemoUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CC92571DEBD6AD002F10A2 /* JXButtonDemoUITests.m */; };
18 | 32CC92681DEBD6F9002F10A2 /* JXButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 32CC92671DEBD6F9002F10A2 /* JXButton.m */; };
19 | /* End PBXBuildFile section */
20 |
21 | /* Begin PBXContainerItemProxy section */
22 | 32CC92491DEBD6AD002F10A2 /* PBXContainerItemProxy */ = {
23 | isa = PBXContainerItemProxy;
24 | containerPortal = 32CC92271DEBD6AD002F10A2 /* Project object */;
25 | proxyType = 1;
26 | remoteGlobalIDString = 32CC922E1DEBD6AD002F10A2;
27 | remoteInfo = JXButtonDemo;
28 | };
29 | 32CC92541DEBD6AD002F10A2 /* PBXContainerItemProxy */ = {
30 | isa = PBXContainerItemProxy;
31 | containerPortal = 32CC92271DEBD6AD002F10A2 /* Project object */;
32 | proxyType = 1;
33 | remoteGlobalIDString = 32CC922E1DEBD6AD002F10A2;
34 | remoteInfo = JXButtonDemo;
35 | };
36 | /* End PBXContainerItemProxy section */
37 |
38 | /* Begin PBXFileReference section */
39 | 32CC922F1DEBD6AD002F10A2 /* JXButtonDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = JXButtonDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };
40 | 32CC92331DEBD6AD002F10A2 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; };
41 | 32CC92351DEBD6AD002F10A2 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; };
42 | 32CC92361DEBD6AD002F10A2 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; };
43 | 32CC92381DEBD6AD002F10A2 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; };
44 | 32CC92391DEBD6AD002F10A2 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; };
45 | 32CC923C1DEBD6AD002F10A2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
46 | 32CC923E1DEBD6AD002F10A2 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
47 | 32CC92411DEBD6AD002F10A2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
48 | 32CC92431DEBD6AD002F10A2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
49 | 32CC92481DEBD6AD002F10A2 /* JXButtonDemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = JXButtonDemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
50 | 32CC924C1DEBD6AD002F10A2 /* JXButtonDemoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JXButtonDemoTests.m; sourceTree = ""; };
51 | 32CC924E1DEBD6AD002F10A2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
52 | 32CC92531DEBD6AD002F10A2 /* JXButtonDemoUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = JXButtonDemoUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
53 | 32CC92571DEBD6AD002F10A2 /* JXButtonDemoUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JXButtonDemoUITests.m; sourceTree = ""; };
54 | 32CC92591DEBD6AD002F10A2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
55 | 32CC92661DEBD6F9002F10A2 /* JXButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXButton.h; sourceTree = ""; };
56 | 32CC92671DEBD6F9002F10A2 /* JXButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXButton.m; sourceTree = ""; };
57 | /* End PBXFileReference section */
58 |
59 | /* Begin PBXFrameworksBuildPhase section */
60 | 32CC922C1DEBD6AD002F10A2 /* Frameworks */ = {
61 | isa = PBXFrameworksBuildPhase;
62 | buildActionMask = 2147483647;
63 | files = (
64 | );
65 | runOnlyForDeploymentPostprocessing = 0;
66 | };
67 | 32CC92451DEBD6AD002F10A2 /* Frameworks */ = {
68 | isa = PBXFrameworksBuildPhase;
69 | buildActionMask = 2147483647;
70 | files = (
71 | );
72 | runOnlyForDeploymentPostprocessing = 0;
73 | };
74 | 32CC92501DEBD6AD002F10A2 /* Frameworks */ = {
75 | isa = PBXFrameworksBuildPhase;
76 | buildActionMask = 2147483647;
77 | files = (
78 | );
79 | runOnlyForDeploymentPostprocessing = 0;
80 | };
81 | /* End PBXFrameworksBuildPhase section */
82 |
83 | /* Begin PBXGroup section */
84 | 32CC92261DEBD6AD002F10A2 = {
85 | isa = PBXGroup;
86 | children = (
87 | 32CC92311DEBD6AD002F10A2 /* JXButtonDemo */,
88 | 32CC924B1DEBD6AD002F10A2 /* JXButtonDemoTests */,
89 | 32CC92561DEBD6AD002F10A2 /* JXButtonDemoUITests */,
90 | 32CC92301DEBD6AD002F10A2 /* Products */,
91 | );
92 | sourceTree = "";
93 | };
94 | 32CC92301DEBD6AD002F10A2 /* Products */ = {
95 | isa = PBXGroup;
96 | children = (
97 | 32CC922F1DEBD6AD002F10A2 /* JXButtonDemo.app */,
98 | 32CC92481DEBD6AD002F10A2 /* JXButtonDemoTests.xctest */,
99 | 32CC92531DEBD6AD002F10A2 /* JXButtonDemoUITests.xctest */,
100 | );
101 | name = Products;
102 | sourceTree = "";
103 | };
104 | 32CC92311DEBD6AD002F10A2 /* JXButtonDemo */ = {
105 | isa = PBXGroup;
106 | children = (
107 | 32CC92651DEBD6B5002F10A2 /* JXButton */,
108 | 32CC92351DEBD6AD002F10A2 /* AppDelegate.h */,
109 | 32CC92361DEBD6AD002F10A2 /* AppDelegate.m */,
110 | 32CC92381DEBD6AD002F10A2 /* ViewController.h */,
111 | 32CC92391DEBD6AD002F10A2 /* ViewController.m */,
112 | 32CC923B1DEBD6AD002F10A2 /* Main.storyboard */,
113 | 32CC923E1DEBD6AD002F10A2 /* Assets.xcassets */,
114 | 32CC92401DEBD6AD002F10A2 /* LaunchScreen.storyboard */,
115 | 32CC92431DEBD6AD002F10A2 /* Info.plist */,
116 | 32CC92321DEBD6AD002F10A2 /* Supporting Files */,
117 | );
118 | path = JXButtonDemo;
119 | sourceTree = "";
120 | };
121 | 32CC92321DEBD6AD002F10A2 /* Supporting Files */ = {
122 | isa = PBXGroup;
123 | children = (
124 | 32CC92331DEBD6AD002F10A2 /* main.m */,
125 | );
126 | name = "Supporting Files";
127 | sourceTree = "";
128 | };
129 | 32CC924B1DEBD6AD002F10A2 /* JXButtonDemoTests */ = {
130 | isa = PBXGroup;
131 | children = (
132 | 32CC924C1DEBD6AD002F10A2 /* JXButtonDemoTests.m */,
133 | 32CC924E1DEBD6AD002F10A2 /* Info.plist */,
134 | );
135 | path = JXButtonDemoTests;
136 | sourceTree = "";
137 | };
138 | 32CC92561DEBD6AD002F10A2 /* JXButtonDemoUITests */ = {
139 | isa = PBXGroup;
140 | children = (
141 | 32CC92571DEBD6AD002F10A2 /* JXButtonDemoUITests.m */,
142 | 32CC92591DEBD6AD002F10A2 /* Info.plist */,
143 | );
144 | path = JXButtonDemoUITests;
145 | sourceTree = "";
146 | };
147 | 32CC92651DEBD6B5002F10A2 /* JXButton */ = {
148 | isa = PBXGroup;
149 | children = (
150 | 32CC92661DEBD6F9002F10A2 /* JXButton.h */,
151 | 32CC92671DEBD6F9002F10A2 /* JXButton.m */,
152 | );
153 | name = JXButton;
154 | sourceTree = "";
155 | };
156 | /* End PBXGroup section */
157 |
158 | /* Begin PBXNativeTarget section */
159 | 32CC922E1DEBD6AD002F10A2 /* JXButtonDemo */ = {
160 | isa = PBXNativeTarget;
161 | buildConfigurationList = 32CC925C1DEBD6AD002F10A2 /* Build configuration list for PBXNativeTarget "JXButtonDemo" */;
162 | buildPhases = (
163 | 32CC922B1DEBD6AD002F10A2 /* Sources */,
164 | 32CC922C1DEBD6AD002F10A2 /* Frameworks */,
165 | 32CC922D1DEBD6AD002F10A2 /* Resources */,
166 | );
167 | buildRules = (
168 | );
169 | dependencies = (
170 | );
171 | name = JXButtonDemo;
172 | productName = JXButtonDemo;
173 | productReference = 32CC922F1DEBD6AD002F10A2 /* JXButtonDemo.app */;
174 | productType = "com.apple.product-type.application";
175 | };
176 | 32CC92471DEBD6AD002F10A2 /* JXButtonDemoTests */ = {
177 | isa = PBXNativeTarget;
178 | buildConfigurationList = 32CC925F1DEBD6AD002F10A2 /* Build configuration list for PBXNativeTarget "JXButtonDemoTests" */;
179 | buildPhases = (
180 | 32CC92441DEBD6AD002F10A2 /* Sources */,
181 | 32CC92451DEBD6AD002F10A2 /* Frameworks */,
182 | 32CC92461DEBD6AD002F10A2 /* Resources */,
183 | );
184 | buildRules = (
185 | );
186 | dependencies = (
187 | 32CC924A1DEBD6AD002F10A2 /* PBXTargetDependency */,
188 | );
189 | name = JXButtonDemoTests;
190 | productName = JXButtonDemoTests;
191 | productReference = 32CC92481DEBD6AD002F10A2 /* JXButtonDemoTests.xctest */;
192 | productType = "com.apple.product-type.bundle.unit-test";
193 | };
194 | 32CC92521DEBD6AD002F10A2 /* JXButtonDemoUITests */ = {
195 | isa = PBXNativeTarget;
196 | buildConfigurationList = 32CC92621DEBD6AD002F10A2 /* Build configuration list for PBXNativeTarget "JXButtonDemoUITests" */;
197 | buildPhases = (
198 | 32CC924F1DEBD6AD002F10A2 /* Sources */,
199 | 32CC92501DEBD6AD002F10A2 /* Frameworks */,
200 | 32CC92511DEBD6AD002F10A2 /* Resources */,
201 | );
202 | buildRules = (
203 | );
204 | dependencies = (
205 | 32CC92551DEBD6AD002F10A2 /* PBXTargetDependency */,
206 | );
207 | name = JXButtonDemoUITests;
208 | productName = JXButtonDemoUITests;
209 | productReference = 32CC92531DEBD6AD002F10A2 /* JXButtonDemoUITests.xctest */;
210 | productType = "com.apple.product-type.bundle.ui-testing";
211 | };
212 | /* End PBXNativeTarget section */
213 |
214 | /* Begin PBXProject section */
215 | 32CC92271DEBD6AD002F10A2 /* Project object */ = {
216 | isa = PBXProject;
217 | attributes = {
218 | LastUpgradeCheck = 0810;
219 | ORGANIZATIONNAME = pconline;
220 | TargetAttributes = {
221 | 32CC922E1DEBD6AD002F10A2 = {
222 | CreatedOnToolsVersion = 8.1;
223 | DevelopmentTeam = EYK6J4JA87;
224 | ProvisioningStyle = Automatic;
225 | };
226 | 32CC92471DEBD6AD002F10A2 = {
227 | CreatedOnToolsVersion = 8.1;
228 | DevelopmentTeam = EYK6J4JA87;
229 | ProvisioningStyle = Automatic;
230 | TestTargetID = 32CC922E1DEBD6AD002F10A2;
231 | };
232 | 32CC92521DEBD6AD002F10A2 = {
233 | CreatedOnToolsVersion = 8.1;
234 | DevelopmentTeam = EYK6J4JA87;
235 | ProvisioningStyle = Automatic;
236 | TestTargetID = 32CC922E1DEBD6AD002F10A2;
237 | };
238 | };
239 | };
240 | buildConfigurationList = 32CC922A1DEBD6AD002F10A2 /* Build configuration list for PBXProject "JXButtonDemo" */;
241 | compatibilityVersion = "Xcode 3.2";
242 | developmentRegion = English;
243 | hasScannedForEncodings = 0;
244 | knownRegions = (
245 | en,
246 | Base,
247 | );
248 | mainGroup = 32CC92261DEBD6AD002F10A2;
249 | productRefGroup = 32CC92301DEBD6AD002F10A2 /* Products */;
250 | projectDirPath = "";
251 | projectRoot = "";
252 | targets = (
253 | 32CC922E1DEBD6AD002F10A2 /* JXButtonDemo */,
254 | 32CC92471DEBD6AD002F10A2 /* JXButtonDemoTests */,
255 | 32CC92521DEBD6AD002F10A2 /* JXButtonDemoUITests */,
256 | );
257 | };
258 | /* End PBXProject section */
259 |
260 | /* Begin PBXResourcesBuildPhase section */
261 | 32CC922D1DEBD6AD002F10A2 /* Resources */ = {
262 | isa = PBXResourcesBuildPhase;
263 | buildActionMask = 2147483647;
264 | files = (
265 | 32CC92421DEBD6AD002F10A2 /* LaunchScreen.storyboard in Resources */,
266 | 32CC923F1DEBD6AD002F10A2 /* Assets.xcassets in Resources */,
267 | 32CC923D1DEBD6AD002F10A2 /* Main.storyboard in Resources */,
268 | );
269 | runOnlyForDeploymentPostprocessing = 0;
270 | };
271 | 32CC92461DEBD6AD002F10A2 /* Resources */ = {
272 | isa = PBXResourcesBuildPhase;
273 | buildActionMask = 2147483647;
274 | files = (
275 | );
276 | runOnlyForDeploymentPostprocessing = 0;
277 | };
278 | 32CC92511DEBD6AD002F10A2 /* Resources */ = {
279 | isa = PBXResourcesBuildPhase;
280 | buildActionMask = 2147483647;
281 | files = (
282 | );
283 | runOnlyForDeploymentPostprocessing = 0;
284 | };
285 | /* End PBXResourcesBuildPhase section */
286 |
287 | /* Begin PBXSourcesBuildPhase section */
288 | 32CC922B1DEBD6AD002F10A2 /* Sources */ = {
289 | isa = PBXSourcesBuildPhase;
290 | buildActionMask = 2147483647;
291 | files = (
292 | 32CC923A1DEBD6AD002F10A2 /* ViewController.m in Sources */,
293 | 32CC92371DEBD6AD002F10A2 /* AppDelegate.m in Sources */,
294 | 32CC92341DEBD6AD002F10A2 /* main.m in Sources */,
295 | 32CC92681DEBD6F9002F10A2 /* JXButton.m in Sources */,
296 | );
297 | runOnlyForDeploymentPostprocessing = 0;
298 | };
299 | 32CC92441DEBD6AD002F10A2 /* Sources */ = {
300 | isa = PBXSourcesBuildPhase;
301 | buildActionMask = 2147483647;
302 | files = (
303 | 32CC924D1DEBD6AD002F10A2 /* JXButtonDemoTests.m in Sources */,
304 | );
305 | runOnlyForDeploymentPostprocessing = 0;
306 | };
307 | 32CC924F1DEBD6AD002F10A2 /* Sources */ = {
308 | isa = PBXSourcesBuildPhase;
309 | buildActionMask = 2147483647;
310 | files = (
311 | 32CC92581DEBD6AD002F10A2 /* JXButtonDemoUITests.m in Sources */,
312 | );
313 | runOnlyForDeploymentPostprocessing = 0;
314 | };
315 | /* End PBXSourcesBuildPhase section */
316 |
317 | /* Begin PBXTargetDependency section */
318 | 32CC924A1DEBD6AD002F10A2 /* PBXTargetDependency */ = {
319 | isa = PBXTargetDependency;
320 | target = 32CC922E1DEBD6AD002F10A2 /* JXButtonDemo */;
321 | targetProxy = 32CC92491DEBD6AD002F10A2 /* PBXContainerItemProxy */;
322 | };
323 | 32CC92551DEBD6AD002F10A2 /* PBXTargetDependency */ = {
324 | isa = PBXTargetDependency;
325 | target = 32CC922E1DEBD6AD002F10A2 /* JXButtonDemo */;
326 | targetProxy = 32CC92541DEBD6AD002F10A2 /* PBXContainerItemProxy */;
327 | };
328 | /* End PBXTargetDependency section */
329 |
330 | /* Begin PBXVariantGroup section */
331 | 32CC923B1DEBD6AD002F10A2 /* Main.storyboard */ = {
332 | isa = PBXVariantGroup;
333 | children = (
334 | 32CC923C1DEBD6AD002F10A2 /* Base */,
335 | );
336 | name = Main.storyboard;
337 | sourceTree = "";
338 | };
339 | 32CC92401DEBD6AD002F10A2 /* LaunchScreen.storyboard */ = {
340 | isa = PBXVariantGroup;
341 | children = (
342 | 32CC92411DEBD6AD002F10A2 /* Base */,
343 | );
344 | name = LaunchScreen.storyboard;
345 | sourceTree = "";
346 | };
347 | /* End PBXVariantGroup section */
348 |
349 | /* Begin XCBuildConfiguration section */
350 | 32CC925A1DEBD6AD002F10A2 /* Debug */ = {
351 | isa = XCBuildConfiguration;
352 | buildSettings = {
353 | ALWAYS_SEARCH_USER_PATHS = NO;
354 | CLANG_ANALYZER_NONNULL = YES;
355 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
356 | CLANG_CXX_LIBRARY = "libc++";
357 | CLANG_ENABLE_MODULES = YES;
358 | CLANG_ENABLE_OBJC_ARC = YES;
359 | CLANG_WARN_BOOL_CONVERSION = YES;
360 | CLANG_WARN_CONSTANT_CONVERSION = YES;
361 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
362 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
363 | CLANG_WARN_EMPTY_BODY = YES;
364 | CLANG_WARN_ENUM_CONVERSION = YES;
365 | CLANG_WARN_INFINITE_RECURSION = YES;
366 | CLANG_WARN_INT_CONVERSION = YES;
367 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
368 | CLANG_WARN_SUSPICIOUS_MOVES = YES;
369 | CLANG_WARN_UNREACHABLE_CODE = YES;
370 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
371 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
372 | COPY_PHASE_STRIP = NO;
373 | DEBUG_INFORMATION_FORMAT = dwarf;
374 | ENABLE_STRICT_OBJC_MSGSEND = YES;
375 | ENABLE_TESTABILITY = YES;
376 | GCC_C_LANGUAGE_STANDARD = gnu99;
377 | GCC_DYNAMIC_NO_PIC = NO;
378 | GCC_NO_COMMON_BLOCKS = YES;
379 | GCC_OPTIMIZATION_LEVEL = 0;
380 | GCC_PREPROCESSOR_DEFINITIONS = (
381 | "DEBUG=1",
382 | "$(inherited)",
383 | );
384 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
385 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
386 | GCC_WARN_UNDECLARED_SELECTOR = YES;
387 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
388 | GCC_WARN_UNUSED_FUNCTION = YES;
389 | GCC_WARN_UNUSED_VARIABLE = YES;
390 | IPHONEOS_DEPLOYMENT_TARGET = 10.1;
391 | MTL_ENABLE_DEBUG_INFO = YES;
392 | ONLY_ACTIVE_ARCH = YES;
393 | SDKROOT = iphoneos;
394 | TARGETED_DEVICE_FAMILY = "1,2";
395 | };
396 | name = Debug;
397 | };
398 | 32CC925B1DEBD6AD002F10A2 /* Release */ = {
399 | isa = XCBuildConfiguration;
400 | buildSettings = {
401 | ALWAYS_SEARCH_USER_PATHS = NO;
402 | CLANG_ANALYZER_NONNULL = YES;
403 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
404 | CLANG_CXX_LIBRARY = "libc++";
405 | CLANG_ENABLE_MODULES = YES;
406 | CLANG_ENABLE_OBJC_ARC = YES;
407 | CLANG_WARN_BOOL_CONVERSION = YES;
408 | CLANG_WARN_CONSTANT_CONVERSION = YES;
409 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
410 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
411 | CLANG_WARN_EMPTY_BODY = YES;
412 | CLANG_WARN_ENUM_CONVERSION = YES;
413 | CLANG_WARN_INFINITE_RECURSION = YES;
414 | CLANG_WARN_INT_CONVERSION = YES;
415 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
416 | CLANG_WARN_SUSPICIOUS_MOVES = YES;
417 | CLANG_WARN_UNREACHABLE_CODE = YES;
418 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
419 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
420 | COPY_PHASE_STRIP = NO;
421 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
422 | ENABLE_NS_ASSERTIONS = NO;
423 | ENABLE_STRICT_OBJC_MSGSEND = YES;
424 | GCC_C_LANGUAGE_STANDARD = gnu99;
425 | GCC_NO_COMMON_BLOCKS = YES;
426 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
427 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
428 | GCC_WARN_UNDECLARED_SELECTOR = YES;
429 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
430 | GCC_WARN_UNUSED_FUNCTION = YES;
431 | GCC_WARN_UNUSED_VARIABLE = YES;
432 | IPHONEOS_DEPLOYMENT_TARGET = 10.1;
433 | MTL_ENABLE_DEBUG_INFO = NO;
434 | SDKROOT = iphoneos;
435 | TARGETED_DEVICE_FAMILY = "1,2";
436 | VALIDATE_PRODUCT = YES;
437 | };
438 | name = Release;
439 | };
440 | 32CC925D1DEBD6AD002F10A2 /* Debug */ = {
441 | isa = XCBuildConfiguration;
442 | buildSettings = {
443 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
444 | DEVELOPMENT_TEAM = EYK6J4JA87;
445 | INFOPLIST_FILE = JXButtonDemo/Info.plist;
446 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
447 | PRODUCT_BUNDLE_IDENTIFIER = com.imjack.JXButtonDemo;
448 | PRODUCT_NAME = "$(TARGET_NAME)";
449 | };
450 | name = Debug;
451 | };
452 | 32CC925E1DEBD6AD002F10A2 /* Release */ = {
453 | isa = XCBuildConfiguration;
454 | buildSettings = {
455 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
456 | DEVELOPMENT_TEAM = EYK6J4JA87;
457 | INFOPLIST_FILE = JXButtonDemo/Info.plist;
458 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
459 | PRODUCT_BUNDLE_IDENTIFIER = com.imjack.JXButtonDemo;
460 | PRODUCT_NAME = "$(TARGET_NAME)";
461 | };
462 | name = Release;
463 | };
464 | 32CC92601DEBD6AD002F10A2 /* Debug */ = {
465 | isa = XCBuildConfiguration;
466 | buildSettings = {
467 | BUNDLE_LOADER = "$(TEST_HOST)";
468 | DEVELOPMENT_TEAM = EYK6J4JA87;
469 | INFOPLIST_FILE = JXButtonDemoTests/Info.plist;
470 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
471 | PRODUCT_BUNDLE_IDENTIFIER = com.imjack.JXButtonDemoTests;
472 | PRODUCT_NAME = "$(TARGET_NAME)";
473 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/JXButtonDemo.app/JXButtonDemo";
474 | };
475 | name = Debug;
476 | };
477 | 32CC92611DEBD6AD002F10A2 /* Release */ = {
478 | isa = XCBuildConfiguration;
479 | buildSettings = {
480 | BUNDLE_LOADER = "$(TEST_HOST)";
481 | DEVELOPMENT_TEAM = EYK6J4JA87;
482 | INFOPLIST_FILE = JXButtonDemoTests/Info.plist;
483 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
484 | PRODUCT_BUNDLE_IDENTIFIER = com.imjack.JXButtonDemoTests;
485 | PRODUCT_NAME = "$(TARGET_NAME)";
486 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/JXButtonDemo.app/JXButtonDemo";
487 | };
488 | name = Release;
489 | };
490 | 32CC92631DEBD6AD002F10A2 /* Debug */ = {
491 | isa = XCBuildConfiguration;
492 | buildSettings = {
493 | DEVELOPMENT_TEAM = EYK6J4JA87;
494 | INFOPLIST_FILE = JXButtonDemoUITests/Info.plist;
495 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
496 | PRODUCT_BUNDLE_IDENTIFIER = com.imjack.JXButtonDemoUITests;
497 | PRODUCT_NAME = "$(TARGET_NAME)";
498 | TEST_TARGET_NAME = JXButtonDemo;
499 | };
500 | name = Debug;
501 | };
502 | 32CC92641DEBD6AD002F10A2 /* Release */ = {
503 | isa = XCBuildConfiguration;
504 | buildSettings = {
505 | DEVELOPMENT_TEAM = EYK6J4JA87;
506 | INFOPLIST_FILE = JXButtonDemoUITests/Info.plist;
507 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
508 | PRODUCT_BUNDLE_IDENTIFIER = com.imjack.JXButtonDemoUITests;
509 | PRODUCT_NAME = "$(TARGET_NAME)";
510 | TEST_TARGET_NAME = JXButtonDemo;
511 | };
512 | name = Release;
513 | };
514 | /* End XCBuildConfiguration section */
515 |
516 | /* Begin XCConfigurationList section */
517 | 32CC922A1DEBD6AD002F10A2 /* Build configuration list for PBXProject "JXButtonDemo" */ = {
518 | isa = XCConfigurationList;
519 | buildConfigurations = (
520 | 32CC925A1DEBD6AD002F10A2 /* Debug */,
521 | 32CC925B1DEBD6AD002F10A2 /* Release */,
522 | );
523 | defaultConfigurationIsVisible = 0;
524 | defaultConfigurationName = Release;
525 | };
526 | 32CC925C1DEBD6AD002F10A2 /* Build configuration list for PBXNativeTarget "JXButtonDemo" */ = {
527 | isa = XCConfigurationList;
528 | buildConfigurations = (
529 | 32CC925D1DEBD6AD002F10A2 /* Debug */,
530 | 32CC925E1DEBD6AD002F10A2 /* Release */,
531 | );
532 | defaultConfigurationIsVisible = 0;
533 | };
534 | 32CC925F1DEBD6AD002F10A2 /* Build configuration list for PBXNativeTarget "JXButtonDemoTests" */ = {
535 | isa = XCConfigurationList;
536 | buildConfigurations = (
537 | 32CC92601DEBD6AD002F10A2 /* Debug */,
538 | 32CC92611DEBD6AD002F10A2 /* Release */,
539 | );
540 | defaultConfigurationIsVisible = 0;
541 | };
542 | 32CC92621DEBD6AD002F10A2 /* Build configuration list for PBXNativeTarget "JXButtonDemoUITests" */ = {
543 | isa = XCConfigurationList;
544 | buildConfigurations = (
545 | 32CC92631DEBD6AD002F10A2 /* Debug */,
546 | 32CC92641DEBD6AD002F10A2 /* Release */,
547 | );
548 | defaultConfigurationIsVisible = 0;
549 | };
550 | /* End XCConfigurationList section */
551 | };
552 | rootObject = 32CC92271DEBD6AD002F10A2 /* Project object */;
553 | }
554 |
--------------------------------------------------------------------------------