├── IBDesignable.xcodeproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcuserdata │ └── andrei.xcuserdatad │ │ └── xcschemes │ │ ├── xcschememanagement.plist │ │ ├── IBDesignable.xcscheme │ │ └── IBDesignableTest.xcscheme └── project.pbxproj ├── README.md ├── IBDesignable ├── IBDesignable.h ├── DesignableView.swift └── Info.plist ├── IBDesignableTest ├── ViewController.swift ├── Info.plist ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── AppDelegate.swift └── Base.lproj │ └── Main.storyboard ├── IBDesignableTestTests ├── Info.plist └── IBDesignableTestTests.swift └── IBDesignableTests ├── Info.plist └── IBDesignableTests.swift /IBDesignable.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | IBDesignable-Demo 2 | ================= 3 | 4 | code from http://www.weheartswift.com/make-awesome-ui-components-ios-8-using-swift-xcode-6/ 5 | 6 | ![interesting pattern](http://www.weheartswift.com/wp-content/uploads/2014/06/designable-view-e1402087883455.png) 7 | -------------------------------------------------------------------------------- /IBDesignable/IBDesignable.h: -------------------------------------------------------------------------------- 1 | // 2 | // IBDesignable.h 3 | // IBDesignable 4 | // 5 | // Created by Andrei Puni on 06/06/14. 6 | // Copyright (c) 2014 Andrei Puni. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for IBDesignable. 12 | FOUNDATION_EXPORT double IBDesignableVersionNumber; 13 | 14 | //! Project version string for IBDesignable. 15 | FOUNDATION_EXPORT const unsigned char IBDesignableVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /IBDesignableTest/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // IBDesignableTest 4 | // 5 | // Created by Andrei Puni on 06/06/14. 6 | // Copyright (c) 2014 Andrei Puni. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UIViewController { 12 | 13 | override func viewDidLoad() { 14 | super.viewDidLoad() 15 | // Do any additional setup after loading the view, typically from a nib. 16 | } 17 | 18 | override func didReceiveMemoryWarning() { 19 | super.didReceiveMemoryWarning() 20 | // Dispose of any resources that can be recreated. 21 | } 22 | 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /IBDesignable/DesignableView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DesignableView.swift 3 | // IBDesignable 4 | // 5 | // Created by Andrei Puni on 06/06/14. 6 | // Copyright (c) 2014 Andrei Puni. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @IBDesignable public class DesignableView: UIView { 12 | @IBInspectable var borderColor: UIColor = UIColor.clearColor() { 13 | didSet { 14 | layer.borderColor = borderColor.CGColor 15 | } 16 | } 17 | 18 | @IBInspectable var borderWidth: CGFloat = 0 { 19 | didSet { 20 | layer.borderWidth = borderWidth 21 | } 22 | } 23 | 24 | @IBInspectable var cornerRadius: CGFloat = 0 { 25 | didSet { 26 | layer.cornerRadius = cornerRadius 27 | } 28 | } 29 | 30 | override func awakeFromNib() { 31 | super.awakeFromNib() 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /IBDesignableTestTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | weheartswift.com.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /IBDesignableTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | weheartswift.com.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /IBDesignable/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | weheartswift.com.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /IBDesignableTests/IBDesignableTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // IBDesignableTests.swift 3 | // IBDesignableTests 4 | // 5 | // Created by Andrei Puni on 06/06/14. 6 | // Copyright (c) 2014 Andrei Puni. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | 11 | class IBDesignableTests: XCTestCase { 12 | 13 | override func setUp() { 14 | super.setUp() 15 | // Put setup code here. This method is called before the invocation of each test method in the class. 16 | } 17 | 18 | override func tearDown() { 19 | // Put teardown code here. This method is called after the invocation of each test method in the class. 20 | super.tearDown() 21 | } 22 | 23 | func testExample() { 24 | // This is an example of a functional test case. 25 | XCTAssert(true, "Pass") 26 | } 27 | 28 | func testPerformanceExample() { 29 | // This is an example of a performance test case. 30 | self.measureBlock() { 31 | // Put the code you want to measure the time of here. 32 | } 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /IBDesignableTest/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | weheartswift.com.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UIMainStoryboardFile 26 | Main 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /IBDesignableTestTests/IBDesignableTestTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // IBDesignableTestTests.swift 3 | // IBDesignableTestTests 4 | // 5 | // Created by Andrei Puni on 06/06/14. 6 | // Copyright (c) 2014 Andrei Puni. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | 11 | class IBDesignableTestTests: XCTestCase { 12 | 13 | override func setUp() { 14 | super.setUp() 15 | // Put setup code here. This method is called before the invocation of each test method in the class. 16 | } 17 | 18 | override func tearDown() { 19 | // Put teardown code here. This method is called after the invocation of each test method in the class. 20 | super.tearDown() 21 | } 22 | 23 | func testExample() { 24 | // This is an example of a functional test case. 25 | XCTAssert(true, "Pass") 26 | } 27 | 28 | func testPerformanceExample() { 29 | // This is an example of a performance test case. 30 | self.measureBlock() { 31 | // Put the code you want to measure the time of here. 32 | } 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /IBDesignableTest/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 | "idiom" : "ipad", 20 | "size" : "29x29", 21 | "scale" : "1x" 22 | }, 23 | { 24 | "idiom" : "ipad", 25 | "size" : "29x29", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "ipad", 30 | "size" : "40x40", 31 | "scale" : "1x" 32 | }, 33 | { 34 | "idiom" : "ipad", 35 | "size" : "40x40", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "76x76", 41 | "scale" : "1x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "76x76", 46 | "scale" : "2x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } -------------------------------------------------------------------------------- /IBDesignable.xcodeproj/xcuserdata/andrei.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | IBDesignable.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | IBDesignableTest.xcscheme 13 | 14 | orderHint 15 | 1 16 | 17 | 18 | SuppressBuildableAutocreation 19 | 20 | 754C9EA91942097C00545907 21 | 22 | primary 23 | 24 | 25 | 754C9EB41942097C00545907 26 | 27 | primary 28 | 29 | 30 | 754C9ECB194209F500545907 31 | 32 | primary 33 | 34 | 35 | 754C9EDC194209F500545907 36 | 37 | primary 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /IBDesignableTest/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 | "orientation" : "portrait", 20 | "idiom" : "ipad", 21 | "extent" : "full-screen", 22 | "minimum-system-version" : "7.0", 23 | "scale" : "1x" 24 | }, 25 | { 26 | "orientation" : "landscape", 27 | "idiom" : "ipad", 28 | "extent" : "full-screen", 29 | "minimum-system-version" : "7.0", 30 | "scale" : "1x" 31 | }, 32 | { 33 | "orientation" : "portrait", 34 | "idiom" : "ipad", 35 | "extent" : "full-screen", 36 | "minimum-system-version" : "7.0", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "orientation" : "landscape", 41 | "idiom" : "ipad", 42 | "extent" : "full-screen", 43 | "minimum-system-version" : "7.0", 44 | "scale" : "2x" 45 | } 46 | ], 47 | "info" : { 48 | "version" : 1, 49 | "author" : "xcode" 50 | } 51 | } -------------------------------------------------------------------------------- /IBDesignableTest/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // IBDesignableTest 4 | // 5 | // Created by Andrei Puni on 06/06/14. 6 | // Copyright (c) 2014 Andrei Puni. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(application: UIApplication) { 23 | // 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. 24 | // 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. 25 | } 26 | 27 | func applicationDidEnterBackground(application: UIApplication) { 28 | // 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. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(application: UIApplication) { 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 | func applicationDidBecomeActive(application: UIApplication) { 37 | // 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. 38 | } 39 | 40 | func applicationWillTerminate(application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /IBDesignable.xcodeproj/xcuserdata/andrei.xcuserdatad/xcschemes/IBDesignable.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 52 | 53 | 54 | 55 | 61 | 62 | 64 | 65 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /IBDesignableTest/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 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /IBDesignable.xcodeproj/xcuserdata/andrei.xcuserdatad/xcschemes/IBDesignableTest.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 | -------------------------------------------------------------------------------- /IBDesignable.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 754C9EB01942097C00545907 /* IBDesignable.h in Headers */ = {isa = PBXBuildFile; fileRef = 754C9EAF1942097C00545907 /* IBDesignable.h */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | 754C9EB61942097C00545907 /* IBDesignable.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 754C9EAA1942097C00545907 /* IBDesignable.framework */; }; 12 | 754C9EBD1942097C00545907 /* IBDesignableTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 754C9EBC1942097C00545907 /* IBDesignableTests.swift */; }; 13 | 754C9EC7194209B400545907 /* DesignableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 754C9EC6194209B400545907 /* DesignableView.swift */; }; 14 | 754C9ED1194209F500545907 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 754C9ED0194209F500545907 /* AppDelegate.swift */; }; 15 | 754C9ED3194209F500545907 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 754C9ED2194209F500545907 /* ViewController.swift */; }; 16 | 754C9ED6194209F500545907 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 754C9ED4194209F500545907 /* Main.storyboard */; }; 17 | 754C9ED8194209F500545907 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 754C9ED7194209F500545907 /* Images.xcassets */; }; 18 | 754C9EE4194209F500545907 /* IBDesignableTestTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 754C9EE3194209F500545907 /* IBDesignableTestTests.swift */; }; 19 | 75EBA75519420BAB0029C84D /* IBDesignable.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 754C9EAA1942097C00545907 /* IBDesignable.framework */; }; 20 | /* End PBXBuildFile section */ 21 | 22 | /* Begin PBXContainerItemProxy section */ 23 | 754C9EB71942097C00545907 /* PBXContainerItemProxy */ = { 24 | isa = PBXContainerItemProxy; 25 | containerPortal = 754C9EA11942097C00545907 /* Project object */; 26 | proxyType = 1; 27 | remoteGlobalIDString = 754C9EA91942097C00545907; 28 | remoteInfo = IBDesignable; 29 | }; 30 | 754C9EDE194209F500545907 /* PBXContainerItemProxy */ = { 31 | isa = PBXContainerItemProxy; 32 | containerPortal = 754C9EA11942097C00545907 /* Project object */; 33 | proxyType = 1; 34 | remoteGlobalIDString = 754C9ECB194209F500545907; 35 | remoteInfo = IBDesignableTest; 36 | }; 37 | 754C9EEB194209F600545907 /* PBXContainerItemProxy */ = { 38 | isa = PBXContainerItemProxy; 39 | containerPortal = 754C9EA11942097C00545907 /* Project object */; 40 | proxyType = 1; 41 | remoteGlobalIDString = 754C9ECB194209F500545907; 42 | remoteInfo = IBDesignableTest; 43 | }; 44 | /* End PBXContainerItemProxy section */ 45 | 46 | /* Begin PBXFileReference section */ 47 | 754C9EAA1942097C00545907 /* IBDesignable.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IBDesignable.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 48 | 754C9EAE1942097C00545907 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 49 | 754C9EAF1942097C00545907 /* IBDesignable.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = IBDesignable.h; sourceTree = ""; }; 50 | 754C9EB51942097C00545907 /* IBDesignableTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = IBDesignableTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 51 | 754C9EBB1942097C00545907 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 52 | 754C9EBC1942097C00545907 /* IBDesignableTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IBDesignableTests.swift; sourceTree = ""; }; 53 | 754C9EC6194209B400545907 /* DesignableView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DesignableView.swift; sourceTree = ""; }; 54 | 754C9ECC194209F500545907 /* IBDesignableTest.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = IBDesignableTest.app; sourceTree = BUILT_PRODUCTS_DIR; }; 55 | 754C9ECF194209F500545907 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 56 | 754C9ED0194209F500545907 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 57 | 754C9ED2194209F500545907 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 58 | 754C9ED5194209F500545907 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 59 | 754C9ED7194209F500545907 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 60 | 754C9EDD194209F500545907 /* IBDesignableTestTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = IBDesignableTestTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 61 | 754C9EE2194209F500545907 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 62 | 754C9EE3194209F500545907 /* IBDesignableTestTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IBDesignableTestTests.swift; sourceTree = ""; }; 63 | /* End PBXFileReference section */ 64 | 65 | /* Begin PBXFrameworksBuildPhase section */ 66 | 754C9EA61942097C00545907 /* Frameworks */ = { 67 | isa = PBXFrameworksBuildPhase; 68 | buildActionMask = 2147483647; 69 | files = ( 70 | ); 71 | runOnlyForDeploymentPostprocessing = 0; 72 | }; 73 | 754C9EB21942097C00545907 /* Frameworks */ = { 74 | isa = PBXFrameworksBuildPhase; 75 | buildActionMask = 2147483647; 76 | files = ( 77 | 754C9EB61942097C00545907 /* IBDesignable.framework in Frameworks */, 78 | ); 79 | runOnlyForDeploymentPostprocessing = 0; 80 | }; 81 | 754C9EC9194209F500545907 /* Frameworks */ = { 82 | isa = PBXFrameworksBuildPhase; 83 | buildActionMask = 2147483647; 84 | files = ( 85 | 75EBA75519420BAB0029C84D /* IBDesignable.framework in Frameworks */, 86 | ); 87 | runOnlyForDeploymentPostprocessing = 0; 88 | }; 89 | 754C9EDA194209F500545907 /* Frameworks */ = { 90 | isa = PBXFrameworksBuildPhase; 91 | buildActionMask = 2147483647; 92 | files = ( 93 | ); 94 | runOnlyForDeploymentPostprocessing = 0; 95 | }; 96 | /* End PBXFrameworksBuildPhase section */ 97 | 98 | /* Begin PBXGroup section */ 99 | 754C9EA01942097C00545907 = { 100 | isa = PBXGroup; 101 | children = ( 102 | 754C9EAC1942097C00545907 /* IBDesignable */, 103 | 754C9EB91942097C00545907 /* IBDesignableTests */, 104 | 754C9ECD194209F500545907 /* IBDesignableTest */, 105 | 754C9EE0194209F500545907 /* IBDesignableTestTests */, 106 | 754C9EAB1942097C00545907 /* Products */, 107 | ); 108 | sourceTree = ""; 109 | }; 110 | 754C9EAB1942097C00545907 /* Products */ = { 111 | isa = PBXGroup; 112 | children = ( 113 | 754C9EAA1942097C00545907 /* IBDesignable.framework */, 114 | 754C9EB51942097C00545907 /* IBDesignableTests.xctest */, 115 | 754C9ECC194209F500545907 /* IBDesignableTest.app */, 116 | 754C9EDD194209F500545907 /* IBDesignableTestTests.xctest */, 117 | ); 118 | name = Products; 119 | sourceTree = ""; 120 | }; 121 | 754C9EAC1942097C00545907 /* IBDesignable */ = { 122 | isa = PBXGroup; 123 | children = ( 124 | 754C9EAF1942097C00545907 /* IBDesignable.h */, 125 | 754C9EAD1942097C00545907 /* Supporting Files */, 126 | 754C9EC6194209B400545907 /* DesignableView.swift */, 127 | ); 128 | path = IBDesignable; 129 | sourceTree = ""; 130 | }; 131 | 754C9EAD1942097C00545907 /* Supporting Files */ = { 132 | isa = PBXGroup; 133 | children = ( 134 | 754C9EAE1942097C00545907 /* Info.plist */, 135 | ); 136 | name = "Supporting Files"; 137 | sourceTree = ""; 138 | }; 139 | 754C9EB91942097C00545907 /* IBDesignableTests */ = { 140 | isa = PBXGroup; 141 | children = ( 142 | 754C9EBC1942097C00545907 /* IBDesignableTests.swift */, 143 | 754C9EBA1942097C00545907 /* Supporting Files */, 144 | ); 145 | path = IBDesignableTests; 146 | sourceTree = ""; 147 | }; 148 | 754C9EBA1942097C00545907 /* Supporting Files */ = { 149 | isa = PBXGroup; 150 | children = ( 151 | 754C9EBB1942097C00545907 /* Info.plist */, 152 | ); 153 | name = "Supporting Files"; 154 | sourceTree = ""; 155 | }; 156 | 754C9ECD194209F500545907 /* IBDesignableTest */ = { 157 | isa = PBXGroup; 158 | children = ( 159 | 754C9ED0194209F500545907 /* AppDelegate.swift */, 160 | 754C9ED2194209F500545907 /* ViewController.swift */, 161 | 754C9ED4194209F500545907 /* Main.storyboard */, 162 | 754C9ED7194209F500545907 /* Images.xcassets */, 163 | 754C9ECE194209F500545907 /* Supporting Files */, 164 | ); 165 | path = IBDesignableTest; 166 | sourceTree = ""; 167 | }; 168 | 754C9ECE194209F500545907 /* Supporting Files */ = { 169 | isa = PBXGroup; 170 | children = ( 171 | 754C9ECF194209F500545907 /* Info.plist */, 172 | ); 173 | name = "Supporting Files"; 174 | sourceTree = ""; 175 | }; 176 | 754C9EE0194209F500545907 /* IBDesignableTestTests */ = { 177 | isa = PBXGroup; 178 | children = ( 179 | 754C9EE3194209F500545907 /* IBDesignableTestTests.swift */, 180 | 754C9EE1194209F500545907 /* Supporting Files */, 181 | ); 182 | path = IBDesignableTestTests; 183 | sourceTree = ""; 184 | }; 185 | 754C9EE1194209F500545907 /* Supporting Files */ = { 186 | isa = PBXGroup; 187 | children = ( 188 | 754C9EE2194209F500545907 /* Info.plist */, 189 | ); 190 | name = "Supporting Files"; 191 | sourceTree = ""; 192 | }; 193 | /* End PBXGroup section */ 194 | 195 | /* Begin PBXHeadersBuildPhase section */ 196 | 754C9EA71942097C00545907 /* Headers */ = { 197 | isa = PBXHeadersBuildPhase; 198 | buildActionMask = 2147483647; 199 | files = ( 200 | 754C9EB01942097C00545907 /* IBDesignable.h in Headers */, 201 | ); 202 | runOnlyForDeploymentPostprocessing = 0; 203 | }; 204 | /* End PBXHeadersBuildPhase section */ 205 | 206 | /* Begin PBXNativeTarget section */ 207 | 754C9EA91942097C00545907 /* IBDesignable */ = { 208 | isa = PBXNativeTarget; 209 | buildConfigurationList = 754C9EC01942097C00545907 /* Build configuration list for PBXNativeTarget "IBDesignable" */; 210 | buildPhases = ( 211 | 754C9EA51942097C00545907 /* Sources */, 212 | 754C9EA61942097C00545907 /* Frameworks */, 213 | 754C9EA71942097C00545907 /* Headers */, 214 | 754C9EA81942097C00545907 /* Resources */, 215 | ); 216 | buildRules = ( 217 | ); 218 | dependencies = ( 219 | ); 220 | name = IBDesignable; 221 | productName = IBDesignable; 222 | productReference = 754C9EAA1942097C00545907 /* IBDesignable.framework */; 223 | productType = "com.apple.product-type.framework"; 224 | }; 225 | 754C9EB41942097C00545907 /* IBDesignableTests */ = { 226 | isa = PBXNativeTarget; 227 | buildConfigurationList = 754C9EC31942097C00545907 /* Build configuration list for PBXNativeTarget "IBDesignableTests" */; 228 | buildPhases = ( 229 | 754C9EB11942097C00545907 /* Sources */, 230 | 754C9EB21942097C00545907 /* Frameworks */, 231 | 754C9EB31942097C00545907 /* Resources */, 232 | ); 233 | buildRules = ( 234 | ); 235 | dependencies = ( 236 | 754C9EB81942097C00545907 /* PBXTargetDependency */, 237 | ); 238 | name = IBDesignableTests; 239 | productName = IBDesignableTests; 240 | productReference = 754C9EB51942097C00545907 /* IBDesignableTests.xctest */; 241 | productType = "com.apple.product-type.bundle.unit-test"; 242 | }; 243 | 754C9ECB194209F500545907 /* IBDesignableTest */ = { 244 | isa = PBXNativeTarget; 245 | buildConfigurationList = 754C9EE5194209F500545907 /* Build configuration list for PBXNativeTarget "IBDesignableTest" */; 246 | buildPhases = ( 247 | 754C9EC8194209F500545907 /* Sources */, 248 | 754C9EC9194209F500545907 /* Frameworks */, 249 | 754C9ECA194209F500545907 /* Resources */, 250 | ); 251 | buildRules = ( 252 | ); 253 | dependencies = ( 254 | ); 255 | name = IBDesignableTest; 256 | productName = IBDesignableTest; 257 | productReference = 754C9ECC194209F500545907 /* IBDesignableTest.app */; 258 | productType = "com.apple.product-type.application"; 259 | }; 260 | 754C9EDC194209F500545907 /* IBDesignableTestTests */ = { 261 | isa = PBXNativeTarget; 262 | buildConfigurationList = 754C9EE8194209F500545907 /* Build configuration list for PBXNativeTarget "IBDesignableTestTests" */; 263 | buildPhases = ( 264 | 754C9ED9194209F500545907 /* Sources */, 265 | 754C9EDA194209F500545907 /* Frameworks */, 266 | 754C9EDB194209F500545907 /* Resources */, 267 | ); 268 | buildRules = ( 269 | ); 270 | dependencies = ( 271 | 754C9EDF194209F500545907 /* PBXTargetDependency */, 272 | 754C9EEC194209F600545907 /* PBXTargetDependency */, 273 | ); 274 | name = IBDesignableTestTests; 275 | productName = IBDesignableTestTests; 276 | productReference = 754C9EDD194209F500545907 /* IBDesignableTestTests.xctest */; 277 | productType = "com.apple.product-type.bundle.unit-test"; 278 | }; 279 | /* End PBXNativeTarget section */ 280 | 281 | /* Begin PBXProject section */ 282 | 754C9EA11942097C00545907 /* Project object */ = { 283 | isa = PBXProject; 284 | attributes = { 285 | LastUpgradeCheck = 0600; 286 | ORGANIZATIONNAME = "Andrei Puni"; 287 | TargetAttributes = { 288 | 754C9EA91942097C00545907 = { 289 | CreatedOnToolsVersion = 6.0; 290 | }; 291 | 754C9EB41942097C00545907 = { 292 | CreatedOnToolsVersion = 6.0; 293 | TestTargetID = 754C9EA91942097C00545907; 294 | }; 295 | 754C9ECB194209F500545907 = { 296 | CreatedOnToolsVersion = 6.0; 297 | }; 298 | 754C9EDC194209F500545907 = { 299 | CreatedOnToolsVersion = 6.0; 300 | TestTargetID = 754C9ECB194209F500545907; 301 | }; 302 | }; 303 | }; 304 | buildConfigurationList = 754C9EA41942097C00545907 /* Build configuration list for PBXProject "IBDesignable" */; 305 | compatibilityVersion = "Xcode 3.2"; 306 | developmentRegion = English; 307 | hasScannedForEncodings = 0; 308 | knownRegions = ( 309 | en, 310 | Base, 311 | ); 312 | mainGroup = 754C9EA01942097C00545907; 313 | productRefGroup = 754C9EAB1942097C00545907 /* Products */; 314 | projectDirPath = ""; 315 | projectRoot = ""; 316 | targets = ( 317 | 754C9EA91942097C00545907 /* IBDesignable */, 318 | 754C9EB41942097C00545907 /* IBDesignableTests */, 319 | 754C9ECB194209F500545907 /* IBDesignableTest */, 320 | 754C9EDC194209F500545907 /* IBDesignableTestTests */, 321 | ); 322 | }; 323 | /* End PBXProject section */ 324 | 325 | /* Begin PBXResourcesBuildPhase section */ 326 | 754C9EA81942097C00545907 /* Resources */ = { 327 | isa = PBXResourcesBuildPhase; 328 | buildActionMask = 2147483647; 329 | files = ( 330 | ); 331 | runOnlyForDeploymentPostprocessing = 0; 332 | }; 333 | 754C9EB31942097C00545907 /* Resources */ = { 334 | isa = PBXResourcesBuildPhase; 335 | buildActionMask = 2147483647; 336 | files = ( 337 | ); 338 | runOnlyForDeploymentPostprocessing = 0; 339 | }; 340 | 754C9ECA194209F500545907 /* Resources */ = { 341 | isa = PBXResourcesBuildPhase; 342 | buildActionMask = 2147483647; 343 | files = ( 344 | 754C9ED6194209F500545907 /* Main.storyboard in Resources */, 345 | 754C9ED8194209F500545907 /* Images.xcassets in Resources */, 346 | ); 347 | runOnlyForDeploymentPostprocessing = 0; 348 | }; 349 | 754C9EDB194209F500545907 /* Resources */ = { 350 | isa = PBXResourcesBuildPhase; 351 | buildActionMask = 2147483647; 352 | files = ( 353 | ); 354 | runOnlyForDeploymentPostprocessing = 0; 355 | }; 356 | /* End PBXResourcesBuildPhase section */ 357 | 358 | /* Begin PBXSourcesBuildPhase section */ 359 | 754C9EA51942097C00545907 /* Sources */ = { 360 | isa = PBXSourcesBuildPhase; 361 | buildActionMask = 2147483647; 362 | files = ( 363 | 754C9EC7194209B400545907 /* DesignableView.swift in Sources */, 364 | ); 365 | runOnlyForDeploymentPostprocessing = 0; 366 | }; 367 | 754C9EB11942097C00545907 /* Sources */ = { 368 | isa = PBXSourcesBuildPhase; 369 | buildActionMask = 2147483647; 370 | files = ( 371 | 754C9EBD1942097C00545907 /* IBDesignableTests.swift in Sources */, 372 | ); 373 | runOnlyForDeploymentPostprocessing = 0; 374 | }; 375 | 754C9EC8194209F500545907 /* Sources */ = { 376 | isa = PBXSourcesBuildPhase; 377 | buildActionMask = 2147483647; 378 | files = ( 379 | 754C9ED3194209F500545907 /* ViewController.swift in Sources */, 380 | 754C9ED1194209F500545907 /* AppDelegate.swift in Sources */, 381 | ); 382 | runOnlyForDeploymentPostprocessing = 0; 383 | }; 384 | 754C9ED9194209F500545907 /* Sources */ = { 385 | isa = PBXSourcesBuildPhase; 386 | buildActionMask = 2147483647; 387 | files = ( 388 | 754C9EE4194209F500545907 /* IBDesignableTestTests.swift in Sources */, 389 | ); 390 | runOnlyForDeploymentPostprocessing = 0; 391 | }; 392 | /* End PBXSourcesBuildPhase section */ 393 | 394 | /* Begin PBXTargetDependency section */ 395 | 754C9EB81942097C00545907 /* PBXTargetDependency */ = { 396 | isa = PBXTargetDependency; 397 | target = 754C9EA91942097C00545907 /* IBDesignable */; 398 | targetProxy = 754C9EB71942097C00545907 /* PBXContainerItemProxy */; 399 | }; 400 | 754C9EDF194209F500545907 /* PBXTargetDependency */ = { 401 | isa = PBXTargetDependency; 402 | target = 754C9ECB194209F500545907 /* IBDesignableTest */; 403 | targetProxy = 754C9EDE194209F500545907 /* PBXContainerItemProxy */; 404 | }; 405 | 754C9EEC194209F600545907 /* PBXTargetDependency */ = { 406 | isa = PBXTargetDependency; 407 | target = 754C9ECB194209F500545907 /* IBDesignableTest */; 408 | targetProxy = 754C9EEB194209F600545907 /* PBXContainerItemProxy */; 409 | }; 410 | /* End PBXTargetDependency section */ 411 | 412 | /* Begin PBXVariantGroup section */ 413 | 754C9ED4194209F500545907 /* Main.storyboard */ = { 414 | isa = PBXVariantGroup; 415 | children = ( 416 | 754C9ED5194209F500545907 /* Base */, 417 | ); 418 | name = Main.storyboard; 419 | sourceTree = ""; 420 | }; 421 | /* End PBXVariantGroup section */ 422 | 423 | /* Begin XCBuildConfiguration section */ 424 | 754C9EBE1942097C00545907 /* Debug */ = { 425 | isa = XCBuildConfiguration; 426 | buildSettings = { 427 | ALWAYS_SEARCH_USER_PATHS = NO; 428 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 429 | CLANG_CXX_LIBRARY = "libc++"; 430 | CLANG_ENABLE_MODULES = YES; 431 | CLANG_ENABLE_OBJC_ARC = YES; 432 | CLANG_WARN_BOOL_CONVERSION = YES; 433 | CLANG_WARN_CONSTANT_CONVERSION = YES; 434 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 435 | CLANG_WARN_EMPTY_BODY = YES; 436 | CLANG_WARN_ENUM_CONVERSION = YES; 437 | CLANG_WARN_INT_CONVERSION = YES; 438 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 439 | CLANG_WARN_UNREACHABLE_CODE = YES; 440 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 441 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 442 | COPY_PHASE_STRIP = NO; 443 | CURRENT_PROJECT_VERSION = 1; 444 | ENABLE_STRICT_OBJC_MSGSEND = YES; 445 | GCC_C_LANGUAGE_STANDARD = gnu99; 446 | GCC_DYNAMIC_NO_PIC = NO; 447 | GCC_OPTIMIZATION_LEVEL = 0; 448 | GCC_PREPROCESSOR_DEFINITIONS = ( 449 | "DEBUG=1", 450 | "$(inherited)", 451 | ); 452 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 453 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 454 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 455 | GCC_WARN_UNDECLARED_SELECTOR = YES; 456 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 457 | GCC_WARN_UNUSED_FUNCTION = YES; 458 | GCC_WARN_UNUSED_VARIABLE = YES; 459 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 460 | METAL_ENABLE_DEBUG_INFO = YES; 461 | ONLY_ACTIVE_ARCH = YES; 462 | SDKROOT = iphoneos; 463 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 464 | TARGETED_DEVICE_FAMILY = "1,2"; 465 | VERSIONING_SYSTEM = "apple-generic"; 466 | VERSION_INFO_PREFIX = ""; 467 | }; 468 | name = Debug; 469 | }; 470 | 754C9EBF1942097C00545907 /* Release */ = { 471 | isa = XCBuildConfiguration; 472 | buildSettings = { 473 | ALWAYS_SEARCH_USER_PATHS = NO; 474 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 475 | CLANG_CXX_LIBRARY = "libc++"; 476 | CLANG_ENABLE_MODULES = YES; 477 | CLANG_ENABLE_OBJC_ARC = YES; 478 | CLANG_WARN_BOOL_CONVERSION = YES; 479 | CLANG_WARN_CONSTANT_CONVERSION = YES; 480 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 481 | CLANG_WARN_EMPTY_BODY = YES; 482 | CLANG_WARN_ENUM_CONVERSION = YES; 483 | CLANG_WARN_INT_CONVERSION = YES; 484 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 485 | CLANG_WARN_UNREACHABLE_CODE = YES; 486 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 487 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 488 | COPY_PHASE_STRIP = YES; 489 | CURRENT_PROJECT_VERSION = 1; 490 | ENABLE_NS_ASSERTIONS = NO; 491 | ENABLE_STRICT_OBJC_MSGSEND = YES; 492 | GCC_C_LANGUAGE_STANDARD = gnu99; 493 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 494 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 495 | GCC_WARN_UNDECLARED_SELECTOR = YES; 496 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 497 | GCC_WARN_UNUSED_FUNCTION = YES; 498 | GCC_WARN_UNUSED_VARIABLE = YES; 499 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 500 | METAL_ENABLE_DEBUG_INFO = NO; 501 | SDKROOT = iphoneos; 502 | TARGETED_DEVICE_FAMILY = "1,2"; 503 | VALIDATE_PRODUCT = YES; 504 | VERSIONING_SYSTEM = "apple-generic"; 505 | VERSION_INFO_PREFIX = ""; 506 | }; 507 | name = Release; 508 | }; 509 | 754C9EC11942097C00545907 /* Debug */ = { 510 | isa = XCBuildConfiguration; 511 | buildSettings = { 512 | CLANG_ENABLE_MODULES = YES; 513 | DEFINES_MODULE = YES; 514 | DYLIB_COMPATIBILITY_VERSION = 1; 515 | DYLIB_CURRENT_VERSION = 1; 516 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 517 | INFOPLIST_FILE = IBDesignable/Info.plist; 518 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 519 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 520 | PRODUCT_NAME = "$(TARGET_NAME)"; 521 | SKIP_INSTALL = YES; 522 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 523 | }; 524 | name = Debug; 525 | }; 526 | 754C9EC21942097C00545907 /* Release */ = { 527 | isa = XCBuildConfiguration; 528 | buildSettings = { 529 | CLANG_ENABLE_MODULES = YES; 530 | DEFINES_MODULE = YES; 531 | DYLIB_COMPATIBILITY_VERSION = 1; 532 | DYLIB_CURRENT_VERSION = 1; 533 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 534 | INFOPLIST_FILE = IBDesignable/Info.plist; 535 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 536 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 537 | PRODUCT_NAME = "$(TARGET_NAME)"; 538 | SKIP_INSTALL = YES; 539 | }; 540 | name = Release; 541 | }; 542 | 754C9EC41942097C00545907 /* Debug */ = { 543 | isa = XCBuildConfiguration; 544 | buildSettings = { 545 | FRAMEWORK_SEARCH_PATHS = ( 546 | "$(SDKROOT)/Developer/Library/Frameworks", 547 | "$(inherited)", 548 | ); 549 | GCC_PREPROCESSOR_DEFINITIONS = ( 550 | "DEBUG=1", 551 | "$(inherited)", 552 | ); 553 | INFOPLIST_FILE = IBDesignableTests/Info.plist; 554 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 555 | METAL_ENABLE_DEBUG_INFO = YES; 556 | PRODUCT_NAME = "$(TARGET_NAME)"; 557 | }; 558 | name = Debug; 559 | }; 560 | 754C9EC51942097C00545907 /* Release */ = { 561 | isa = XCBuildConfiguration; 562 | buildSettings = { 563 | FRAMEWORK_SEARCH_PATHS = ( 564 | "$(SDKROOT)/Developer/Library/Frameworks", 565 | "$(inherited)", 566 | ); 567 | INFOPLIST_FILE = IBDesignableTests/Info.plist; 568 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 569 | METAL_ENABLE_DEBUG_INFO = NO; 570 | PRODUCT_NAME = "$(TARGET_NAME)"; 571 | }; 572 | name = Release; 573 | }; 574 | 754C9EE6194209F500545907 /* Debug */ = { 575 | isa = XCBuildConfiguration; 576 | buildSettings = { 577 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 578 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 579 | GCC_PREPROCESSOR_DEFINITIONS = ( 580 | "DEBUG=1", 581 | "$(inherited)", 582 | ); 583 | INFOPLIST_FILE = IBDesignableTest/Info.plist; 584 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 585 | METAL_ENABLE_DEBUG_INFO = YES; 586 | PRODUCT_NAME = "$(TARGET_NAME)"; 587 | }; 588 | name = Debug; 589 | }; 590 | 754C9EE7194209F500545907 /* Release */ = { 591 | isa = XCBuildConfiguration; 592 | buildSettings = { 593 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 594 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 595 | INFOPLIST_FILE = IBDesignableTest/Info.plist; 596 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 597 | METAL_ENABLE_DEBUG_INFO = NO; 598 | PRODUCT_NAME = "$(TARGET_NAME)"; 599 | }; 600 | name = Release; 601 | }; 602 | 754C9EE9194209F500545907 /* Debug */ = { 603 | isa = XCBuildConfiguration; 604 | buildSettings = { 605 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/IBDesignableTest.app/IBDesignableTest"; 606 | FRAMEWORK_SEARCH_PATHS = ( 607 | "$(SDKROOT)/Developer/Library/Frameworks", 608 | "$(inherited)", 609 | ); 610 | GCC_PREPROCESSOR_DEFINITIONS = ( 611 | "DEBUG=1", 612 | "$(inherited)", 613 | ); 614 | INFOPLIST_FILE = IBDesignableTestTests/Info.plist; 615 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 616 | METAL_ENABLE_DEBUG_INFO = YES; 617 | PRODUCT_NAME = "$(TARGET_NAME)"; 618 | TEST_HOST = "$(BUNDLE_LOADER)"; 619 | }; 620 | name = Debug; 621 | }; 622 | 754C9EEA194209F500545907 /* Release */ = { 623 | isa = XCBuildConfiguration; 624 | buildSettings = { 625 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/IBDesignableTest.app/IBDesignableTest"; 626 | FRAMEWORK_SEARCH_PATHS = ( 627 | "$(SDKROOT)/Developer/Library/Frameworks", 628 | "$(inherited)", 629 | ); 630 | INFOPLIST_FILE = IBDesignableTestTests/Info.plist; 631 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 632 | METAL_ENABLE_DEBUG_INFO = NO; 633 | PRODUCT_NAME = "$(TARGET_NAME)"; 634 | TEST_HOST = "$(BUNDLE_LOADER)"; 635 | }; 636 | name = Release; 637 | }; 638 | /* End XCBuildConfiguration section */ 639 | 640 | /* Begin XCConfigurationList section */ 641 | 754C9EA41942097C00545907 /* Build configuration list for PBXProject "IBDesignable" */ = { 642 | isa = XCConfigurationList; 643 | buildConfigurations = ( 644 | 754C9EBE1942097C00545907 /* Debug */, 645 | 754C9EBF1942097C00545907 /* Release */, 646 | ); 647 | defaultConfigurationIsVisible = 0; 648 | defaultConfigurationName = Release; 649 | }; 650 | 754C9EC01942097C00545907 /* Build configuration list for PBXNativeTarget "IBDesignable" */ = { 651 | isa = XCConfigurationList; 652 | buildConfigurations = ( 653 | 754C9EC11942097C00545907 /* Debug */, 654 | 754C9EC21942097C00545907 /* Release */, 655 | ); 656 | defaultConfigurationIsVisible = 0; 657 | defaultConfigurationName = Release; 658 | }; 659 | 754C9EC31942097C00545907 /* Build configuration list for PBXNativeTarget "IBDesignableTests" */ = { 660 | isa = XCConfigurationList; 661 | buildConfigurations = ( 662 | 754C9EC41942097C00545907 /* Debug */, 663 | 754C9EC51942097C00545907 /* Release */, 664 | ); 665 | defaultConfigurationIsVisible = 0; 666 | defaultConfigurationName = Release; 667 | }; 668 | 754C9EE5194209F500545907 /* Build configuration list for PBXNativeTarget "IBDesignableTest" */ = { 669 | isa = XCConfigurationList; 670 | buildConfigurations = ( 671 | 754C9EE6194209F500545907 /* Debug */, 672 | 754C9EE7194209F500545907 /* Release */, 673 | ); 674 | defaultConfigurationIsVisible = 0; 675 | defaultConfigurationName = Release; 676 | }; 677 | 754C9EE8194209F500545907 /* Build configuration list for PBXNativeTarget "IBDesignableTestTests" */ = { 678 | isa = XCConfigurationList; 679 | buildConfigurations = ( 680 | 754C9EE9194209F500545907 /* Debug */, 681 | 754C9EEA194209F500545907 /* Release */, 682 | ); 683 | defaultConfigurationIsVisible = 0; 684 | defaultConfigurationName = Release; 685 | }; 686 | /* End XCConfigurationList section */ 687 | }; 688 | rootObject = 754C9EA11942097C00545907 /* Project object */; 689 | } 690 | --------------------------------------------------------------------------------