├── Gemfile
├── Documentation
└── Example.png
├── Example
├── Images.xcassets
│ ├── head.imageset
│ │ ├── head.png
│ │ └── Contents.json
│ └── AppIcon.appiconset
│ │ └── Contents.json
├── ViewController.swift
├── Info.plist
├── AppDelegate.swift
└── Base.lproj
│ ├── Main.storyboard
│ └── LaunchScreen.xib
├── DorkTiledImageView.xcodeproj
├── project.xcworkspace
│ └── contents.xcworkspacedata
├── xcshareddata
│ └── xcschemes
│ │ ├── Example.xcscheme
│ │ └── DorkTiledImageView.xcscheme
└── project.pbxproj
├── .gitignore
├── DorkTiledImageView.podspec
├── DorkTiledImageView
├── DorkTiledImageView.h
├── Info.plist
└── DorkTiledImageView.swift
├── DorkTiledImageViewTests
├── Info.plist
└── DorkTiledImageViewTests.swift
├── LICENSE.md
└── Gemfile.lock
/Gemfile:
--------------------------------------------------------------------------------
1 | source 'https://rubygems.org'
2 |
3 | gem 'cocoapods'
--------------------------------------------------------------------------------
/Documentation/Example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adorkable/DorkTiledImageView/master/Documentation/Example.png
--------------------------------------------------------------------------------
/Example/Images.xcassets/head.imageset/head.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adorkable/DorkTiledImageView/master/Example/Images.xcassets/head.imageset/head.png
--------------------------------------------------------------------------------
/DorkTiledImageView.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Example/Images.xcassets/head.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "scale" : "1x",
6 | "filename" : "head.png"
7 | }
8 | ],
9 | "info" : {
10 | "version" : 1,
11 | "author" : "xcode"
12 | }
13 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
3 | # Xcode
4 | #
5 | build/
6 | *.pbxuser
7 | !default.pbxuser
8 | *.mode1v3
9 | !default.mode1v3
10 | *.mode2v3
11 | !default.mode2v3
12 | *.perspectivev3
13 | !default.perspectivev3
14 | xcuserdata
15 | *.xccheckout
16 | *.moved-aside
17 | DerivedData
18 | *.hmap
19 | *.ipa
20 | *.xcuserstate
21 |
22 | # Cocoapods
23 | #
24 | Pods/
25 |
26 | # Carthage
27 | #
28 | Carthage/Checkouts
29 | Carthage/Build
30 |
--------------------------------------------------------------------------------
/DorkTiledImageView.podspec:
--------------------------------------------------------------------------------
1 | Pod::Spec.new do |s|
2 |
3 | s.name = "DorkTiledImageView"
4 | s.version = "0.1.3"
5 | s.summary = "simple Tiled Image View for iOS"
6 | s.license = 'MIT'
7 |
8 | s.homepage = "https://github.com/Adorkable/DorkTiledImageView"
9 |
10 | s.author = { "Ian Grossberg" => "yo.ian.g@gmail.com" }
11 | s.platform = :ios, '8.0'
12 |
13 | s.source = { :git => "https://github.com/Adorkable/DorkTiledImageView.git", :tag => s.version.to_s }
14 |
15 | s.source_files = "DorkTiledImageView/*.swift"
16 |
17 | s.requires_arc = true
18 | end
19 |
--------------------------------------------------------------------------------
/Example/ViewController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.swift
3 | // Example
4 | //
5 | // Created by Ian on 5/19/15.
6 | // Copyright (c) 2015 Adorkable. 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 |
--------------------------------------------------------------------------------
/DorkTiledImageView/DorkTiledImageView.h:
--------------------------------------------------------------------------------
1 | //
2 | // DorkTiledImageView.h
3 | // DorkTiledImageView
4 | //
5 | // Created by Ian on 5/19/15.
6 | // Copyright (c) 2015 Adorkable. All rights reserved.
7 | //
8 |
9 | #import
10 |
11 | //! Project version number for DorkTiledImageView.
12 | FOUNDATION_EXPORT double DorkTiledImageViewVersionNumber;
13 |
14 | //! Project version string for DorkTiledImageView.
15 | FOUNDATION_EXPORT const unsigned char DorkTiledImageViewVersionString[];
16 |
17 | // In this header, you should import all the public headers of your framework using statements like #import
18 |
19 |
20 |
--------------------------------------------------------------------------------
/DorkTiledImageViewTests/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 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 |
24 |
25 |
--------------------------------------------------------------------------------
/DorkTiledImageView/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 | FMWK
17 | CFBundleShortVersionString
18 | 0.1.3
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | $(CURRENT_PROJECT_VERSION)
23 | NSPrincipalClass
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/DorkTiledImageViewTests/DorkTiledImageViewTests.swift:
--------------------------------------------------------------------------------
1 | //
2 | // DorkTiledImageViewTests.swift
3 | // DorkTiledImageViewTests
4 | //
5 | // Created by Ian on 5/19/15.
6 | // Copyright (c) 2015 Adorkable. All rights reserved.
7 | //
8 |
9 | import UIKit
10 | import XCTest
11 |
12 | class DorkTiledImageViewTests: XCTestCase {
13 |
14 | override func setUp() {
15 | super.setUp()
16 | // Put setup code here. This method is called before the invocation of each test method in the class.
17 | }
18 |
19 | override func tearDown() {
20 | // Put teardown code here. This method is called after the invocation of each test method in the class.
21 | super.tearDown()
22 | }
23 |
24 | func testExample() {
25 | // This is an example of a functional test case.
26 | XCTAssert(true, "Pass")
27 | }
28 |
29 | func testPerformanceExample() {
30 | // This is an example of a performance test case.
31 | self.measureBlock() {
32 | // Put the code you want to measure the time of here.
33 | }
34 | }
35 |
36 | }
37 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 |
2 | The MIT License (MIT)
3 |
4 | Copyright (c) 2015 Ian Grossberg
5 |
6 | Permission is hereby granted, free of charge, to any person obtaining a copy
7 | of this software and associated documentation files (the "Software"), to deal
8 | in the Software without restriction, including without limitation the rights
9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 | copies of the Software, and to permit persons to whom the Software is
11 | furnished to do so, subject to the following conditions:
12 |
13 | The above copyright notice and this permission notice shall be included in all
14 | copies or substantial portions of the Software.
15 |
16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 | SOFTWARE.
23 |
24 |
25 |
--------------------------------------------------------------------------------
/Example/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" : "29x29",
11 | "scale" : "3x"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "size" : "40x40",
16 | "scale" : "2x"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "size" : "40x40",
21 | "scale" : "3x"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "size" : "60x60",
26 | "scale" : "2x"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "size" : "60x60",
31 | "scale" : "3x"
32 | },
33 | {
34 | "idiom" : "ipad",
35 | "size" : "29x29",
36 | "scale" : "1x"
37 | },
38 | {
39 | "idiom" : "ipad",
40 | "size" : "29x29",
41 | "scale" : "2x"
42 | },
43 | {
44 | "idiom" : "ipad",
45 | "size" : "40x40",
46 | "scale" : "1x"
47 | },
48 | {
49 | "idiom" : "ipad",
50 | "size" : "40x40",
51 | "scale" : "2x"
52 | },
53 | {
54 | "idiom" : "ipad",
55 | "size" : "76x76",
56 | "scale" : "1x"
57 | },
58 | {
59 | "idiom" : "ipad",
60 | "size" : "76x76",
61 | "scale" : "2x"
62 | }
63 | ],
64 | "info" : {
65 | "version" : 1,
66 | "author" : "xcode"
67 | }
68 | }
--------------------------------------------------------------------------------
/Gemfile.lock:
--------------------------------------------------------------------------------
1 | GEM
2 | remote: https://rubygems.org/
3 | specs:
4 | activesupport (4.2.5)
5 | i18n (~> 0.7)
6 | json (~> 1.7, >= 1.7.7)
7 | minitest (~> 5.1)
8 | thread_safe (~> 0.3, >= 0.3.4)
9 | tzinfo (~> 1.1)
10 | claide (0.9.1)
11 | cocoapods (0.39.0)
12 | activesupport (>= 4.0.2)
13 | claide (~> 0.9.1)
14 | cocoapods-core (= 0.39.0)
15 | cocoapods-downloader (~> 0.9.3)
16 | cocoapods-plugins (~> 0.4.2)
17 | cocoapods-search (~> 0.1.0)
18 | cocoapods-stats (~> 0.6.2)
19 | cocoapods-trunk (~> 0.6.4)
20 | cocoapods-try (~> 0.5.1)
21 | colored (~> 1.2)
22 | escape (~> 0.0.4)
23 | molinillo (~> 0.4.0)
24 | nap (~> 1.0)
25 | xcodeproj (~> 0.28.2)
26 | cocoapods-core (0.39.0)
27 | activesupport (>= 4.0.2)
28 | fuzzy_match (~> 2.0.4)
29 | nap (~> 1.0)
30 | cocoapods-downloader (0.9.3)
31 | cocoapods-plugins (0.4.2)
32 | nap
33 | cocoapods-search (0.1.0)
34 | cocoapods-stats (0.6.2)
35 | cocoapods-trunk (0.6.4)
36 | nap (>= 0.8, < 2.0)
37 | netrc (= 0.7.8)
38 | cocoapods-try (0.5.1)
39 | colored (1.2)
40 | escape (0.0.4)
41 | fuzzy_match (2.0.4)
42 | i18n (0.7.0)
43 | json (1.8.3)
44 | minitest (5.8.3)
45 | molinillo (0.4.1)
46 | nap (1.0.0)
47 | netrc (0.7.8)
48 | thread_safe (0.3.5)
49 | tzinfo (1.2.2)
50 | thread_safe (~> 0.1)
51 | xcodeproj (0.28.2)
52 | activesupport (>= 3)
53 | claide (~> 0.9.1)
54 | colored (~> 1.2)
55 |
56 | PLATFORMS
57 | ruby
58 |
59 | DEPENDENCIES
60 | cocoapods
61 |
62 | BUNDLED WITH
63 | 1.11.0
64 |
--------------------------------------------------------------------------------
/Example/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 | 0.1.3
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 | LSRequiresIPhoneOS
24 |
25 | UILaunchStoryboardName
26 | LaunchScreen
27 | UIMainStoryboardFile
28 | Main
29 | UIRequiredDeviceCapabilities
30 |
31 | armv7
32 |
33 | UISupportedInterfaceOrientations
34 |
35 | UIInterfaceOrientationPortrait
36 | UIInterfaceOrientationLandscapeLeft
37 | UIInterfaceOrientationLandscapeRight
38 |
39 | UISupportedInterfaceOrientations~ipad
40 |
41 | UIInterfaceOrientationPortrait
42 | UIInterfaceOrientationPortraitUpsideDown
43 | UIInterfaceOrientationLandscapeLeft
44 | UIInterfaceOrientationLandscapeRight
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/Example/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.swift
3 | // Example
4 | //
5 | // Created by Ian on 5/19/15.
6 | // Copyright (c) 2015 Adorkable. 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: [NSObject: AnyObject]?) -> 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 |
--------------------------------------------------------------------------------
/DorkTiledImageView/DorkTiledImageView.swift:
--------------------------------------------------------------------------------
1 | //
2 | // DorkTiledImageView.swift
3 | // DorkTiledImageView
4 | //
5 | // Created by Ian on 5/19/15.
6 | // Copyright (c) 2015 Adorkable. All rights reserved.
7 | //
8 |
9 | import UIKit
10 |
11 | //@IBDesignable
12 | public class DorkTiledImageView : UIImageView {
13 | internal var originalImage : UIImage?
14 |
15 | public override var image : UIImage? {
16 | set {
17 | self.originalImage = newValue
18 | self.updateFromOriginalImage()
19 | }
20 | get {
21 | return super.image
22 | }
23 | }
24 |
25 | public required init?(coder aDecoder: NSCoder) {
26 | super.init(coder: aDecoder)
27 |
28 | // Funky swapping, init with decoder doesn't call the overridden setter
29 | if super.image != nil
30 | {
31 | self.image = super.image
32 | }
33 | }
34 |
35 | internal func updateFromOriginalImage() {
36 | super.image = self.generateTiledImage(self.originalImage)
37 | }
38 |
39 | internal func generateTiledImage(image : UIImage?) -> UIImage? {
40 | var result : UIImage?
41 | if image != nil
42 | {
43 | UIGraphicsBeginImageContextWithOptions(self.bounds.size, false, 0.0)
44 |
45 | let horizontalCount = self.bounds.size.width / image!.size.width
46 | let verticalCount = self.bounds.size.height / image!.size.height
47 |
48 | for var x = CGFloat(0); x < horizontalCount; x = x + 1
49 | {
50 | for var y = CGFloat(0); y < verticalCount; y = y + 1
51 | {
52 | let drawRect = CGRect(
53 | x: CGFloat(x) * image!.size.width,
54 | y: CGFloat(y) * image!.size.height,
55 | width: image!.size.width,
56 | height: image!.size.height)
57 |
58 | image!.drawInRect(drawRect)
59 | }
60 | }
61 |
62 | result = UIGraphicsGetImageFromCurrentImageContext()
63 |
64 | UIGraphicsEndImageContext()
65 | }
66 |
67 | return result
68 | }
69 |
70 | public override func layoutSubviews() {
71 | super.layoutSubviews()
72 |
73 | self.updateFromOriginalImage()
74 | }
75 | }
76 |
--------------------------------------------------------------------------------
/Example/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 |
--------------------------------------------------------------------------------
/DorkTiledImageView.xcodeproj/xcshareddata/xcschemes/Example.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
32 |
33 |
39 |
40 |
41 |
42 |
43 |
44 |
54 |
56 |
62 |
63 |
64 |
65 |
66 |
67 |
73 |
75 |
81 |
82 |
83 |
84 |
86 |
87 |
90 |
91 |
92 |
--------------------------------------------------------------------------------
/Example/Base.lproj/LaunchScreen.xib:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
20 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/DorkTiledImageView.xcodeproj/xcshareddata/xcschemes/DorkTiledImageView.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
29 |
35 |
36 |
37 |
38 |
39 |
44 |
45 |
47 |
53 |
54 |
55 |
56 |
57 |
63 |
64 |
65 |
66 |
67 |
68 |
78 |
79 |
85 |
86 |
87 |
88 |
89 |
90 |
96 |
97 |
103 |
104 |
105 |
106 |
108 |
109 |
112 |
113 |
114 |
--------------------------------------------------------------------------------
/DorkTiledImageView.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 3C9BE2711B0BECA800CC130F /* DorkTiledImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C9BE2701B0BECA800CC130F /* DorkTiledImageView.h */; settings = {ATTRIBUTES = (Public, ); }; };
11 | 3C9BE2771B0BECA800CC130F /* DorkTiledImageView.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C9BE26B1B0BECA800CC130F /* DorkTiledImageView.framework */; };
12 | 3C9BE27E1B0BECA800CC130F /* DorkTiledImageViewTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C9BE27D1B0BECA800CC130F /* DorkTiledImageViewTests.swift */; };
13 | 3C9BE2901B0BED0700CC130F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C9BE28F1B0BED0700CC130F /* AppDelegate.swift */; };
14 | 3C9BE2921B0BED0700CC130F /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C9BE2911B0BED0700CC130F /* ViewController.swift */; };
15 | 3C9BE2951B0BED0700CC130F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3C9BE2931B0BED0700CC130F /* Main.storyboard */; };
16 | 3C9BE2971B0BED0700CC130F /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3C9BE2961B0BED0700CC130F /* Images.xcassets */; };
17 | 3C9BE29A1B0BED0700CC130F /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3C9BE2981B0BED0700CC130F /* LaunchScreen.xib */; };
18 | 3C9BE2AE1B0BED2B00CC130F /* DorkTiledImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C9BE2AD1B0BED2B00CC130F /* DorkTiledImageView.swift */; };
19 | 3C9BE2AF1B0BF01400CC130F /* DorkTiledImageView.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C9BE26B1B0BECA800CC130F /* DorkTiledImageView.framework */; };
20 | 3C9BE2B11B0BF01900CC130F /* DorkTiledImageView.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3C9BE26B1B0BECA800CC130F /* DorkTiledImageView.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
21 | /* End PBXBuildFile section */
22 |
23 | /* Begin PBXContainerItemProxy section */
24 | 3C9BE2781B0BECA800CC130F /* PBXContainerItemProxy */ = {
25 | isa = PBXContainerItemProxy;
26 | containerPortal = 3C9BE2621B0BECA800CC130F /* Project object */;
27 | proxyType = 1;
28 | remoteGlobalIDString = 3C9BE26A1B0BECA800CC130F;
29 | remoteInfo = DorkTiledImageView;
30 | };
31 | 3C9BE2B21B0BF01900CC130F /* PBXContainerItemProxy */ = {
32 | isa = PBXContainerItemProxy;
33 | containerPortal = 3C9BE2621B0BECA800CC130F /* Project object */;
34 | proxyType = 1;
35 | remoteGlobalIDString = 3C9BE26A1B0BECA800CC130F;
36 | remoteInfo = DorkTiledImageView;
37 | };
38 | /* End PBXContainerItemProxy section */
39 |
40 | /* Begin PBXCopyFilesBuildPhase section */
41 | 3C9BE2B41B0BF01900CC130F /* Embed Frameworks */ = {
42 | isa = PBXCopyFilesBuildPhase;
43 | buildActionMask = 2147483647;
44 | dstPath = "";
45 | dstSubfolderSpec = 10;
46 | files = (
47 | 3C9BE2B11B0BF01900CC130F /* DorkTiledImageView.framework in Embed Frameworks */,
48 | );
49 | name = "Embed Frameworks";
50 | runOnlyForDeploymentPostprocessing = 0;
51 | };
52 | /* End PBXCopyFilesBuildPhase section */
53 |
54 | /* Begin PBXFileReference section */
55 | 3C577B4E1B6804A80030E85A /* DorkTiledImageView.podspec */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DorkTiledImageView.podspec; sourceTree = ""; };
56 | 3C9BE26B1B0BECA800CC130F /* DorkTiledImageView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = DorkTiledImageView.framework; sourceTree = BUILT_PRODUCTS_DIR; };
57 | 3C9BE26F1B0BECA800CC130F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
58 | 3C9BE2701B0BECA800CC130F /* DorkTiledImageView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DorkTiledImageView.h; sourceTree = ""; };
59 | 3C9BE2761B0BECA800CC130F /* DorkTiledImageViewTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DorkTiledImageViewTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
60 | 3C9BE27C1B0BECA800CC130F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
61 | 3C9BE27D1B0BECA800CC130F /* DorkTiledImageViewTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DorkTiledImageViewTests.swift; sourceTree = ""; };
62 | 3C9BE28B1B0BED0700CC130F /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
63 | 3C9BE28E1B0BED0700CC130F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
64 | 3C9BE28F1B0BED0700CC130F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
65 | 3C9BE2911B0BED0700CC130F /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; };
66 | 3C9BE2941B0BED0700CC130F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
67 | 3C9BE2961B0BED0700CC130F /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; };
68 | 3C9BE2991B0BED0700CC130F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
69 | 3C9BE2AD1B0BED2B00CC130F /* DorkTiledImageView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DorkTiledImageView.swift; sourceTree = ""; };
70 | /* End PBXFileReference section */
71 |
72 | /* Begin PBXFrameworksBuildPhase section */
73 | 3C9BE2671B0BECA800CC130F /* Frameworks */ = {
74 | isa = PBXFrameworksBuildPhase;
75 | buildActionMask = 2147483647;
76 | files = (
77 | );
78 | runOnlyForDeploymentPostprocessing = 0;
79 | };
80 | 3C9BE2731B0BECA800CC130F /* Frameworks */ = {
81 | isa = PBXFrameworksBuildPhase;
82 | buildActionMask = 2147483647;
83 | files = (
84 | 3C9BE2771B0BECA800CC130F /* DorkTiledImageView.framework in Frameworks */,
85 | );
86 | runOnlyForDeploymentPostprocessing = 0;
87 | };
88 | 3C9BE2881B0BED0700CC130F /* Frameworks */ = {
89 | isa = PBXFrameworksBuildPhase;
90 | buildActionMask = 2147483647;
91 | files = (
92 | 3C9BE2AF1B0BF01400CC130F /* DorkTiledImageView.framework in Frameworks */,
93 | );
94 | runOnlyForDeploymentPostprocessing = 0;
95 | };
96 | /* End PBXFrameworksBuildPhase section */
97 |
98 | /* Begin PBXGroup section */
99 | 3C9BE2611B0BECA800CC130F = {
100 | isa = PBXGroup;
101 | children = (
102 | 3C577B4E1B6804A80030E85A /* DorkTiledImageView.podspec */,
103 | 3C9BE26D1B0BECA800CC130F /* DorkTiledImageView */,
104 | 3C9BE27A1B0BECA800CC130F /* DorkTiledImageViewTests */,
105 | 3C9BE28C1B0BED0700CC130F /* Example */,
106 | 3C9BE26C1B0BECA800CC130F /* Products */,
107 | );
108 | sourceTree = "";
109 | };
110 | 3C9BE26C1B0BECA800CC130F /* Products */ = {
111 | isa = PBXGroup;
112 | children = (
113 | 3C9BE26B1B0BECA800CC130F /* DorkTiledImageView.framework */,
114 | 3C9BE2761B0BECA800CC130F /* DorkTiledImageViewTests.xctest */,
115 | 3C9BE28B1B0BED0700CC130F /* Example.app */,
116 | );
117 | name = Products;
118 | sourceTree = "";
119 | };
120 | 3C9BE26D1B0BECA800CC130F /* DorkTiledImageView */ = {
121 | isa = PBXGroup;
122 | children = (
123 | 3C9BE2701B0BECA800CC130F /* DorkTiledImageView.h */,
124 | 3C9BE26E1B0BECA800CC130F /* Supporting Files */,
125 | 3C9BE2AD1B0BED2B00CC130F /* DorkTiledImageView.swift */,
126 | );
127 | path = DorkTiledImageView;
128 | sourceTree = "";
129 | };
130 | 3C9BE26E1B0BECA800CC130F /* Supporting Files */ = {
131 | isa = PBXGroup;
132 | children = (
133 | 3C9BE26F1B0BECA800CC130F /* Info.plist */,
134 | );
135 | name = "Supporting Files";
136 | sourceTree = "";
137 | };
138 | 3C9BE27A1B0BECA800CC130F /* DorkTiledImageViewTests */ = {
139 | isa = PBXGroup;
140 | children = (
141 | 3C9BE27D1B0BECA800CC130F /* DorkTiledImageViewTests.swift */,
142 | 3C9BE27B1B0BECA800CC130F /* Supporting Files */,
143 | );
144 | path = DorkTiledImageViewTests;
145 | sourceTree = "";
146 | };
147 | 3C9BE27B1B0BECA800CC130F /* Supporting Files */ = {
148 | isa = PBXGroup;
149 | children = (
150 | 3C9BE27C1B0BECA800CC130F /* Info.plist */,
151 | );
152 | name = "Supporting Files";
153 | sourceTree = "";
154 | };
155 | 3C9BE28C1B0BED0700CC130F /* Example */ = {
156 | isa = PBXGroup;
157 | children = (
158 | 3C9BE28F1B0BED0700CC130F /* AppDelegate.swift */,
159 | 3C9BE2911B0BED0700CC130F /* ViewController.swift */,
160 | 3C9BE2931B0BED0700CC130F /* Main.storyboard */,
161 | 3C9BE2961B0BED0700CC130F /* Images.xcassets */,
162 | 3C9BE2981B0BED0700CC130F /* LaunchScreen.xib */,
163 | 3C9BE28D1B0BED0700CC130F /* Supporting Files */,
164 | );
165 | path = Example;
166 | sourceTree = "";
167 | };
168 | 3C9BE28D1B0BED0700CC130F /* Supporting Files */ = {
169 | isa = PBXGroup;
170 | children = (
171 | 3C9BE28E1B0BED0700CC130F /* Info.plist */,
172 | );
173 | name = "Supporting Files";
174 | sourceTree = "";
175 | };
176 | /* End PBXGroup section */
177 |
178 | /* Begin PBXHeadersBuildPhase section */
179 | 3C9BE2681B0BECA800CC130F /* Headers */ = {
180 | isa = PBXHeadersBuildPhase;
181 | buildActionMask = 2147483647;
182 | files = (
183 | 3C9BE2711B0BECA800CC130F /* DorkTiledImageView.h in Headers */,
184 | );
185 | runOnlyForDeploymentPostprocessing = 0;
186 | };
187 | /* End PBXHeadersBuildPhase section */
188 |
189 | /* Begin PBXNativeTarget section */
190 | 3C9BE26A1B0BECA800CC130F /* DorkTiledImageView */ = {
191 | isa = PBXNativeTarget;
192 | buildConfigurationList = 3C9BE2811B0BECA800CC130F /* Build configuration list for PBXNativeTarget "DorkTiledImageView" */;
193 | buildPhases = (
194 | 3C9BE2661B0BECA800CC130F /* Sources */,
195 | 3C9BE2671B0BECA800CC130F /* Frameworks */,
196 | 3C9BE2681B0BECA800CC130F /* Headers */,
197 | 3C9BE2691B0BECA800CC130F /* Resources */,
198 | );
199 | buildRules = (
200 | );
201 | dependencies = (
202 | );
203 | name = DorkTiledImageView;
204 | productName = DorkTiledImageView;
205 | productReference = 3C9BE26B1B0BECA800CC130F /* DorkTiledImageView.framework */;
206 | productType = "com.apple.product-type.framework";
207 | };
208 | 3C9BE2751B0BECA800CC130F /* DorkTiledImageViewTests */ = {
209 | isa = PBXNativeTarget;
210 | buildConfigurationList = 3C9BE2841B0BECA800CC130F /* Build configuration list for PBXNativeTarget "DorkTiledImageViewTests" */;
211 | buildPhases = (
212 | 3C9BE2721B0BECA800CC130F /* Sources */,
213 | 3C9BE2731B0BECA800CC130F /* Frameworks */,
214 | 3C9BE2741B0BECA800CC130F /* Resources */,
215 | );
216 | buildRules = (
217 | );
218 | dependencies = (
219 | 3C9BE2791B0BECA800CC130F /* PBXTargetDependency */,
220 | );
221 | name = DorkTiledImageViewTests;
222 | productName = DorkTiledImageViewTests;
223 | productReference = 3C9BE2761B0BECA800CC130F /* DorkTiledImageViewTests.xctest */;
224 | productType = "com.apple.product-type.bundle.unit-test";
225 | };
226 | 3C9BE28A1B0BED0700CC130F /* Example */ = {
227 | isa = PBXNativeTarget;
228 | buildConfigurationList = 3C9BE2A71B0BED0700CC130F /* Build configuration list for PBXNativeTarget "Example" */;
229 | buildPhases = (
230 | 3C9BE2871B0BED0700CC130F /* Sources */,
231 | 3C9BE2881B0BED0700CC130F /* Frameworks */,
232 | 3C9BE2891B0BED0700CC130F /* Resources */,
233 | 3C9BE2B41B0BF01900CC130F /* Embed Frameworks */,
234 | );
235 | buildRules = (
236 | );
237 | dependencies = (
238 | 3C9BE2B31B0BF01900CC130F /* PBXTargetDependency */,
239 | );
240 | name = Example;
241 | productName = Example;
242 | productReference = 3C9BE28B1B0BED0700CC130F /* Example.app */;
243 | productType = "com.apple.product-type.application";
244 | };
245 | /* End PBXNativeTarget section */
246 |
247 | /* Begin PBXProject section */
248 | 3C9BE2621B0BECA800CC130F /* Project object */ = {
249 | isa = PBXProject;
250 | attributes = {
251 | LastSwiftMigration = 0700;
252 | LastSwiftUpdateCheck = 0700;
253 | LastUpgradeCheck = 0700;
254 | ORGANIZATIONNAME = Adorkable;
255 | TargetAttributes = {
256 | 3C9BE26A1B0BECA800CC130F = {
257 | CreatedOnToolsVersion = 6.3.1;
258 | };
259 | 3C9BE2751B0BECA800CC130F = {
260 | CreatedOnToolsVersion = 6.3.1;
261 | };
262 | 3C9BE28A1B0BED0700CC130F = {
263 | CreatedOnToolsVersion = 6.3.1;
264 | };
265 | };
266 | };
267 | buildConfigurationList = 3C9BE2651B0BECA800CC130F /* Build configuration list for PBXProject "DorkTiledImageView" */;
268 | compatibilityVersion = "Xcode 3.2";
269 | developmentRegion = English;
270 | hasScannedForEncodings = 0;
271 | knownRegions = (
272 | en,
273 | Base,
274 | );
275 | mainGroup = 3C9BE2611B0BECA800CC130F;
276 | productRefGroup = 3C9BE26C1B0BECA800CC130F /* Products */;
277 | projectDirPath = "";
278 | projectRoot = "";
279 | targets = (
280 | 3C9BE26A1B0BECA800CC130F /* DorkTiledImageView */,
281 | 3C9BE2751B0BECA800CC130F /* DorkTiledImageViewTests */,
282 | 3C9BE28A1B0BED0700CC130F /* Example */,
283 | );
284 | };
285 | /* End PBXProject section */
286 |
287 | /* Begin PBXResourcesBuildPhase section */
288 | 3C9BE2691B0BECA800CC130F /* Resources */ = {
289 | isa = PBXResourcesBuildPhase;
290 | buildActionMask = 2147483647;
291 | files = (
292 | );
293 | runOnlyForDeploymentPostprocessing = 0;
294 | };
295 | 3C9BE2741B0BECA800CC130F /* Resources */ = {
296 | isa = PBXResourcesBuildPhase;
297 | buildActionMask = 2147483647;
298 | files = (
299 | );
300 | runOnlyForDeploymentPostprocessing = 0;
301 | };
302 | 3C9BE2891B0BED0700CC130F /* Resources */ = {
303 | isa = PBXResourcesBuildPhase;
304 | buildActionMask = 2147483647;
305 | files = (
306 | 3C9BE2951B0BED0700CC130F /* Main.storyboard in Resources */,
307 | 3C9BE29A1B0BED0700CC130F /* LaunchScreen.xib in Resources */,
308 | 3C9BE2971B0BED0700CC130F /* Images.xcassets in Resources */,
309 | );
310 | runOnlyForDeploymentPostprocessing = 0;
311 | };
312 | /* End PBXResourcesBuildPhase section */
313 |
314 | /* Begin PBXSourcesBuildPhase section */
315 | 3C9BE2661B0BECA800CC130F /* Sources */ = {
316 | isa = PBXSourcesBuildPhase;
317 | buildActionMask = 2147483647;
318 | files = (
319 | 3C9BE2AE1B0BED2B00CC130F /* DorkTiledImageView.swift in Sources */,
320 | );
321 | runOnlyForDeploymentPostprocessing = 0;
322 | };
323 | 3C9BE2721B0BECA800CC130F /* Sources */ = {
324 | isa = PBXSourcesBuildPhase;
325 | buildActionMask = 2147483647;
326 | files = (
327 | 3C9BE27E1B0BECA800CC130F /* DorkTiledImageViewTests.swift in Sources */,
328 | );
329 | runOnlyForDeploymentPostprocessing = 0;
330 | };
331 | 3C9BE2871B0BED0700CC130F /* Sources */ = {
332 | isa = PBXSourcesBuildPhase;
333 | buildActionMask = 2147483647;
334 | files = (
335 | 3C9BE2921B0BED0700CC130F /* ViewController.swift in Sources */,
336 | 3C9BE2901B0BED0700CC130F /* AppDelegate.swift in Sources */,
337 | );
338 | runOnlyForDeploymentPostprocessing = 0;
339 | };
340 | /* End PBXSourcesBuildPhase section */
341 |
342 | /* Begin PBXTargetDependency section */
343 | 3C9BE2791B0BECA800CC130F /* PBXTargetDependency */ = {
344 | isa = PBXTargetDependency;
345 | target = 3C9BE26A1B0BECA800CC130F /* DorkTiledImageView */;
346 | targetProxy = 3C9BE2781B0BECA800CC130F /* PBXContainerItemProxy */;
347 | };
348 | 3C9BE2B31B0BF01900CC130F /* PBXTargetDependency */ = {
349 | isa = PBXTargetDependency;
350 | target = 3C9BE26A1B0BECA800CC130F /* DorkTiledImageView */;
351 | targetProxy = 3C9BE2B21B0BF01900CC130F /* PBXContainerItemProxy */;
352 | };
353 | /* End PBXTargetDependency section */
354 |
355 | /* Begin PBXVariantGroup section */
356 | 3C9BE2931B0BED0700CC130F /* Main.storyboard */ = {
357 | isa = PBXVariantGroup;
358 | children = (
359 | 3C9BE2941B0BED0700CC130F /* Base */,
360 | );
361 | name = Main.storyboard;
362 | sourceTree = "";
363 | };
364 | 3C9BE2981B0BED0700CC130F /* LaunchScreen.xib */ = {
365 | isa = PBXVariantGroup;
366 | children = (
367 | 3C9BE2991B0BED0700CC130F /* Base */,
368 | );
369 | name = LaunchScreen.xib;
370 | sourceTree = "";
371 | };
372 | /* End PBXVariantGroup section */
373 |
374 | /* Begin XCBuildConfiguration section */
375 | 3C9BE27F1B0BECA800CC130F /* Debug */ = {
376 | isa = XCBuildConfiguration;
377 | buildSettings = {
378 | ALWAYS_SEARCH_USER_PATHS = NO;
379 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
380 | CLANG_CXX_LIBRARY = "libc++";
381 | CLANG_ENABLE_MODULES = YES;
382 | CLANG_ENABLE_OBJC_ARC = YES;
383 | CLANG_WARN_BOOL_CONVERSION = YES;
384 | CLANG_WARN_CONSTANT_CONVERSION = YES;
385 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
386 | CLANG_WARN_EMPTY_BODY = YES;
387 | CLANG_WARN_ENUM_CONVERSION = YES;
388 | CLANG_WARN_INT_CONVERSION = YES;
389 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
390 | CLANG_WARN_UNREACHABLE_CODE = YES;
391 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
392 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
393 | COPY_PHASE_STRIP = NO;
394 | CURRENT_PROJECT_VERSION = 1;
395 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
396 | ENABLE_STRICT_OBJC_MSGSEND = YES;
397 | ENABLE_TESTABILITY = YES;
398 | GCC_C_LANGUAGE_STANDARD = gnu99;
399 | GCC_DYNAMIC_NO_PIC = NO;
400 | GCC_NO_COMMON_BLOCKS = YES;
401 | GCC_OPTIMIZATION_LEVEL = 0;
402 | GCC_PREPROCESSOR_DEFINITIONS = (
403 | "DEBUG=1",
404 | "$(inherited)",
405 | );
406 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
407 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
408 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
409 | GCC_WARN_UNDECLARED_SELECTOR = YES;
410 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
411 | GCC_WARN_UNUSED_FUNCTION = YES;
412 | GCC_WARN_UNUSED_VARIABLE = YES;
413 | IPHONEOS_DEPLOYMENT_TARGET = 8.3;
414 | MTL_ENABLE_DEBUG_INFO = YES;
415 | ONLY_ACTIVE_ARCH = YES;
416 | SDKROOT = iphoneos;
417 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
418 | TARGETED_DEVICE_FAMILY = "1,2";
419 | VERSIONING_SYSTEM = "apple-generic";
420 | VERSION_INFO_PREFIX = "";
421 | };
422 | name = Debug;
423 | };
424 | 3C9BE2801B0BECA800CC130F /* Release */ = {
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 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
445 | ENABLE_NS_ASSERTIONS = NO;
446 | ENABLE_STRICT_OBJC_MSGSEND = YES;
447 | GCC_C_LANGUAGE_STANDARD = gnu99;
448 | GCC_NO_COMMON_BLOCKS = YES;
449 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
450 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
451 | GCC_WARN_UNDECLARED_SELECTOR = YES;
452 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
453 | GCC_WARN_UNUSED_FUNCTION = YES;
454 | GCC_WARN_UNUSED_VARIABLE = YES;
455 | IPHONEOS_DEPLOYMENT_TARGET = 8.3;
456 | MTL_ENABLE_DEBUG_INFO = NO;
457 | SDKROOT = iphoneos;
458 | TARGETED_DEVICE_FAMILY = "1,2";
459 | VALIDATE_PRODUCT = YES;
460 | VERSIONING_SYSTEM = "apple-generic";
461 | VERSION_INFO_PREFIX = "";
462 | };
463 | name = Release;
464 | };
465 | 3C9BE2821B0BECA800CC130F /* Debug */ = {
466 | isa = XCBuildConfiguration;
467 | buildSettings = {
468 | CLANG_ENABLE_MODULES = YES;
469 | DEFINES_MODULE = YES;
470 | DYLIB_COMPATIBILITY_VERSION = 1;
471 | DYLIB_CURRENT_VERSION = 1;
472 | DYLIB_INSTALL_NAME_BASE = "@rpath";
473 | INFOPLIST_FILE = DorkTiledImageView/Info.plist;
474 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
475 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
476 | PRODUCT_BUNDLE_IDENTIFIER = "cc.adorkable.$(PRODUCT_NAME:rfc1034identifier)";
477 | PRODUCT_NAME = "$(TARGET_NAME)";
478 | SKIP_INSTALL = YES;
479 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
480 | };
481 | name = Debug;
482 | };
483 | 3C9BE2831B0BECA800CC130F /* Release */ = {
484 | isa = XCBuildConfiguration;
485 | buildSettings = {
486 | CLANG_ENABLE_MODULES = YES;
487 | DEFINES_MODULE = YES;
488 | DYLIB_COMPATIBILITY_VERSION = 1;
489 | DYLIB_CURRENT_VERSION = 1;
490 | DYLIB_INSTALL_NAME_BASE = "@rpath";
491 | INFOPLIST_FILE = DorkTiledImageView/Info.plist;
492 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
493 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
494 | PRODUCT_BUNDLE_IDENTIFIER = "cc.adorkable.$(PRODUCT_NAME:rfc1034identifier)";
495 | PRODUCT_NAME = "$(TARGET_NAME)";
496 | SKIP_INSTALL = YES;
497 | };
498 | name = Release;
499 | };
500 | 3C9BE2851B0BECA800CC130F /* Debug */ = {
501 | isa = XCBuildConfiguration;
502 | buildSettings = {
503 | FRAMEWORK_SEARCH_PATHS = (
504 | "$(SDKROOT)/Developer/Library/Frameworks",
505 | "$(inherited)",
506 | );
507 | GCC_PREPROCESSOR_DEFINITIONS = (
508 | "DEBUG=1",
509 | "$(inherited)",
510 | );
511 | INFOPLIST_FILE = DorkTiledImageViewTests/Info.plist;
512 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
513 | PRODUCT_BUNDLE_IDENTIFIER = "cc.adorkable.$(PRODUCT_NAME:rfc1034identifier)";
514 | PRODUCT_NAME = "$(TARGET_NAME)";
515 | };
516 | name = Debug;
517 | };
518 | 3C9BE2861B0BECA800CC130F /* Release */ = {
519 | isa = XCBuildConfiguration;
520 | buildSettings = {
521 | FRAMEWORK_SEARCH_PATHS = (
522 | "$(SDKROOT)/Developer/Library/Frameworks",
523 | "$(inherited)",
524 | );
525 | INFOPLIST_FILE = DorkTiledImageViewTests/Info.plist;
526 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
527 | PRODUCT_BUNDLE_IDENTIFIER = "cc.adorkable.$(PRODUCT_NAME:rfc1034identifier)";
528 | PRODUCT_NAME = "$(TARGET_NAME)";
529 | };
530 | name = Release;
531 | };
532 | 3C9BE2A81B0BED0700CC130F /* Debug */ = {
533 | isa = XCBuildConfiguration;
534 | buildSettings = {
535 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
536 | GCC_PREPROCESSOR_DEFINITIONS = (
537 | "DEBUG=1",
538 | "$(inherited)",
539 | );
540 | INFOPLIST_FILE = Example/Info.plist;
541 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
542 | PRODUCT_BUNDLE_IDENTIFIER = "cc.adorkable.DorkTiledImageView.$(PRODUCT_NAME:rfc1034identifier)";
543 | PRODUCT_NAME = "$(TARGET_NAME)";
544 | };
545 | name = Debug;
546 | };
547 | 3C9BE2A91B0BED0700CC130F /* Release */ = {
548 | isa = XCBuildConfiguration;
549 | buildSettings = {
550 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
551 | INFOPLIST_FILE = Example/Info.plist;
552 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
553 | PRODUCT_BUNDLE_IDENTIFIER = "cc.adorkable.DorkTiledImageView.$(PRODUCT_NAME:rfc1034identifier)";
554 | PRODUCT_NAME = "$(TARGET_NAME)";
555 | };
556 | name = Release;
557 | };
558 | /* End XCBuildConfiguration section */
559 |
560 | /* Begin XCConfigurationList section */
561 | 3C9BE2651B0BECA800CC130F /* Build configuration list for PBXProject "DorkTiledImageView" */ = {
562 | isa = XCConfigurationList;
563 | buildConfigurations = (
564 | 3C9BE27F1B0BECA800CC130F /* Debug */,
565 | 3C9BE2801B0BECA800CC130F /* Release */,
566 | );
567 | defaultConfigurationIsVisible = 0;
568 | defaultConfigurationName = Release;
569 | };
570 | 3C9BE2811B0BECA800CC130F /* Build configuration list for PBXNativeTarget "DorkTiledImageView" */ = {
571 | isa = XCConfigurationList;
572 | buildConfigurations = (
573 | 3C9BE2821B0BECA800CC130F /* Debug */,
574 | 3C9BE2831B0BECA800CC130F /* Release */,
575 | );
576 | defaultConfigurationIsVisible = 0;
577 | defaultConfigurationName = Release;
578 | };
579 | 3C9BE2841B0BECA800CC130F /* Build configuration list for PBXNativeTarget "DorkTiledImageViewTests" */ = {
580 | isa = XCConfigurationList;
581 | buildConfigurations = (
582 | 3C9BE2851B0BECA800CC130F /* Debug */,
583 | 3C9BE2861B0BECA800CC130F /* Release */,
584 | );
585 | defaultConfigurationIsVisible = 0;
586 | defaultConfigurationName = Release;
587 | };
588 | 3C9BE2A71B0BED0700CC130F /* Build configuration list for PBXNativeTarget "Example" */ = {
589 | isa = XCConfigurationList;
590 | buildConfigurations = (
591 | 3C9BE2A81B0BED0700CC130F /* Debug */,
592 | 3C9BE2A91B0BED0700CC130F /* Release */,
593 | );
594 | defaultConfigurationIsVisible = 0;
595 | defaultConfigurationName = Release;
596 | };
597 | /* End XCConfigurationList section */
598 | };
599 | rootObject = 3C9BE2621B0BECA800CC130F /* Project object */;
600 | }
601 |
--------------------------------------------------------------------------------