├── logo.png ├── logo@2x.png ├── Demo ├── Podfile ├── Podfile.lock ├── FluentDemo.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── project.pbxproj ├── FluentDemo.xcworkspace │ └── contents.xcworkspacedata └── FluentDemo │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── ViewController.swift │ ├── Info.plist │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ └── AppDelegate.swift ├── Fluent.xcodeproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcshareddata │ └── xcschemes │ │ └── Fluent.xcscheme └── project.pbxproj ├── Fluent ├── Fluent.h ├── Info.plist └── Fluent.swift ├── Fluent.podspec ├── .gitignore ├── LICENSE └── README.md /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/logo.png -------------------------------------------------------------------------------- /logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewcheok/Fluent/HEAD/logo@2x.png -------------------------------------------------------------------------------- /Demo/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '8.0' 2 | 3 | use_frameworks! 4 | pod 'Fluent', :path => '../' 5 | 6 | 7 | -------------------------------------------------------------------------------- /Fluent.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Demo/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Fluent (0.1) 3 | 4 | DEPENDENCIES: 5 | - Fluent (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | Fluent: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | Fluent: eafa114f9ec7a506d3b1c51e0f97f710b23d48ff 13 | 14 | COCOAPODS: 0.38.2 15 | -------------------------------------------------------------------------------- /Demo/FluentDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Demo/FluentDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Fluent/Fluent.h: -------------------------------------------------------------------------------- 1 | // 2 | // Fluent.h 3 | // Fluent 4 | // 5 | // Created by Matthew Cheok on 5/9/15. 6 | // Copyright © 2015 Matthew Cheok. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for Fluent. 12 | FOUNDATION_EXPORT double FluentVersionNumber; 13 | 14 | //! Project version string for Fluent. 15 | FOUNDATION_EXPORT const unsigned char FluentVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /Fluent.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = 'Fluent' 3 | s.version = '0.1.1' 4 | s.ios.deployment_target = '8.0' 5 | s.license = { :type => 'MIT', :file => 'LICENSE' } 6 | s.summary = 'Swift Animations made Easy' 7 | s.homepage = 'https://github.com/matthewcheok/Fluent' 8 | s.author = { 'Matthew Cheok' => 'hello@matthewcheok.com' } 9 | s.requires_arc = true 10 | s.source = { 11 | :git => 'https://github.com/matthewcheok/Fluent.git', 12 | :branch => 'master', 13 | :tag => s.version.to_s 14 | } 15 | s.source_files = 'Fluent/*.swift' 16 | s.requires_arc = true 17 | end 18 | -------------------------------------------------------------------------------- /Demo/FluentDemo/Assets.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 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /Fluent/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 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(CURRENT_PROJECT_VERSION) 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | 5 | ## Build generated 6 | build/ 7 | DerivedData 8 | 9 | ## Various settings 10 | *.pbxuser 11 | !default.pbxuser 12 | *.mode1v3 13 | !default.mode1v3 14 | *.mode2v3 15 | !default.mode2v3 16 | *.perspectivev3 17 | !default.perspectivev3 18 | xcuserdata 19 | 20 | ## Other 21 | *.xccheckout 22 | *.moved-aside 23 | *.xcuserstate 24 | *.xcscmblueprint 25 | 26 | ## Obj-C/Swift specific 27 | *.hmap 28 | *.ipa 29 | 30 | # CocoaPods 31 | # 32 | # We recommend against adding the Pods directory to your .gitignore. However 33 | # you should judge for yourself, the pros and cons are mentioned at: 34 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 35 | Pods/ 36 | 37 | # Carthage 38 | # 39 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 40 | Carthage/Checkouts 41 | 42 | Carthage/Build 43 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013 Matthew Cheok 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /Demo/FluentDemo/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // Fluent 4 | // 5 | // Created by Matthew Cheok on 4/9/15. 6 | // Copyright © 2015 Matthew Cheok. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import Fluent 11 | 12 | class ViewController: UIViewController { 13 | let boxView = UIView(frame: CGRect(x: 0, y: 0, width: 100, height: 100)) 14 | var expanded = false 15 | 16 | func handleTap(tap: UITapGestureRecognizer) { 17 | boxView 18 | .animate(0.5) 19 | .rotate(0.5) 20 | .scale(2) 21 | .backgroundColor(.blueColor()) 22 | .waitThenAnimate(0.5) 23 | .scale(1) 24 | .backgroundColor(.redColor()) 25 | } 26 | 27 | override func viewDidLoad() { 28 | super.viewDidLoad() 29 | // Do any additional setup after loading the view, typically from a nib. 30 | 31 | boxView.backgroundColor = .redColor() 32 | boxView.center = CGPoint(x: view.bounds.width/2, y: view.bounds.height/2) 33 | view.addSubview(boxView) 34 | view.addGestureRecognizer(UITapGestureRecognizer(target: self, action: "handleTap:")) 35 | } 36 | 37 | override func didReceiveMemoryWarning() { 38 | super.didReceiveMemoryWarning() 39 | // Dispose of any resources that can be recreated. 40 | } 41 | 42 | 43 | } 44 | 45 | -------------------------------------------------------------------------------- /Demo/FluentDemo/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 | 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 | 40 | 41 | -------------------------------------------------------------------------------- /Demo/FluentDemo/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 | -------------------------------------------------------------------------------- /Demo/FluentDemo/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // Fluent 4 | // 5 | // Created by Matthew Cheok on 4/9/15. 6 | // Copyright © 2015 Matthew Cheok. 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | Logo 3 |

4 | 5 | Fluent ![License MIT](https://go-shields.herokuapp.com/license-MIT-blue.png) 6 | ====== 7 | 8 | [![Badge w/ Version](https://cocoapod-badges.herokuapp.com/v/Fluent/badge.png)](https://github.com/matthewcheok/Fluent) 9 | [![Badge w/ Platform](https://cocoapod-badges.herokuapp.com/p/Fluent/badge.svg)](https://github.com/matthewcheok/Fluent) 10 | 11 | Swift Animations made Easy 12 | 13 | ## Installation 14 | 15 | - Add the following to your [`Podfile`](http://cocoapods.org/) and run `pod install` 16 | ``` 17 | pod 'Fluent', '~> 0.1' 18 | ``` 19 | - or add the following to your [`Cartfile`](https://github.com/Carthage/Carthage) and run `carthage update` 20 | ``` 21 | github "matthewcheok/Fluent" 22 | ``` 23 | - or clone as a git submodule, 24 | 25 | - or just copy files in the ```Fluent``` folder into your project. 26 | 27 | ## Using Fluent 28 | 29 | Fluent makes writing animations declarative and chainable. 30 | 31 | ``` 32 | boxView 33 | .animate(0.5) 34 | .rotate(0.5) 35 | .scale(2) 36 | .backgroundColor(.blueColor()) 37 | .waitThenAnimate(0.5) 38 | .scale(1) 39 | .backgroundColor(.redColor()) 40 | ``` 41 | 42 | Simply call one of the animation methods, of which only `duration` is required: 43 | 44 | - animate(duration: NSTimeInterval, velocity: CGFloat , damping: CGFloat, options: UIViewAnimationOptions) 45 | - waitThenAnimate(duration: NSTimeInterval, velocity: CGFloat , damping: CGFloat, options: UIViewAnimationOptions) 46 | 47 | All common properties on `UIView` are supported: 48 | 49 | - scale(factor: CGFloat) 50 | - translate(x: CGFloat, y: CGFloat) 51 | - rotate(cycles: CGFloat) 52 | - backgroundColor(color: UIColor) 53 | - alpha(alpha: CGFloat) 54 | - frame(frame: CGRect) 55 | - bounds(bounds: CGRect) 56 | - center(center: CGPoint) 57 | 58 | There are also relative versions of the transforms: 59 | 60 | - scaleBy(factor: CGFloat) 61 | - translateBy(x: CGFloat, y: CGFloat) 62 | - rotateBy(cycles: CGFloat) 63 | 64 | You may not mix absolute and relative transformations in the same animation. 65 | 66 | ### Using transforms 67 | 68 | The order of the transformations are important! 69 | 70 | To reverse the following: 71 | 72 | ``` 73 | boxView 74 | .animate(1) 75 | .translateBy(50, 50) 76 | .rotateBy(0.5) 77 | .scaleBy(2) 78 | .backgroundColor(.blueColor()) 79 | .alpha(0.7) 80 | ``` 81 | 82 | We need to undo the transformations in reverse or get weird results: 83 | 84 | ``` 85 | boxView 86 | .animate(1) 87 | .scaleBy(0.5) 88 | .rotateBy(-0.5) 89 | .translateBy(-50, -50) 90 | .backgroundColor(.redColor()) 91 | ``` 92 | ## License 93 | 94 | Fluent is under the MIT license. 95 | -------------------------------------------------------------------------------- /Demo/FluentDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /Fluent.xcodeproj/xcshareddata/xcschemes/Fluent.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 34 | 35 | 45 | 46 | 52 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 70 | 71 | 72 | 73 | 75 | 76 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /Fluent/Fluent.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Fluent.swift 3 | // Fluent 4 | // 5 | // Created by Matthew Cheok on 4/9/15. 6 | // Copyright © 2015 Matthew Cheok. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | public class Fluent { 12 | public typealias AnimationBlock = () -> Void 13 | 14 | private var animations: [AnimationBlock] = [] 15 | private let duration: NSTimeInterval 16 | private let velocity: CGFloat 17 | private let damping: CGFloat 18 | private let options: UIViewAnimationOptions 19 | private var next: Fluent? 20 | 21 | init(duration: NSTimeInterval, velocity: CGFloat, damping: CGFloat, options: UIViewAnimationOptions) { 22 | self.duration = duration 23 | self.velocity = velocity 24 | self.damping = damping 25 | self.options = options 26 | } 27 | 28 | func performAdditionalAnimations() { 29 | } 30 | 31 | deinit { 32 | 33 | UIView.animateWithDuration(duration, delay: 0, usingSpringWithDamping: 1.0, initialSpringVelocity: 0, options: options, animations: { 34 | [animations, performAdditionalAnimations] in 35 | for animation in animations { 36 | animation() 37 | } 38 | performAdditionalAnimations() 39 | }, completion: { 40 | [next] (finished) in 41 | next 42 | }) 43 | } 44 | } 45 | 46 | public class ViewFluent: Fluent { 47 | private let view: UIView 48 | 49 | enum AffineTransformType { 50 | case None 51 | case Absolute 52 | case Relative 53 | } 54 | private var transformType: AffineTransformType = .None 55 | private var transformMatrix = CGAffineTransformIdentity 56 | private let transformError = "You cannot mix absolute and relative transforms" 57 | 58 | init(view: UIView, duration: NSTimeInterval, velocity: CGFloat, damping: CGFloat, options: UIViewAnimationOptions) { 59 | self.view = view 60 | super.init(duration: duration, velocity: velocity, damping: damping, options: options) 61 | } 62 | 63 | public func scale(factor: CGFloat) -> Self { 64 | precondition(transformType != .Relative, transformError) 65 | transformType = .Absolute 66 | transformMatrix = CGAffineTransformScale(transformMatrix, factor, factor) 67 | return self 68 | } 69 | 70 | public func translate(x: CGFloat, _ y: CGFloat) -> Self { 71 | precondition(transformType != .Relative, transformError) 72 | transformType = .Absolute 73 | transformMatrix = CGAffineTransformTranslate(transformMatrix, x, y) 74 | return self 75 | } 76 | 77 | public func rotate(cycles: CGFloat) -> Self { 78 | precondition(transformType != .Relative, transformError) 79 | transformType = .Absolute 80 | transformMatrix = CGAffineTransformRotate(transformMatrix, cycles * 2 * CGFloat(M_PI_2)) 81 | return self 82 | } 83 | 84 | public func scaleBy(factor: CGFloat) -> Self { 85 | precondition(transformType != .Absolute, transformError) 86 | transformType = .Relative 87 | transformMatrix = CGAffineTransformScale(transformMatrix, factor, factor) 88 | return self 89 | } 90 | 91 | public func translateBy(x: CGFloat, _ y: CGFloat) -> Self { 92 | precondition(transformType != .Absolute, transformError) 93 | transformType = .Relative 94 | transformMatrix = CGAffineTransformTranslate(transformMatrix, x, y) 95 | return self 96 | } 97 | 98 | public func rotateBy(cycles: CGFloat) -> Self { 99 | precondition(transformType != .Absolute, transformError) 100 | transformType = .Relative 101 | transformMatrix = CGAffineTransformRotate(transformMatrix, cycles * 2 * CGFloat(M_PI_2)) 102 | return self 103 | } 104 | 105 | override func performAdditionalAnimations() { 106 | if transformType == .Absolute { 107 | view.transform = transformMatrix 108 | } 109 | else if transformType == .Relative { 110 | view.transform = CGAffineTransformConcat(view.transform, transformMatrix) 111 | } 112 | } 113 | 114 | public func backgroundColor(color: UIColor) -> Self { 115 | animations.append({ 116 | [view] in 117 | view.backgroundColor = color 118 | }) 119 | return self 120 | } 121 | 122 | public func alpha(alpha: CGFloat) -> Self { 123 | animations.append({ 124 | [view] in 125 | view.alpha = alpha 126 | }) 127 | return self 128 | } 129 | 130 | public func frame(frame: CGRect) -> Self { 131 | animations.append({ 132 | [view] in 133 | view.frame = frame 134 | }) 135 | return self 136 | } 137 | 138 | public func bounds(bounds: CGRect) -> Self { 139 | animations.append({ 140 | [view] in 141 | view.bounds = bounds 142 | }) 143 | return self 144 | } 145 | 146 | public func center(center: CGPoint) -> Self { 147 | animations.append({ 148 | [view] in 149 | view.center = center 150 | }) 151 | return self 152 | } 153 | 154 | public func custom(animation: AnimationBlock) -> Self { 155 | animations.append(animation) 156 | return self 157 | } 158 | 159 | public func waitThenAnimate(duration: NSTimeInterval, velocity: CGFloat = 0, damping: CGFloat = 1, options: UIViewAnimationOptions = [.AllowUserInteraction, .BeginFromCurrentState]) -> ViewFluent { 160 | precondition(next == nil, "You have already specified a completion handler") 161 | let after = ViewFluent(view: view, duration: duration, velocity: velocity, damping: damping, options: options) 162 | next = after 163 | return after 164 | } 165 | } 166 | 167 | public extension UIView { 168 | public func animate(duration: NSTimeInterval, velocity: CGFloat = 0, damping: CGFloat = 1, options: UIViewAnimationOptions = [.AllowUserInteraction, .BeginFromCurrentState]) -> ViewFluent { 169 | return ViewFluent(view: self, duration: duration, velocity: velocity, damping: damping, options: options) 170 | } 171 | } 172 | -------------------------------------------------------------------------------- /Fluent.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 9E449CA51B9BB9CA00855EE1 /* Fluent.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E449CA41B9BB9CA00855EE1 /* Fluent.h */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | 9E449CAD1B9BB9F500855EE1 /* Fluent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E449CAC1B9BB9F500855EE1 /* Fluent.swift */; settings = {ASSET_TAGS = (); }; }; 12 | /* End PBXBuildFile section */ 13 | 14 | /* Begin PBXFileReference section */ 15 | 9E449CA11B9BB9CA00855EE1 /* Fluent.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Fluent.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 16 | 9E449CA41B9BB9CA00855EE1 /* Fluent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Fluent.h; sourceTree = ""; }; 17 | 9E449CA61B9BB9CA00855EE1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 18 | 9E449CAC1B9BB9F500855EE1 /* Fluent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Fluent.swift; sourceTree = ""; }; 19 | /* End PBXFileReference section */ 20 | 21 | /* Begin PBXFrameworksBuildPhase section */ 22 | 9E449C9D1B9BB9CA00855EE1 /* Frameworks */ = { 23 | isa = PBXFrameworksBuildPhase; 24 | buildActionMask = 2147483647; 25 | files = ( 26 | ); 27 | runOnlyForDeploymentPostprocessing = 0; 28 | }; 29 | /* End PBXFrameworksBuildPhase section */ 30 | 31 | /* Begin PBXGroup section */ 32 | 9E449C971B9BB9CA00855EE1 = { 33 | isa = PBXGroup; 34 | children = ( 35 | 9E449CA31B9BB9CA00855EE1 /* Fluent */, 36 | 9E449CA21B9BB9CA00855EE1 /* Products */, 37 | ); 38 | sourceTree = ""; 39 | }; 40 | 9E449CA21B9BB9CA00855EE1 /* Products */ = { 41 | isa = PBXGroup; 42 | children = ( 43 | 9E449CA11B9BB9CA00855EE1 /* Fluent.framework */, 44 | ); 45 | name = Products; 46 | sourceTree = ""; 47 | }; 48 | 9E449CA31B9BB9CA00855EE1 /* Fluent */ = { 49 | isa = PBXGroup; 50 | children = ( 51 | 9E449CAC1B9BB9F500855EE1 /* Fluent.swift */, 52 | 9E449CA41B9BB9CA00855EE1 /* Fluent.h */, 53 | 9E449CA61B9BB9CA00855EE1 /* Info.plist */, 54 | ); 55 | path = Fluent; 56 | sourceTree = ""; 57 | }; 58 | /* End PBXGroup section */ 59 | 60 | /* Begin PBXHeadersBuildPhase section */ 61 | 9E449C9E1B9BB9CA00855EE1 /* Headers */ = { 62 | isa = PBXHeadersBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | 9E449CA51B9BB9CA00855EE1 /* Fluent.h in Headers */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | /* End PBXHeadersBuildPhase section */ 70 | 71 | /* Begin PBXNativeTarget section */ 72 | 9E449CA01B9BB9CA00855EE1 /* Fluent */ = { 73 | isa = PBXNativeTarget; 74 | buildConfigurationList = 9E449CA91B9BB9CA00855EE1 /* Build configuration list for PBXNativeTarget "Fluent" */; 75 | buildPhases = ( 76 | 9E449C9C1B9BB9CA00855EE1 /* Sources */, 77 | 9E449C9D1B9BB9CA00855EE1 /* Frameworks */, 78 | 9E449C9E1B9BB9CA00855EE1 /* Headers */, 79 | 9E449C9F1B9BB9CA00855EE1 /* Resources */, 80 | ); 81 | buildRules = ( 82 | ); 83 | dependencies = ( 84 | ); 85 | name = Fluent; 86 | productName = Fluent; 87 | productReference = 9E449CA11B9BB9CA00855EE1 /* Fluent.framework */; 88 | productType = "com.apple.product-type.framework"; 89 | }; 90 | /* End PBXNativeTarget section */ 91 | 92 | /* Begin PBXProject section */ 93 | 9E449C981B9BB9CA00855EE1 /* Project object */ = { 94 | isa = PBXProject; 95 | attributes = { 96 | LastSwiftUpdateCheck = 0700; 97 | LastUpgradeCheck = 0700; 98 | ORGANIZATIONNAME = "Matthew Cheok"; 99 | TargetAttributes = { 100 | 9E449CA01B9BB9CA00855EE1 = { 101 | CreatedOnToolsVersion = 7.0; 102 | }; 103 | }; 104 | }; 105 | buildConfigurationList = 9E449C9B1B9BB9CA00855EE1 /* Build configuration list for PBXProject "Fluent" */; 106 | compatibilityVersion = "Xcode 3.2"; 107 | developmentRegion = English; 108 | hasScannedForEncodings = 0; 109 | knownRegions = ( 110 | en, 111 | ); 112 | mainGroup = 9E449C971B9BB9CA00855EE1; 113 | productRefGroup = 9E449CA21B9BB9CA00855EE1 /* Products */; 114 | projectDirPath = ""; 115 | projectRoot = ""; 116 | targets = ( 117 | 9E449CA01B9BB9CA00855EE1 /* Fluent */, 118 | ); 119 | }; 120 | /* End PBXProject section */ 121 | 122 | /* Begin PBXResourcesBuildPhase section */ 123 | 9E449C9F1B9BB9CA00855EE1 /* Resources */ = { 124 | isa = PBXResourcesBuildPhase; 125 | buildActionMask = 2147483647; 126 | files = ( 127 | ); 128 | runOnlyForDeploymentPostprocessing = 0; 129 | }; 130 | /* End PBXResourcesBuildPhase section */ 131 | 132 | /* Begin PBXSourcesBuildPhase section */ 133 | 9E449C9C1B9BB9CA00855EE1 /* Sources */ = { 134 | isa = PBXSourcesBuildPhase; 135 | buildActionMask = 2147483647; 136 | files = ( 137 | 9E449CAD1B9BB9F500855EE1 /* Fluent.swift in Sources */, 138 | ); 139 | runOnlyForDeploymentPostprocessing = 0; 140 | }; 141 | /* End PBXSourcesBuildPhase section */ 142 | 143 | /* Begin XCBuildConfiguration section */ 144 | 9E449CA71B9BB9CA00855EE1 /* Debug */ = { 145 | isa = XCBuildConfiguration; 146 | buildSettings = { 147 | ALWAYS_SEARCH_USER_PATHS = NO; 148 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 149 | CLANG_CXX_LIBRARY = "libc++"; 150 | CLANG_ENABLE_MODULES = YES; 151 | CLANG_ENABLE_OBJC_ARC = YES; 152 | CLANG_WARN_BOOL_CONVERSION = YES; 153 | CLANG_WARN_CONSTANT_CONVERSION = YES; 154 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 155 | CLANG_WARN_EMPTY_BODY = YES; 156 | CLANG_WARN_ENUM_CONVERSION = YES; 157 | CLANG_WARN_INT_CONVERSION = YES; 158 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 159 | CLANG_WARN_UNREACHABLE_CODE = YES; 160 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 161 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 162 | COPY_PHASE_STRIP = NO; 163 | CURRENT_PROJECT_VERSION = 1; 164 | DEBUG_INFORMATION_FORMAT = dwarf; 165 | ENABLE_STRICT_OBJC_MSGSEND = YES; 166 | ENABLE_TESTABILITY = YES; 167 | GCC_C_LANGUAGE_STANDARD = gnu99; 168 | GCC_DYNAMIC_NO_PIC = NO; 169 | GCC_NO_COMMON_BLOCKS = YES; 170 | GCC_OPTIMIZATION_LEVEL = 0; 171 | GCC_PREPROCESSOR_DEFINITIONS = ( 172 | "DEBUG=1", 173 | "$(inherited)", 174 | ); 175 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 176 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 177 | GCC_WARN_UNDECLARED_SELECTOR = YES; 178 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 179 | GCC_WARN_UNUSED_FUNCTION = YES; 180 | GCC_WARN_UNUSED_VARIABLE = YES; 181 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 182 | MTL_ENABLE_DEBUG_INFO = YES; 183 | ONLY_ACTIVE_ARCH = YES; 184 | SDKROOT = iphoneos; 185 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 186 | TARGETED_DEVICE_FAMILY = "1,2"; 187 | VERSIONING_SYSTEM = "apple-generic"; 188 | VERSION_INFO_PREFIX = ""; 189 | }; 190 | name = Debug; 191 | }; 192 | 9E449CA81B9BB9CA00855EE1 /* Release */ = { 193 | isa = XCBuildConfiguration; 194 | buildSettings = { 195 | ALWAYS_SEARCH_USER_PATHS = NO; 196 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 197 | CLANG_CXX_LIBRARY = "libc++"; 198 | CLANG_ENABLE_MODULES = YES; 199 | CLANG_ENABLE_OBJC_ARC = YES; 200 | CLANG_WARN_BOOL_CONVERSION = YES; 201 | CLANG_WARN_CONSTANT_CONVERSION = YES; 202 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 203 | CLANG_WARN_EMPTY_BODY = YES; 204 | CLANG_WARN_ENUM_CONVERSION = YES; 205 | CLANG_WARN_INT_CONVERSION = YES; 206 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 207 | CLANG_WARN_UNREACHABLE_CODE = YES; 208 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 209 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 210 | COPY_PHASE_STRIP = NO; 211 | CURRENT_PROJECT_VERSION = 1; 212 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 213 | ENABLE_NS_ASSERTIONS = NO; 214 | ENABLE_STRICT_OBJC_MSGSEND = YES; 215 | GCC_C_LANGUAGE_STANDARD = gnu99; 216 | GCC_NO_COMMON_BLOCKS = YES; 217 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 218 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 219 | GCC_WARN_UNDECLARED_SELECTOR = YES; 220 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 221 | GCC_WARN_UNUSED_FUNCTION = YES; 222 | GCC_WARN_UNUSED_VARIABLE = YES; 223 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 224 | MTL_ENABLE_DEBUG_INFO = NO; 225 | SDKROOT = iphoneos; 226 | TARGETED_DEVICE_FAMILY = "1,2"; 227 | VALIDATE_PRODUCT = YES; 228 | VERSIONING_SYSTEM = "apple-generic"; 229 | VERSION_INFO_PREFIX = ""; 230 | }; 231 | name = Release; 232 | }; 233 | 9E449CAA1B9BB9CA00855EE1 /* Debug */ = { 234 | isa = XCBuildConfiguration; 235 | buildSettings = { 236 | CLANG_ENABLE_MODULES = YES; 237 | DEFINES_MODULE = YES; 238 | DYLIB_COMPATIBILITY_VERSION = 1; 239 | DYLIB_CURRENT_VERSION = 1; 240 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 241 | INFOPLIST_FILE = Fluent/Info.plist; 242 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 243 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 244 | PRODUCT_BUNDLE_IDENTIFIER = com.matthewcheok.Fluent; 245 | PRODUCT_NAME = "$(TARGET_NAME)"; 246 | SKIP_INSTALL = YES; 247 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 248 | }; 249 | name = Debug; 250 | }; 251 | 9E449CAB1B9BB9CA00855EE1 /* Release */ = { 252 | isa = XCBuildConfiguration; 253 | buildSettings = { 254 | CLANG_ENABLE_MODULES = YES; 255 | DEFINES_MODULE = YES; 256 | DYLIB_COMPATIBILITY_VERSION = 1; 257 | DYLIB_CURRENT_VERSION = 1; 258 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 259 | INFOPLIST_FILE = Fluent/Info.plist; 260 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 261 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 262 | PRODUCT_BUNDLE_IDENTIFIER = com.matthewcheok.Fluent; 263 | PRODUCT_NAME = "$(TARGET_NAME)"; 264 | SKIP_INSTALL = YES; 265 | }; 266 | name = Release; 267 | }; 268 | /* End XCBuildConfiguration section */ 269 | 270 | /* Begin XCConfigurationList section */ 271 | 9E449C9B1B9BB9CA00855EE1 /* Build configuration list for PBXProject "Fluent" */ = { 272 | isa = XCConfigurationList; 273 | buildConfigurations = ( 274 | 9E449CA71B9BB9CA00855EE1 /* Debug */, 275 | 9E449CA81B9BB9CA00855EE1 /* Release */, 276 | ); 277 | defaultConfigurationIsVisible = 0; 278 | defaultConfigurationName = Release; 279 | }; 280 | 9E449CA91B9BB9CA00855EE1 /* Build configuration list for PBXNativeTarget "Fluent" */ = { 281 | isa = XCConfigurationList; 282 | buildConfigurations = ( 283 | 9E449CAA1B9BB9CA00855EE1 /* Debug */, 284 | 9E449CAB1B9BB9CA00855EE1 /* Release */, 285 | ); 286 | defaultConfigurationIsVisible = 0; 287 | defaultConfigurationName = Release; 288 | }; 289 | /* End XCConfigurationList section */ 290 | }; 291 | rootObject = 9E449C981B9BB9CA00855EE1 /* Project object */; 292 | } 293 | -------------------------------------------------------------------------------- /Demo/FluentDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 9ECE33D31B9AB6C2009E67D6 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ECE33D21B9AB6C2009E67D6 /* AppDelegate.swift */; }; 11 | 9ECE33D51B9AB6C2009E67D6 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ECE33D41B9AB6C2009E67D6 /* ViewController.swift */; }; 12 | 9ECE33D81B9AB6C2009E67D6 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9ECE33D61B9AB6C2009E67D6 /* Main.storyboard */; }; 13 | 9ECE33DA1B9AB6C2009E67D6 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9ECE33D91B9AB6C2009E67D6 /* Assets.xcassets */; }; 14 | 9ECE33DD1B9AB6C2009E67D6 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9ECE33DB1B9AB6C2009E67D6 /* LaunchScreen.storyboard */; }; 15 | A4074E5BD4FB53FEEC6AB10B /* Pods.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18CF160C817BF781333364F9 /* Pods.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXFileReference section */ 19 | 18CF160C817BF781333364F9 /* Pods.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 20 | 3F0372E78B2BBF2CAA9B6A51 /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = ""; }; 21 | 6AD4820F324726D8925E76BE /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = ""; }; 22 | 9ECE33CF1B9AB6C2009E67D6 /* FluentDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FluentDemo.app; sourceTree = BUILT_PRODUCTS_DIR; }; 23 | 9ECE33D21B9AB6C2009E67D6 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 24 | 9ECE33D41B9AB6C2009E67D6 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 25 | 9ECE33D71B9AB6C2009E67D6 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 26 | 9ECE33D91B9AB6C2009E67D6 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 27 | 9ECE33DC1B9AB6C2009E67D6 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 28 | 9ECE33DE1B9AB6C2009E67D6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 29 | /* End PBXFileReference section */ 30 | 31 | /* Begin PBXFrameworksBuildPhase section */ 32 | 9ECE33CC1B9AB6C2009E67D6 /* Frameworks */ = { 33 | isa = PBXFrameworksBuildPhase; 34 | buildActionMask = 2147483647; 35 | files = ( 36 | A4074E5BD4FB53FEEC6AB10B /* Pods.framework in Frameworks */, 37 | ); 38 | runOnlyForDeploymentPostprocessing = 0; 39 | }; 40 | /* End PBXFrameworksBuildPhase section */ 41 | 42 | /* Begin PBXGroup section */ 43 | 96A0ACFEF6F7D7BB1EA11AB2 /* Pods */ = { 44 | isa = PBXGroup; 45 | children = ( 46 | 6AD4820F324726D8925E76BE /* Pods.debug.xcconfig */, 47 | 3F0372E78B2BBF2CAA9B6A51 /* Pods.release.xcconfig */, 48 | ); 49 | name = Pods; 50 | sourceTree = ""; 51 | }; 52 | 9ECE33C61B9AB6C2009E67D6 = { 53 | isa = PBXGroup; 54 | children = ( 55 | 9ECE33D11B9AB6C2009E67D6 /* FluentDemo */, 56 | 9ECE33D01B9AB6C2009E67D6 /* Products */, 57 | 96A0ACFEF6F7D7BB1EA11AB2 /* Pods */, 58 | F77F1076F1AC89701F7B758A /* Frameworks */, 59 | ); 60 | sourceTree = ""; 61 | }; 62 | 9ECE33D01B9AB6C2009E67D6 /* Products */ = { 63 | isa = PBXGroup; 64 | children = ( 65 | 9ECE33CF1B9AB6C2009E67D6 /* FluentDemo.app */, 66 | ); 67 | name = Products; 68 | sourceTree = ""; 69 | }; 70 | 9ECE33D11B9AB6C2009E67D6 /* FluentDemo */ = { 71 | isa = PBXGroup; 72 | children = ( 73 | 9ECE33D21B9AB6C2009E67D6 /* AppDelegate.swift */, 74 | 9ECE33D41B9AB6C2009E67D6 /* ViewController.swift */, 75 | 9ECE33D61B9AB6C2009E67D6 /* Main.storyboard */, 76 | 9ECE33D91B9AB6C2009E67D6 /* Assets.xcassets */, 77 | 9ECE33DB1B9AB6C2009E67D6 /* LaunchScreen.storyboard */, 78 | 9ECE33DE1B9AB6C2009E67D6 /* Info.plist */, 79 | ); 80 | path = FluentDemo; 81 | sourceTree = ""; 82 | }; 83 | F77F1076F1AC89701F7B758A /* Frameworks */ = { 84 | isa = PBXGroup; 85 | children = ( 86 | 18CF160C817BF781333364F9 /* Pods.framework */, 87 | ); 88 | name = Frameworks; 89 | sourceTree = ""; 90 | }; 91 | /* End PBXGroup section */ 92 | 93 | /* Begin PBXNativeTarget section */ 94 | 9ECE33CE1B9AB6C2009E67D6 /* FluentDemo */ = { 95 | isa = PBXNativeTarget; 96 | buildConfigurationList = 9ECE33E11B9AB6C2009E67D6 /* Build configuration list for PBXNativeTarget "FluentDemo" */; 97 | buildPhases = ( 98 | 3E6F881FCED6BFD521A27E19 /* Check Pods Manifest.lock */, 99 | 9ECE33CB1B9AB6C2009E67D6 /* Sources */, 100 | 9ECE33CC1B9AB6C2009E67D6 /* Frameworks */, 101 | 9ECE33CD1B9AB6C2009E67D6 /* Resources */, 102 | FBB3402A6EDCB5E63CFFB1B5 /* Embed Pods Frameworks */, 103 | B5831CB4BECDF44027D4BDFE /* Copy Pods Resources */, 104 | ); 105 | buildRules = ( 106 | ); 107 | dependencies = ( 108 | ); 109 | name = FluentDemo; 110 | productName = Fluent; 111 | productReference = 9ECE33CF1B9AB6C2009E67D6 /* FluentDemo.app */; 112 | productType = "com.apple.product-type.application"; 113 | }; 114 | /* End PBXNativeTarget section */ 115 | 116 | /* Begin PBXProject section */ 117 | 9ECE33C71B9AB6C2009E67D6 /* Project object */ = { 118 | isa = PBXProject; 119 | attributes = { 120 | LastUpgradeCheck = 0700; 121 | ORGANIZATIONNAME = "Matthew Cheok"; 122 | TargetAttributes = { 123 | 9ECE33CE1B9AB6C2009E67D6 = { 124 | CreatedOnToolsVersion = 7.0; 125 | }; 126 | }; 127 | }; 128 | buildConfigurationList = 9ECE33CA1B9AB6C2009E67D6 /* Build configuration list for PBXProject "FluentDemo" */; 129 | compatibilityVersion = "Xcode 3.2"; 130 | developmentRegion = English; 131 | hasScannedForEncodings = 0; 132 | knownRegions = ( 133 | en, 134 | Base, 135 | ); 136 | mainGroup = 9ECE33C61B9AB6C2009E67D6; 137 | productRefGroup = 9ECE33D01B9AB6C2009E67D6 /* Products */; 138 | projectDirPath = ""; 139 | projectRoot = ""; 140 | targets = ( 141 | 9ECE33CE1B9AB6C2009E67D6 /* FluentDemo */, 142 | ); 143 | }; 144 | /* End PBXProject section */ 145 | 146 | /* Begin PBXResourcesBuildPhase section */ 147 | 9ECE33CD1B9AB6C2009E67D6 /* Resources */ = { 148 | isa = PBXResourcesBuildPhase; 149 | buildActionMask = 2147483647; 150 | files = ( 151 | 9ECE33DD1B9AB6C2009E67D6 /* LaunchScreen.storyboard in Resources */, 152 | 9ECE33DA1B9AB6C2009E67D6 /* Assets.xcassets in Resources */, 153 | 9ECE33D81B9AB6C2009E67D6 /* Main.storyboard in Resources */, 154 | ); 155 | runOnlyForDeploymentPostprocessing = 0; 156 | }; 157 | /* End PBXResourcesBuildPhase section */ 158 | 159 | /* Begin PBXShellScriptBuildPhase section */ 160 | 3E6F881FCED6BFD521A27E19 /* Check Pods Manifest.lock */ = { 161 | isa = PBXShellScriptBuildPhase; 162 | buildActionMask = 2147483647; 163 | files = ( 164 | ); 165 | inputPaths = ( 166 | ); 167 | name = "Check Pods Manifest.lock"; 168 | outputPaths = ( 169 | ); 170 | runOnlyForDeploymentPostprocessing = 0; 171 | shellPath = /bin/sh; 172 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 173 | showEnvVarsInLog = 0; 174 | }; 175 | B5831CB4BECDF44027D4BDFE /* Copy Pods Resources */ = { 176 | isa = PBXShellScriptBuildPhase; 177 | buildActionMask = 2147483647; 178 | files = ( 179 | ); 180 | inputPaths = ( 181 | ); 182 | name = "Copy Pods Resources"; 183 | outputPaths = ( 184 | ); 185 | runOnlyForDeploymentPostprocessing = 0; 186 | shellPath = /bin/sh; 187 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-resources.sh\"\n"; 188 | showEnvVarsInLog = 0; 189 | }; 190 | FBB3402A6EDCB5E63CFFB1B5 /* Embed Pods Frameworks */ = { 191 | isa = PBXShellScriptBuildPhase; 192 | buildActionMask = 2147483647; 193 | files = ( 194 | ); 195 | inputPaths = ( 196 | ); 197 | name = "Embed Pods Frameworks"; 198 | outputPaths = ( 199 | ); 200 | runOnlyForDeploymentPostprocessing = 0; 201 | shellPath = /bin/sh; 202 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-frameworks.sh\"\n"; 203 | showEnvVarsInLog = 0; 204 | }; 205 | /* End PBXShellScriptBuildPhase section */ 206 | 207 | /* Begin PBXSourcesBuildPhase section */ 208 | 9ECE33CB1B9AB6C2009E67D6 /* Sources */ = { 209 | isa = PBXSourcesBuildPhase; 210 | buildActionMask = 2147483647; 211 | files = ( 212 | 9ECE33D51B9AB6C2009E67D6 /* ViewController.swift in Sources */, 213 | 9ECE33D31B9AB6C2009E67D6 /* AppDelegate.swift in Sources */, 214 | ); 215 | runOnlyForDeploymentPostprocessing = 0; 216 | }; 217 | /* End PBXSourcesBuildPhase section */ 218 | 219 | /* Begin PBXVariantGroup section */ 220 | 9ECE33D61B9AB6C2009E67D6 /* Main.storyboard */ = { 221 | isa = PBXVariantGroup; 222 | children = ( 223 | 9ECE33D71B9AB6C2009E67D6 /* Base */, 224 | ); 225 | name = Main.storyboard; 226 | sourceTree = ""; 227 | }; 228 | 9ECE33DB1B9AB6C2009E67D6 /* LaunchScreen.storyboard */ = { 229 | isa = PBXVariantGroup; 230 | children = ( 231 | 9ECE33DC1B9AB6C2009E67D6 /* Base */, 232 | ); 233 | name = LaunchScreen.storyboard; 234 | sourceTree = ""; 235 | }; 236 | /* End PBXVariantGroup section */ 237 | 238 | /* Begin XCBuildConfiguration section */ 239 | 9ECE33DF1B9AB6C2009E67D6 /* Debug */ = { 240 | isa = XCBuildConfiguration; 241 | buildSettings = { 242 | ALWAYS_SEARCH_USER_PATHS = NO; 243 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 244 | CLANG_CXX_LIBRARY = "libc++"; 245 | CLANG_ENABLE_MODULES = YES; 246 | CLANG_ENABLE_OBJC_ARC = YES; 247 | CLANG_WARN_BOOL_CONVERSION = YES; 248 | CLANG_WARN_CONSTANT_CONVERSION = YES; 249 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 250 | CLANG_WARN_EMPTY_BODY = YES; 251 | CLANG_WARN_ENUM_CONVERSION = YES; 252 | CLANG_WARN_INT_CONVERSION = YES; 253 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 254 | CLANG_WARN_UNREACHABLE_CODE = YES; 255 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 256 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 257 | COPY_PHASE_STRIP = NO; 258 | DEBUG_INFORMATION_FORMAT = dwarf; 259 | ENABLE_STRICT_OBJC_MSGSEND = YES; 260 | ENABLE_TESTABILITY = YES; 261 | GCC_C_LANGUAGE_STANDARD = gnu99; 262 | GCC_DYNAMIC_NO_PIC = NO; 263 | GCC_NO_COMMON_BLOCKS = YES; 264 | GCC_OPTIMIZATION_LEVEL = 0; 265 | GCC_PREPROCESSOR_DEFINITIONS = ( 266 | "DEBUG=1", 267 | "$(inherited)", 268 | ); 269 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 270 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 271 | GCC_WARN_UNDECLARED_SELECTOR = YES; 272 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 273 | GCC_WARN_UNUSED_FUNCTION = YES; 274 | GCC_WARN_UNUSED_VARIABLE = YES; 275 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 276 | MTL_ENABLE_DEBUG_INFO = YES; 277 | ONLY_ACTIVE_ARCH = YES; 278 | SDKROOT = iphoneos; 279 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 280 | }; 281 | name = Debug; 282 | }; 283 | 9ECE33E01B9AB6C2009E67D6 /* Release */ = { 284 | isa = XCBuildConfiguration; 285 | buildSettings = { 286 | ALWAYS_SEARCH_USER_PATHS = NO; 287 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 288 | CLANG_CXX_LIBRARY = "libc++"; 289 | CLANG_ENABLE_MODULES = YES; 290 | CLANG_ENABLE_OBJC_ARC = YES; 291 | CLANG_WARN_BOOL_CONVERSION = YES; 292 | CLANG_WARN_CONSTANT_CONVERSION = YES; 293 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 294 | CLANG_WARN_EMPTY_BODY = YES; 295 | CLANG_WARN_ENUM_CONVERSION = YES; 296 | CLANG_WARN_INT_CONVERSION = YES; 297 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 298 | CLANG_WARN_UNREACHABLE_CODE = YES; 299 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 300 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 301 | COPY_PHASE_STRIP = NO; 302 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 303 | ENABLE_NS_ASSERTIONS = NO; 304 | ENABLE_STRICT_OBJC_MSGSEND = YES; 305 | GCC_C_LANGUAGE_STANDARD = gnu99; 306 | GCC_NO_COMMON_BLOCKS = YES; 307 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 308 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 309 | GCC_WARN_UNDECLARED_SELECTOR = YES; 310 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 311 | GCC_WARN_UNUSED_FUNCTION = YES; 312 | GCC_WARN_UNUSED_VARIABLE = YES; 313 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 314 | MTL_ENABLE_DEBUG_INFO = NO; 315 | SDKROOT = iphoneos; 316 | VALIDATE_PRODUCT = YES; 317 | }; 318 | name = Release; 319 | }; 320 | 9ECE33E21B9AB6C2009E67D6 /* Debug */ = { 321 | isa = XCBuildConfiguration; 322 | baseConfigurationReference = 6AD4820F324726D8925E76BE /* Pods.debug.xcconfig */; 323 | buildSettings = { 324 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 325 | INFOPLIST_FILE = "$(SRCROOT)/FluentDemo/Info.plist"; 326 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 327 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 328 | PRODUCT_BUNDLE_IDENTIFIER = com.matthewcheok.Fluent; 329 | PRODUCT_NAME = FluentDemo; 330 | }; 331 | name = Debug; 332 | }; 333 | 9ECE33E31B9AB6C2009E67D6 /* Release */ = { 334 | isa = XCBuildConfiguration; 335 | baseConfigurationReference = 3F0372E78B2BBF2CAA9B6A51 /* Pods.release.xcconfig */; 336 | buildSettings = { 337 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 338 | INFOPLIST_FILE = "$(SRCROOT)/FluentDemo/Info.plist"; 339 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 340 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 341 | PRODUCT_BUNDLE_IDENTIFIER = com.matthewcheok.Fluent; 342 | PRODUCT_NAME = FluentDemo; 343 | }; 344 | name = Release; 345 | }; 346 | /* End XCBuildConfiguration section */ 347 | 348 | /* Begin XCConfigurationList section */ 349 | 9ECE33CA1B9AB6C2009E67D6 /* Build configuration list for PBXProject "FluentDemo" */ = { 350 | isa = XCConfigurationList; 351 | buildConfigurations = ( 352 | 9ECE33DF1B9AB6C2009E67D6 /* Debug */, 353 | 9ECE33E01B9AB6C2009E67D6 /* Release */, 354 | ); 355 | defaultConfigurationIsVisible = 0; 356 | defaultConfigurationName = Release; 357 | }; 358 | 9ECE33E11B9AB6C2009E67D6 /* Build configuration list for PBXNativeTarget "FluentDemo" */ = { 359 | isa = XCConfigurationList; 360 | buildConfigurations = ( 361 | 9ECE33E21B9AB6C2009E67D6 /* Debug */, 362 | 9ECE33E31B9AB6C2009E67D6 /* Release */, 363 | ); 364 | defaultConfigurationIsVisible = 0; 365 | defaultConfigurationName = Release; 366 | }; 367 | /* End XCConfigurationList section */ 368 | }; 369 | rootObject = 9ECE33C71B9AB6C2009E67D6 /* Project object */; 370 | } 371 | --------------------------------------------------------------------------------