├── SAWaveToastSample ├── Pods │ ├── Target Support Files │ │ ├── Pods-SAWaveToast │ │ │ ├── Pods-SAWaveToast.xcconfig │ │ │ ├── Pods-SAWaveToast-prefix.pch │ │ │ ├── Pods-SAWaveToast.modulemap │ │ │ ├── Pods-SAWaveToast-dummy.m │ │ │ ├── Pods-SAWaveToast-umbrella.h │ │ │ ├── Pods-SAWaveToast-Private.xcconfig │ │ │ └── Info.plist │ │ └── Pods │ │ │ ├── Pods.modulemap │ │ │ ├── Pods-dummy.m │ │ │ ├── Pods-umbrella.h │ │ │ ├── Pods-environment.h │ │ │ ├── Pods.debug.xcconfig │ │ │ ├── Pods.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-acknowledgements.markdown │ │ │ ├── Pods-acknowledgements.plist │ │ │ ├── Pods-frameworks.sh │ │ │ └── Pods-resources.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── SAWaveToast.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── Podfile ├── SAWaveToastSample.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── project.pbxproj ├── Podfile.lock ├── SAWaveToastSample.xcworkspace │ └── contents.xcworkspacedata ├── SAWaveToastSample │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── ViewController.swift │ ├── Info.plist │ ├── AppDelegate.swift │ └── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.xib └── SAWaveToastSampleTests │ ├── Info.plist │ └── SAWaveToastSampleTests.swift ├── SampleImage └── sample.gif ├── .travis.yml ├── .gitignore ├── SAWaveToast.podspec ├── LICENSE ├── README.md └── SAWaveToast ├── SAWaveView.swift └── SAWaveToast.swift /SAWaveToastSample/Pods/Target Support Files/Pods-SAWaveToast/Pods-SAWaveToast.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SAWaveToastSample/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, "8.0" 2 | pod 'SAWaveToast', :path => '../' 3 | use_frameworks! -------------------------------------------------------------------------------- /SampleImage/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marty-suzuki/SAWaveToast/HEAD/SampleImage/sample.gif -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods-SAWaveToast/Pods-SAWaveToast-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-environment.h" 6 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods/Pods.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods { 2 | umbrella header "Pods-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods : NSObject 3 | @end 4 | @implementation PodsDummy_Pods 5 | @end 6 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods/Pods-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double PodsVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char PodsVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods-SAWaveToast/Pods-SAWaveToast.modulemap: -------------------------------------------------------------------------------- 1 | framework module SAWaveToast { 2 | umbrella header "Pods-SAWaveToast-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods-SAWaveToast/Pods-SAWaveToast-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SAWaveToast : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SAWaveToast 5 | @end 6 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods-SAWaveToast/Pods-SAWaveToast-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double SAWaveToastVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char SAWaveToastVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /SAWaveToastSample/SAWaveToastSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SAWaveToastSample/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - SAWaveToast (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - SAWaveToast (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | SAWaveToast: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | SAWaveToast: 6e34c3503462eb4f2ea2d5ef2aca461c1afa12ed 13 | 14 | COCOAPODS: 0.36.1 15 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - SAWaveToast (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - SAWaveToast (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | SAWaveToast: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | SAWaveToast: 6e34c3503462eb4f2ea2d5ef2aca461c1afa12ed 13 | 14 | COCOAPODS: 0.36.1 15 | -------------------------------------------------------------------------------- /SAWaveToastSample/SAWaveToastSample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods/Pods-environment.h: -------------------------------------------------------------------------------- 1 | 2 | // To check if a library is compiled with CocoaPods you 3 | // can use the `COCOAPODS` macro definition which is 4 | // defined in the xcconfigs so it is available in 5 | // headers also when they are imported in the client 6 | // project. 7 | 8 | 9 | // SAWaveToast 10 | #define COCOAPODS_POD_AVAILABLE_SAWaveToast 11 | #define COCOAPODS_VERSION_MAJOR_SAWaveToast 0 12 | #define COCOAPODS_VERSION_MINOR_SAWaveToast 1 13 | #define COCOAPODS_VERSION_PATCH_SAWaveToast 0 14 | 15 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | language: objective-c 6 | # cache: cocoapods 7 | # podfile: Example/Podfile 8 | # before_install: 9 | # - gem install cocoapods # Since Travis is not always on latest version 10 | # - pod install --project-directory=Example 11 | install: 12 | - gem install xcpretty --no-rdoc --no-ri --no-document --quiet 13 | script: 14 | - set -o pipefail && xcodebuild test -workspace Example/SAWaveToast.xcworkspace -scheme SAWaveToast-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c 15 | - pod lib lint --quick 16 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = "$PODS_FRAMEWORK_BUILD_PATH" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_FRAMEWORK_BUILD_PATH/SAWaveToast.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -framework "SAWaveToast" 6 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods 9 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = "$PODS_FRAMEWORK_BUILD_PATH" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_FRAMEWORK_BUILD_PATH/SAWaveToast.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -framework "SAWaveToast" 6 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods 9 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Local Podspecs/SAWaveToast.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SAWaveToast", 3 | "version": "0.1.0", 4 | "summary": "A short description of SAWaveToast.", 5 | "description": "", 6 | "homepage": "https://github.com/SzkAtmosphere/SAWaveToast", 7 | "license": "MIT", 8 | "authors": { 9 | "Taiki Suzuki": "s1180183@gmail.com" 10 | }, 11 | "source": { 12 | "git": "https://github.com/szk-atmosphere/SAWaveToast", 13 | "tag": "0.1.0" 14 | }, 15 | "social_media_url": "https://twitter.com/SzkAtmosphere", 16 | "platforms": { 17 | "ios": "8.0" 18 | }, 19 | "requires_arc": true, 20 | "source_files": "SAWaveToast/*.{swift}" 21 | } 22 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods-SAWaveToast/Pods-SAWaveToast-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-SAWaveToast.xcconfig" 2 | CONFIGURATION_BUILD_DIR = $PODS_FRAMEWORK_BUILD_PATH 3 | FRAMEWORK_SEARCH_PATHS = "$PODS_FRAMEWORK_BUILD_PATH" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/SAWaveToast" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/SAWaveToast" 6 | OTHER_LDFLAGS = -ObjC 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods 9 | PODS_ROOT = ${SRCROOT} 10 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 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 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | Carthage 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | # Note: if you ignore the Pods directory, make sure to uncomment 31 | # `pod install` in .travis.yml 32 | # 33 | # Pods/ 34 | -------------------------------------------------------------------------------- /SAWaveToastSample/SAWaveToastSample/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 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /SAWaveToastSample/SAWaveToastSampleTests/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 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods-SAWaveToast/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /SAWaveToast.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint SAWaveToast.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = "SAWaveToast" 11 | s.version = "0.2.0" 12 | s.summary = "Show text with wave animated background and floating animation." 13 | 14 | s.homepage = "https://github.com/szk-atmosphere/SAWaveToast" 15 | s.license = 'MIT' 16 | s.author = { "Taiki Suzuki" => "s1180183@gmail.com" } 17 | s.source = { :git => "https://github.com/szk-atmosphere/SAWaveToast.git", :tag => s.version.to_s } 18 | s.social_media_url = 'https://twitter.com/SzkAtmosphere' 19 | 20 | s.platform = :ios, '8.0' 21 | s.requires_arc = true 22 | 23 | s.source_files = 'SAWaveToast/*.{swift}' 24 | 25 | # s.public_header_files = 'Pod/Classes/**/*.h' 26 | # s.frameworks = 'UIKit', 'MapKit' 27 | # s.dependency 'AFNetworking', '~> 2.3' 28 | end 29 | -------------------------------------------------------------------------------- /SAWaveToastSample/SAWaveToastSampleTests/SAWaveToastSampleTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SAWaveToastSampleTests.swift 3 | // SAWaveToastSampleTests 4 | // 5 | // Created by 鈴木大貴 on 2015/08/24. 6 | // Copyright (c) 2015年 Taiki Suzuki. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import XCTest 11 | 12 | class SAWaveToastSampleTests: 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: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 Taiki Suzuki 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /SAWaveToastSample/SAWaveToastSample/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // SAWaveToastSample 4 | // 5 | // Created by 鈴木大貴 on 2015/08/24. 6 | // Copyright (c) 2015年 Taiki Suzuki. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import SAWaveToast 11 | 12 | class ViewController: UIViewController { 13 | 14 | override func viewDidLoad() { 15 | super.viewDidLoad() 16 | // Do any additional setup after loading the view, typically from a nib. 17 | } 18 | 19 | override func didReceiveMemoryWarning() { 20 | super.didReceiveMemoryWarning() 21 | // Dispose of any resources that can be recreated. 22 | } 23 | 24 | override func viewDidAppear(animated: Bool) { 25 | super.viewDidAppear(animated) 26 | } 27 | 28 | @IBAction func showWaveToast(sender: AnyObject) { 29 | let waveToast = SAWaveToast(text: "This is SAWaveToast!! SAWaveToast has wave and text floating animation. Default appearance time is 5 seconds.", font: .systemFontOfSize(16), fontColor: .darkGrayColor()) 30 | presentViewController(waveToast, animated: false, completion: nil) 31 | } 32 | } 33 | 34 | -------------------------------------------------------------------------------- /SAWaveToastSample/SAWaveToastSample/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 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## SAWaveToast 5 | 6 | Copyright (c) 2015 Taiki Suzuki 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - http://cocoapods.org 27 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2015 Taiki Suzuki <s1180183@gmail.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | SAWaveToast 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - http://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /SAWaveToastSample/SAWaveToastSample/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // SAWaveToastSample 4 | // 5 | // Created by 鈴木大貴 on 2015/08/24. 6 | // Copyright (c) 2015年 Taiki Suzuki. 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 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods/Pods-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | local source="${BUILT_PRODUCTS_DIR}/Pods/$1" 12 | local destination="${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 13 | 14 | if [ -L "${source}" ]; then 15 | echo "Symlinked..." 16 | source=$(readlink "${source}") 17 | fi 18 | 19 | # use filter instead of exclude so missing patterns dont' throw errors 20 | echo "rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" ${source} ${destination}" 21 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers/" --filter "- PrivateHeaders/" "${source}" "${destination}" 22 | # Resign the code if required by the build settings to avoid unstable apps 23 | if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then 24 | code_sign "${destination}/$1" 25 | fi 26 | 27 | # Embed linked Swift runtime libraries 28 | local basename 29 | basename=$(echo $1 | sed -E s/\\..+// && exit ${PIPESTATUS[0]}) 30 | local swift_runtime_libs 31 | swift_runtime_libs=$(xcrun otool -LX "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/$1/${basename}" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 32 | for lib in $swift_runtime_libs; do 33 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 34 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 35 | if [ "${CODE_SIGNING_REQUIRED}" == "YES" ]; then 36 | code_sign "${destination}/${lib}" 37 | fi 38 | done 39 | } 40 | 41 | # Signs a framework with the provided identity 42 | code_sign() { 43 | # Use the current code_sign_identitiy 44 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 45 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements $1" 46 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" 47 | } 48 | 49 | 50 | if [[ "$CONFIGURATION" == "Debug" ]]; then 51 | install_framework 'SAWaveToast.framework' 52 | fi 53 | if [[ "$CONFIGURATION" == "Release" ]]; then 54 | install_framework 'SAWaveToast.framework' 55 | fi 56 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SAWaveToast 2 | 3 | [![Platform](http://img.shields.io/badge/platform-ios-blue.svg?style=flat 4 | )](https://developer.apple.com/iphone/index.action) 5 | [![Language](http://img.shields.io/badge/language-swift-brightgreen.svg?style=flat 6 | )](https://developer.apple.com/swift) 7 | [![Version](https://img.shields.io/cocoapods/v/SAWaveToast.svg?style=flat)](http://cocoapods.org/pods/SAWaveToast) 8 | [![License](https://img.shields.io/cocoapods/l/SAWaveToast.svg?style=flat)](http://cocoapods.org/pods/SAWaveToast) 9 | 10 | ![](./SampleImage/sample.gif) 11 | 12 | Show text with wave animated background and floating animation. 13 | 14 | ## Features 15 | 16 | - [x] Wave aniamtion toast 17 | - [x] Support NSAttributedString 18 | - [ ] Culculate wave aniamtion wit gyro 19 | 20 | ## Installation 21 | 22 | #### CocoaPods 23 | 24 | SAWaveToast is available through [CocoaPods](http://cocoapods.org). To install 25 | it, simply add the following line to your Podfile: 26 | 27 | ``` 28 | pod "SAWaveToast" 29 | ``` 30 | 31 | #### Manually 32 | 33 | Add the [SAWaveToast](./SAWaveToast) directory to your project. 34 | 35 | ## Usage 36 | 37 | If you install from cocoapods, You have to write `import SAWaveToast`. 38 | 39 | There are two initialize methods. 40 | ```swift 41 | public convenience init(text: String, font: UIFont? = nil, fontColor: UIColor? = nil, waveColor: UIColor? = nil, duration: NSTimeInterval? = nil) 42 | public init(attributedText: NSAttributedString, waveColor: UIColor? = nil, duration: NSTimeInterval? = nil) 43 | ``` 44 | 45 | It is simple to use `SAWaveToast` like `UIAlertController`. 46 | ```swift 47 | let controller = SAWaveToast(text: "This is SAWaveToast!!") 48 | presentViewController(controller, animated: false, completion: nil) 49 | ``` 50 | 51 | ## Customize 52 | 53 | You can customize text. 54 | 55 | ### String 56 | 57 | ```swift 58 | let waveToast = SAWaveToast(text: "This is SAWaveToast!!", font: .systemFontOfSize(16), fontColor: .darkGrayColor() waveColor: .cyanColor(), duration: 5) 59 | ``` 60 | 61 | ### NSAttributedString 62 | 63 | ```swift 64 | let attributes: [NSObject : AnyObject] = [ 65 | NSFontAttributeName : UIFont.systemFontOfSize(16), 66 | NSForegroundColorAttributeName: UIColor.cyanColor() 67 | ] 68 | let attributedText = NSAttributedString(string: "This is SAWaveToast!! ", attributes: attributes) 69 | let waveToast = SAWaveToast(attributedText: attributedText, waveColor: .cyanColor(), duration: 5) 70 | ``` 71 | 72 | ## Requirements 73 | 74 | - Xcode 6.4 or greater 75 | - iOS7.0(manually only) or greater 76 | 77 | ## Author 78 | 79 | Taiki Suzuki, s1180183@gmail.com 80 | 81 | ## License 82 | 83 | SAWaveToast is available under the MIT license. See the LICENSE file for more info. 84 | -------------------------------------------------------------------------------- /SAWaveToast/SAWaveView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SAWaveView.swift 3 | // SAWaveToast 4 | // 5 | // Created by Taiki Suzuki on 2015/08/31. 6 | // 7 | // 8 | 9 | import UIKit 10 | 11 | class SAWaveView: UIView { 12 | 13 | static let Height: CGFloat = 10 14 | 15 | private let shapeLayer: CAShapeLayer = CAShapeLayer() 16 | var color: UIColor? { 17 | didSet { 18 | shapeLayer.strokeColor = color?.CGColor 19 | shapeLayer.fillColor = color?.CGColor 20 | } 21 | } 22 | 23 | init() { 24 | super.init(frame: CGRectZero) 25 | layer.addSublayer(shapeLayer) 26 | } 27 | 28 | required init(coder aDecoder: NSCoder) { 29 | fatalError("init(coder:) has not been implemented") 30 | } 31 | 32 | deinit {} 33 | 34 | override func layoutSubviews() { 35 | super.layoutSubviews() 36 | shapeLayer.frame = CGRect(x: 0, y: 0, width: bounds.size.width * 2, height: bounds.size.height) 37 | } 38 | 39 | override func animationDidStop(anim: CAAnimation, finished flag: Bool) { 40 | shapeLayer.removeAllAnimations() 41 | if flag { 42 | startAnimation() 43 | } 44 | } 45 | } 46 | 47 | //MARK: Private Methods 48 | extension SAWaveView { 49 | private func wavePath() -> CGPath { 50 | let path = UIBezierPath() 51 | path.moveToPoint(CGPoint(x: 0, y: frame.height * 0.5)) 52 | 53 | path.addQuadCurveToPoint(CGPoint(x: frame.width * 0.5, y: frame.height * 0.5), controlPoint: CGPoint(x: frame.width * 0.25, y: -frame.height * 0.5)) 54 | path.addQuadCurveToPoint(CGPoint(x: frame.width * 1, y: frame.height * 0.5), controlPoint: CGPoint(x: frame.width * 0.75, y: frame.height * 1.5)) 55 | path.addQuadCurveToPoint(CGPoint(x: frame.width * 1.5, y: frame.height * 0.5), controlPoint: CGPoint(x: frame.width * 1.25, y: -frame.height * 0.5)) 56 | path.addQuadCurveToPoint(CGPoint(x: frame.width * 2, y: frame.height * 0.5), controlPoint: CGPoint(x: frame.width * 1.75, y: frame.height * 1.5)) 57 | 58 | path.addLineToPoint(CGPoint(x: frame.width * 2, y: frame.height)) 59 | path.addLineToPoint(CGPoint(x: 0, y: frame.height)) 60 | path.addLineToPoint(CGPoint(x: 0, y: frame.height * 0.5)) 61 | 62 | return path.CGPath 63 | } 64 | } 65 | 66 | //MARK: Internal Methods 67 | extension SAWaveView { 68 | func startAnimation() { 69 | shapeLayer.path = wavePath() 70 | let animation = CABasicAnimation(keyPath: "position.x") 71 | animation.fromValue = 0 72 | animation.toValue = frame.size.width 73 | animation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionLinear) 74 | animation.removedOnCompletion = false 75 | animation.duration = 1 76 | animation.delegate = self 77 | animation.fillMode = kCAFillModeForwards 78 | shapeLayer.addAnimation(animation, forKey: "move") 79 | } 80 | } -------------------------------------------------------------------------------- /SAWaveToastSample/SAWaveToastSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /SAWaveToastSample/SAWaveToastSample/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 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES="" 10 | 11 | install_resource() 12 | { 13 | case $1 in 14 | *.storyboard) 15 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 16 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 17 | ;; 18 | *.xib) 19 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 20 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 21 | ;; 22 | *.framework) 23 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 24 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 25 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 26 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 27 | ;; 28 | *.xcdatamodel) 29 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 30 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 31 | ;; 32 | *.xcdatamodeld) 33 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 34 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 35 | ;; 36 | *.xcmappingmodel) 37 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 38 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 39 | ;; 40 | *.xcassets) 41 | XCASSET_FILES="$XCASSET_FILES '${PODS_ROOT}/$1'" 42 | ;; 43 | /*) 44 | echo "$1" 45 | echo "$1" >> "$RESOURCES_TO_COPY" 46 | ;; 47 | *) 48 | echo "${PODS_ROOT}/$1" 49 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 50 | ;; 51 | esac 52 | } 53 | 54 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 55 | if [[ "${ACTION}" == "install" ]]; then 56 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 57 | fi 58 | rm -f "$RESOURCES_TO_COPY" 59 | 60 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 61 | then 62 | case "${TARGETED_DEVICE_FAMILY}" in 63 | 1,2) 64 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 65 | ;; 66 | 1) 67 | TARGET_DEVICE_ARGS="--target-device iphone" 68 | ;; 69 | 2) 70 | TARGET_DEVICE_ARGS="--target-device ipad" 71 | ;; 72 | *) 73 | TARGET_DEVICE_ARGS="--target-device mac" 74 | ;; 75 | esac 76 | while read line; do XCASSET_FILES="$XCASSET_FILES '$line'"; done <<<$(find "$PWD" -name "*.xcassets" | egrep -v "^$PODS_ROOT") 77 | echo $XCASSET_FILES | xargs actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 78 | fi 79 | -------------------------------------------------------------------------------- /SAWaveToast/SAWaveToast.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SAWaveToast.swift 3 | // SAWaveToast 4 | // 5 | // Created by Taiki Suzuki on 2015/08/24. 6 | // 7 | // 8 | 9 | import UIKit 10 | 11 | public class SAWaveToast: UIViewController { 12 | 13 | static let Spaces = UIEdgeInsets(top: 10, left: 10, bottom: 5, right: 10) 14 | static let ExtraSpace: CGFloat = 5 15 | 16 | private let containerView: UIView = UIView() 17 | private let waveView: SAWaveView = SAWaveView() 18 | private let contentView: UIView = UIView() 19 | private let textView: UITextView = UITextView() 20 | private var waveColor: UIColor = .cyanColor() 21 | private var attributedText: NSMutableAttributedString = NSMutableAttributedString() 22 | private var stopAnimation: Bool = false 23 | private var duration: NSTimeInterval = 5 24 | 25 | //Constrants 26 | private var containerViewBottomConstraint: NSLayoutConstraint? 27 | private var textViewCenterXConstraint: NSLayoutConstraint? 28 | 29 | public convenience init(text: String, font: UIFont? = nil, fontColor: UIColor? = nil, waveColor: UIColor? = nil, duration: NSTimeInterval? = nil) { 30 | var attributes: [String : AnyObject] = [String : AnyObject]() 31 | if let font = font { 32 | attributes[NSFontAttributeName] = font 33 | } 34 | if let fontColor = fontColor { 35 | attributes[NSForegroundColorAttributeName] = fontColor 36 | } 37 | self.init(attributedText: NSAttributedString(string: text, attributes: attributes), waveColor: waveColor, duration: duration) 38 | } 39 | 40 | public init(attributedText: NSAttributedString, waveColor: UIColor? = nil, duration: NSTimeInterval? = nil) { 41 | super.init(nibName: nil, bundle: nil) 42 | if let waveColor = waveColor { 43 | self.waveColor = waveColor 44 | } 45 | if let duration = duration { 46 | self.duration = duration 47 | } 48 | self.attributedText.appendAttributedString(attributedText) 49 | waveView.color = self.waveColor 50 | 51 | switch UIDevice.currentDevice().systemVersion.compare("8.0.0", options: NSStringCompareOptions.NumericSearch) { 52 | case .OrderedSame, .OrderedDescending: 53 | providesPresentationContextTransitionStyle = true 54 | definesPresentationContext = true 55 | modalPresentationStyle = .OverCurrentContext 56 | case .OrderedAscending: 57 | modalPresentationStyle = .CurrentContext 58 | } 59 | 60 | } 61 | 62 | required public init(coder aDecoder: NSCoder) { 63 | fatalError("init(coder:) has not been implemented") 64 | } 65 | 66 | deinit {} 67 | 68 | public override func viewDidLoad() { 69 | super.viewDidLoad() 70 | 71 | // Do any additional setup after loading the view. 72 | view.backgroundColor = .clearColor() 73 | 74 | let width = UIScreen.mainScreen().bounds.size.width - SAWaveToast.Spaces.left + SAWaveToast.Spaces.right 75 | let textHeight = attributedText.boundingRectWithSize(CGSize(width: width, height: CGFloat.max), options: [.UsesLineFragmentOrigin, .UsesFontLeading], context: nil).size.height 76 | 77 | setContainerView(textHeight) 78 | setWaveView(textHeight) 79 | setContentView(textHeight) 80 | setTextView(textHeight) 81 | } 82 | 83 | public override func viewDidLayoutSubviews() { 84 | super.viewDidLayoutSubviews() 85 | } 86 | 87 | public override func viewDidAppear(animated: Bool) { 88 | super.viewDidAppear(animated) 89 | 90 | waveView.startAnimation() 91 | floatingAnimation() 92 | 93 | containerViewBottomConstraint?.constant = 0 94 | UIView.animateWithDuration(0.5, delay: 0, options: .CurveEaseOut, animations: { 95 | self.containerView.layoutIfNeeded() 96 | }, completion: nil) 97 | 98 | let delay = duration * Double(NSEC_PER_SEC) 99 | let time = dispatch_time(DISPATCH_TIME_NOW, Int64(delay)) 100 | dispatch_after(time, dispatch_get_main_queue()) { 101 | self.stopAnimation = true 102 | } 103 | } 104 | 105 | override public func didReceiveMemoryWarning() { 106 | super.didReceiveMemoryWarning() 107 | // Dispose of any resources that can be recreated. 108 | } 109 | } 110 | 111 | //MARK: - Private Methods 112 | extension SAWaveToast { 113 | private func setContainerView(textHeight: CGFloat) { 114 | view.addSubview(containerView) 115 | containerView.backgroundColor = .clearColor() 116 | containerView.translatesAutoresizingMaskIntoConstraints = false 117 | let height = textHeight + SAWaveView.Height + SAWaveToast.Spaces.top + SAWaveToast.Spaces.bottom + SAWaveToast.ExtraSpace 118 | let bottomConstraint = NSLayoutConstraint(item: containerView, attribute: .Bottom, relatedBy: .Equal, toItem: view, attribute: .Bottom, multiplier: 1, constant:height) 119 | view.addConstraints([ 120 | NSLayoutConstraint(item: containerView, attribute: .Left, relatedBy: .Equal, toItem: view, attribute: .Left, multiplier: 1, constant: 0), 121 | bottomConstraint, 122 | NSLayoutConstraint(item: containerView, attribute: .Right, relatedBy: .Equal, toItem: view, attribute: .Right, multiplier: 1, constant: 0), 123 | NSLayoutConstraint(item: containerView, attribute: .Height, relatedBy: .Equal, toItem: nil, attribute: .Height, multiplier: 1, constant: height) 124 | ]) 125 | containerViewBottomConstraint = bottomConstraint 126 | } 127 | 128 | private func setWaveView(textHeight: CGFloat) { 129 | containerView.addSubview(waveView) 130 | waveView.translatesAutoresizingMaskIntoConstraints = false 131 | view.addConstraints([ 132 | NSLayoutConstraint(item: waveView, attribute: .Left, relatedBy: .Equal, toItem: containerView, attribute: .Left, multiplier: 1, constant: 0), 133 | NSLayoutConstraint(item: waveView, attribute: .Top, relatedBy: .Equal, toItem: containerView, attribute: .Top, multiplier: 1, constant: 0), 134 | NSLayoutConstraint(item: waveView, attribute: .Right, relatedBy: .Equal, toItem: containerView, attribute: .Right, multiplier: 1, constant: 0), 135 | NSLayoutConstraint(item: waveView, attribute: .Height, relatedBy: .Equal, toItem: nil, attribute: .Height, multiplier: 1, constant: SAWaveView.Height) 136 | ]) 137 | } 138 | 139 | private func setContentView(textHeight: CGFloat) { 140 | containerView.addSubview(contentView) 141 | contentView.backgroundColor = waveColor 142 | contentView.translatesAutoresizingMaskIntoConstraints = false 143 | view.addConstraints([ 144 | NSLayoutConstraint(item: contentView, attribute: .Left, relatedBy: .Equal, toItem: containerView, attribute: .Left, multiplier: 1, constant: 0), 145 | NSLayoutConstraint(item: contentView, attribute: .Bottom, relatedBy: .Equal, toItem: containerView, attribute: .Bottom, multiplier: 1, constant: 0), 146 | NSLayoutConstraint(item: contentView, attribute: .Right, relatedBy: .Equal, toItem: containerView, attribute: .Right, multiplier: 1, constant: 0), 147 | NSLayoutConstraint(item: contentView, attribute: .Top, relatedBy: .Equal, toItem: waveView, attribute: .Bottom, multiplier: 1, constant: 0) 148 | ]) 149 | } 150 | 151 | private func setTextView(textHeight: CGFloat) { 152 | contentView.addSubview(textView) 153 | textView.backgroundColor = .clearColor() 154 | textView.translatesAutoresizingMaskIntoConstraints = false 155 | textView.userInteractionEnabled = false 156 | textView.contentInset = UIEdgeInsets(top: -10, left: -4, bottom: 0, right: 0) 157 | let width = UIScreen.mainScreen().bounds.size.width - (SAWaveToast.Spaces.right + SAWaveToast.Spaces.left) 158 | let centerXConstraint = NSLayoutConstraint(item: textView, attribute: .CenterX, relatedBy: .Equal, toItem: contentView, attribute: .CenterX, multiplier: 1, constant: 0) 159 | contentView.addConstraints([ 160 | centerXConstraint, 161 | NSLayoutConstraint(item: textView, attribute: .Bottom, relatedBy: .Equal, toItem: contentView, attribute: .Bottom, multiplier: 1, constant: -(SAWaveToast.Spaces.bottom + SAWaveToast.ExtraSpace)), 162 | NSLayoutConstraint(item: textView, attribute: .Width, relatedBy: .Equal, toItem: nil, attribute: .Width, multiplier: 1, constant: width), 163 | NSLayoutConstraint(item: textView, attribute: .Top, relatedBy: .Equal, toItem: contentView, attribute: .Top, multiplier: 1, constant: SAWaveToast.Spaces.top) 164 | ]) 165 | textViewCenterXConstraint = centerXConstraint 166 | textView.attributedText = attributedText 167 | } 168 | 169 | private func willDisappearToast() { 170 | containerViewBottomConstraint?.constant = containerView.frame.size.height 171 | UIView.animateWithDuration(0.5, delay: 0, options: .CurveEaseIn, animations: { 172 | self.containerView.layoutIfNeeded() 173 | }) { finished in 174 | self.dismissViewControllerAnimated(false, completion: nil) 175 | } 176 | } 177 | 178 | private func floatingAnimation() { 179 | stopAnimation = false 180 | let totalValue = (SAWaveToast.Spaces.left + SAWaveToast.Spaces.right) / 4 181 | let delta = (CGFloat(arc4random_uniform(UINT32_MAX)) / CGFloat(UINT32_MAX) ) * totalValue 182 | textViewCenterXConstraint?.constant = (arc4random_uniform(UINT32_MAX) % 2 == 0) ? delta : -delta 183 | if containerViewBottomConstraint?.constant == 0 { 184 | containerViewBottomConstraint?.constant = SAWaveToast.ExtraSpace 185 | } else { 186 | containerViewBottomConstraint?.constant = 0 187 | } 188 | UIView.animateWithDuration(0.5, delay: 0, options: .CurveEaseInOut, animations: { 189 | self.containerView.layoutIfNeeded() 190 | }) { finished in 191 | if self.stopAnimation { 192 | self.willDisappearToast() 193 | } else { 194 | self.floatingAnimation() 195 | } 196 | } 197 | } 198 | } -------------------------------------------------------------------------------- /SAWaveToastSample/SAWaveToastSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 37D1052B1B8A3F06001A2F45 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37D1052A1B8A3F06001A2F45 /* AppDelegate.swift */; }; 11 | 37D1052D1B8A3F06001A2F45 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37D1052C1B8A3F06001A2F45 /* ViewController.swift */; }; 12 | 37D105301B8A3F06001A2F45 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 37D1052E1B8A3F06001A2F45 /* Main.storyboard */; }; 13 | 37D105321B8A3F06001A2F45 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 37D105311B8A3F06001A2F45 /* Images.xcassets */; }; 14 | 37D105351B8A3F06001A2F45 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 37D105331B8A3F06001A2F45 /* LaunchScreen.xib */; }; 15 | 37D105411B8A3F06001A2F45 /* SAWaveToastSampleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37D105401B8A3F06001A2F45 /* SAWaveToastSampleTests.swift */; }; 16 | A3EBCF0AAE78EEC445DC141C /* Pods.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C823CFAC670F85C25C81D8C /* Pods.framework */; settings = {ATTRIBUTES = (Weak, ); }; }; 17 | /* End PBXBuildFile section */ 18 | 19 | /* Begin PBXContainerItemProxy section */ 20 | 37D1053B1B8A3F06001A2F45 /* PBXContainerItemProxy */ = { 21 | isa = PBXContainerItemProxy; 22 | containerPortal = 37D1051D1B8A3F06001A2F45 /* Project object */; 23 | proxyType = 1; 24 | remoteGlobalIDString = 37D105241B8A3F06001A2F45; 25 | remoteInfo = SAWaveToastSample; 26 | }; 27 | /* End PBXContainerItemProxy section */ 28 | 29 | /* Begin PBXFileReference section */ 30 | 37D105251B8A3F06001A2F45 /* SAWaveToastSample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SAWaveToastSample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 31 | 37D105291B8A3F06001A2F45 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 32 | 37D1052A1B8A3F06001A2F45 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 33 | 37D1052C1B8A3F06001A2F45 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 34 | 37D1052F1B8A3F06001A2F45 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 35 | 37D105311B8A3F06001A2F45 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 36 | 37D105341B8A3F06001A2F45 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 37 | 37D1053A1B8A3F06001A2F45 /* SAWaveToastSampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SAWaveToastSampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 38 | 37D1053F1B8A3F06001A2F45 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 39 | 37D105401B8A3F06001A2F45 /* SAWaveToastSampleTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SAWaveToastSampleTests.swift; sourceTree = ""; }; 40 | 8C823CFAC670F85C25C81D8C /* Pods.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | CEED5CCB91B8BDD0D8068F5D /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = ""; }; 42 | D79E669CC88CCCCFEE700FDF /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = ""; }; 43 | /* End PBXFileReference section */ 44 | 45 | /* Begin PBXFrameworksBuildPhase section */ 46 | 37D105221B8A3F06001A2F45 /* Frameworks */ = { 47 | isa = PBXFrameworksBuildPhase; 48 | buildActionMask = 2147483647; 49 | files = ( 50 | A3EBCF0AAE78EEC445DC141C /* Pods.framework in Frameworks */, 51 | ); 52 | runOnlyForDeploymentPostprocessing = 0; 53 | }; 54 | 37D105371B8A3F06001A2F45 /* Frameworks */ = { 55 | isa = PBXFrameworksBuildPhase; 56 | buildActionMask = 2147483647; 57 | files = ( 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | /* End PBXFrameworksBuildPhase section */ 62 | 63 | /* Begin PBXGroup section */ 64 | 37D1051C1B8A3F06001A2F45 = { 65 | isa = PBXGroup; 66 | children = ( 67 | 37D105271B8A3F06001A2F45 /* SAWaveToastSample */, 68 | 37D1053D1B8A3F06001A2F45 /* SAWaveToastSampleTests */, 69 | 37D105261B8A3F06001A2F45 /* Products */, 70 | 53B17D88E3C60ECF11F1684A /* Pods */, 71 | D048D9E57B3CFF055CC96326 /* Frameworks */, 72 | ); 73 | sourceTree = ""; 74 | }; 75 | 37D105261B8A3F06001A2F45 /* Products */ = { 76 | isa = PBXGroup; 77 | children = ( 78 | 37D105251B8A3F06001A2F45 /* SAWaveToastSample.app */, 79 | 37D1053A1B8A3F06001A2F45 /* SAWaveToastSampleTests.xctest */, 80 | ); 81 | name = Products; 82 | sourceTree = ""; 83 | }; 84 | 37D105271B8A3F06001A2F45 /* SAWaveToastSample */ = { 85 | isa = PBXGroup; 86 | children = ( 87 | 37D1052A1B8A3F06001A2F45 /* AppDelegate.swift */, 88 | 37D1052C1B8A3F06001A2F45 /* ViewController.swift */, 89 | 37D1052E1B8A3F06001A2F45 /* Main.storyboard */, 90 | 37D105311B8A3F06001A2F45 /* Images.xcassets */, 91 | 37D105331B8A3F06001A2F45 /* LaunchScreen.xib */, 92 | 37D105281B8A3F06001A2F45 /* Supporting Files */, 93 | ); 94 | path = SAWaveToastSample; 95 | sourceTree = ""; 96 | }; 97 | 37D105281B8A3F06001A2F45 /* Supporting Files */ = { 98 | isa = PBXGroup; 99 | children = ( 100 | 37D105291B8A3F06001A2F45 /* Info.plist */, 101 | ); 102 | name = "Supporting Files"; 103 | sourceTree = ""; 104 | }; 105 | 37D1053D1B8A3F06001A2F45 /* SAWaveToastSampleTests */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | 37D105401B8A3F06001A2F45 /* SAWaveToastSampleTests.swift */, 109 | 37D1053E1B8A3F06001A2F45 /* Supporting Files */, 110 | ); 111 | path = SAWaveToastSampleTests; 112 | sourceTree = ""; 113 | }; 114 | 37D1053E1B8A3F06001A2F45 /* Supporting Files */ = { 115 | isa = PBXGroup; 116 | children = ( 117 | 37D1053F1B8A3F06001A2F45 /* Info.plist */, 118 | ); 119 | name = "Supporting Files"; 120 | sourceTree = ""; 121 | }; 122 | 53B17D88E3C60ECF11F1684A /* Pods */ = { 123 | isa = PBXGroup; 124 | children = ( 125 | CEED5CCB91B8BDD0D8068F5D /* Pods.debug.xcconfig */, 126 | D79E669CC88CCCCFEE700FDF /* Pods.release.xcconfig */, 127 | ); 128 | name = Pods; 129 | sourceTree = ""; 130 | }; 131 | D048D9E57B3CFF055CC96326 /* Frameworks */ = { 132 | isa = PBXGroup; 133 | children = ( 134 | 8C823CFAC670F85C25C81D8C /* Pods.framework */, 135 | ); 136 | name = Frameworks; 137 | sourceTree = ""; 138 | }; 139 | /* End PBXGroup section */ 140 | 141 | /* Begin PBXNativeTarget section */ 142 | 37D105241B8A3F06001A2F45 /* SAWaveToastSample */ = { 143 | isa = PBXNativeTarget; 144 | buildConfigurationList = 37D105441B8A3F06001A2F45 /* Build configuration list for PBXNativeTarget "SAWaveToastSample" */; 145 | buildPhases = ( 146 | 08BCDAA78618C3848A0B1978 /* Check Pods Manifest.lock */, 147 | 37D105211B8A3F06001A2F45 /* Sources */, 148 | 37D105221B8A3F06001A2F45 /* Frameworks */, 149 | 37D105231B8A3F06001A2F45 /* Resources */, 150 | E0D0C017A26647224F627AA1 /* Embed Pods Frameworks */, 151 | 7DD1450126766A1C055B8F51 /* Copy Pods Resources */, 152 | ); 153 | buildRules = ( 154 | ); 155 | dependencies = ( 156 | ); 157 | name = SAWaveToastSample; 158 | productName = SAWaveToastSample; 159 | productReference = 37D105251B8A3F06001A2F45 /* SAWaveToastSample.app */; 160 | productType = "com.apple.product-type.application"; 161 | }; 162 | 37D105391B8A3F06001A2F45 /* SAWaveToastSampleTests */ = { 163 | isa = PBXNativeTarget; 164 | buildConfigurationList = 37D105471B8A3F06001A2F45 /* Build configuration list for PBXNativeTarget "SAWaveToastSampleTests" */; 165 | buildPhases = ( 166 | 37D105361B8A3F06001A2F45 /* Sources */, 167 | 37D105371B8A3F06001A2F45 /* Frameworks */, 168 | 37D105381B8A3F06001A2F45 /* Resources */, 169 | ); 170 | buildRules = ( 171 | ); 172 | dependencies = ( 173 | 37D1053C1B8A3F06001A2F45 /* PBXTargetDependency */, 174 | ); 175 | name = SAWaveToastSampleTests; 176 | productName = SAWaveToastSampleTests; 177 | productReference = 37D1053A1B8A3F06001A2F45 /* SAWaveToastSampleTests.xctest */; 178 | productType = "com.apple.product-type.bundle.unit-test"; 179 | }; 180 | /* End PBXNativeTarget section */ 181 | 182 | /* Begin PBXProject section */ 183 | 37D1051D1B8A3F06001A2F45 /* Project object */ = { 184 | isa = PBXProject; 185 | attributes = { 186 | LastSwiftUpdateCheck = 0700; 187 | LastUpgradeCheck = 0700; 188 | ORGANIZATIONNAME = "Taiki Suzuki"; 189 | TargetAttributes = { 190 | 37D105241B8A3F06001A2F45 = { 191 | CreatedOnToolsVersion = 6.4; 192 | }; 193 | 37D105391B8A3F06001A2F45 = { 194 | CreatedOnToolsVersion = 6.4; 195 | TestTargetID = 37D105241B8A3F06001A2F45; 196 | }; 197 | }; 198 | }; 199 | buildConfigurationList = 37D105201B8A3F06001A2F45 /* Build configuration list for PBXProject "SAWaveToastSample" */; 200 | compatibilityVersion = "Xcode 3.2"; 201 | developmentRegion = English; 202 | hasScannedForEncodings = 0; 203 | knownRegions = ( 204 | en, 205 | Base, 206 | ); 207 | mainGroup = 37D1051C1B8A3F06001A2F45; 208 | productRefGroup = 37D105261B8A3F06001A2F45 /* Products */; 209 | projectDirPath = ""; 210 | projectRoot = ""; 211 | targets = ( 212 | 37D105241B8A3F06001A2F45 /* SAWaveToastSample */, 213 | 37D105391B8A3F06001A2F45 /* SAWaveToastSampleTests */, 214 | ); 215 | }; 216 | /* End PBXProject section */ 217 | 218 | /* Begin PBXResourcesBuildPhase section */ 219 | 37D105231B8A3F06001A2F45 /* Resources */ = { 220 | isa = PBXResourcesBuildPhase; 221 | buildActionMask = 2147483647; 222 | files = ( 223 | 37D105301B8A3F06001A2F45 /* Main.storyboard in Resources */, 224 | 37D105351B8A3F06001A2F45 /* LaunchScreen.xib in Resources */, 225 | 37D105321B8A3F06001A2F45 /* Images.xcassets in Resources */, 226 | ); 227 | runOnlyForDeploymentPostprocessing = 0; 228 | }; 229 | 37D105381B8A3F06001A2F45 /* Resources */ = { 230 | isa = PBXResourcesBuildPhase; 231 | buildActionMask = 2147483647; 232 | files = ( 233 | ); 234 | runOnlyForDeploymentPostprocessing = 0; 235 | }; 236 | /* End PBXResourcesBuildPhase section */ 237 | 238 | /* Begin PBXShellScriptBuildPhase section */ 239 | 08BCDAA78618C3848A0B1978 /* Check Pods Manifest.lock */ = { 240 | isa = PBXShellScriptBuildPhase; 241 | buildActionMask = 2147483647; 242 | files = ( 243 | ); 244 | inputPaths = ( 245 | ); 246 | name = "Check Pods Manifest.lock"; 247 | outputPaths = ( 248 | ); 249 | runOnlyForDeploymentPostprocessing = 0; 250 | shellPath = /bin/sh; 251 | 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"; 252 | showEnvVarsInLog = 0; 253 | }; 254 | 7DD1450126766A1C055B8F51 /* Copy Pods Resources */ = { 255 | isa = PBXShellScriptBuildPhase; 256 | buildActionMask = 2147483647; 257 | files = ( 258 | ); 259 | inputPaths = ( 260 | ); 261 | name = "Copy Pods Resources"; 262 | outputPaths = ( 263 | ); 264 | runOnlyForDeploymentPostprocessing = 0; 265 | shellPath = /bin/sh; 266 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-resources.sh\"\n"; 267 | showEnvVarsInLog = 0; 268 | }; 269 | E0D0C017A26647224F627AA1 /* Embed Pods Frameworks */ = { 270 | isa = PBXShellScriptBuildPhase; 271 | buildActionMask = 2147483647; 272 | files = ( 273 | ); 274 | inputPaths = ( 275 | ); 276 | name = "Embed Pods Frameworks"; 277 | outputPaths = ( 278 | ); 279 | runOnlyForDeploymentPostprocessing = 0; 280 | shellPath = /bin/sh; 281 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods/Pods-frameworks.sh\"\n"; 282 | showEnvVarsInLog = 0; 283 | }; 284 | /* End PBXShellScriptBuildPhase section */ 285 | 286 | /* Begin PBXSourcesBuildPhase section */ 287 | 37D105211B8A3F06001A2F45 /* Sources */ = { 288 | isa = PBXSourcesBuildPhase; 289 | buildActionMask = 2147483647; 290 | files = ( 291 | 37D1052D1B8A3F06001A2F45 /* ViewController.swift in Sources */, 292 | 37D1052B1B8A3F06001A2F45 /* AppDelegate.swift in Sources */, 293 | ); 294 | runOnlyForDeploymentPostprocessing = 0; 295 | }; 296 | 37D105361B8A3F06001A2F45 /* Sources */ = { 297 | isa = PBXSourcesBuildPhase; 298 | buildActionMask = 2147483647; 299 | files = ( 300 | 37D105411B8A3F06001A2F45 /* SAWaveToastSampleTests.swift in Sources */, 301 | ); 302 | runOnlyForDeploymentPostprocessing = 0; 303 | }; 304 | /* End PBXSourcesBuildPhase section */ 305 | 306 | /* Begin PBXTargetDependency section */ 307 | 37D1053C1B8A3F06001A2F45 /* PBXTargetDependency */ = { 308 | isa = PBXTargetDependency; 309 | target = 37D105241B8A3F06001A2F45 /* SAWaveToastSample */; 310 | targetProxy = 37D1053B1B8A3F06001A2F45 /* PBXContainerItemProxy */; 311 | }; 312 | /* End PBXTargetDependency section */ 313 | 314 | /* Begin PBXVariantGroup section */ 315 | 37D1052E1B8A3F06001A2F45 /* Main.storyboard */ = { 316 | isa = PBXVariantGroup; 317 | children = ( 318 | 37D1052F1B8A3F06001A2F45 /* Base */, 319 | ); 320 | name = Main.storyboard; 321 | sourceTree = ""; 322 | }; 323 | 37D105331B8A3F06001A2F45 /* LaunchScreen.xib */ = { 324 | isa = PBXVariantGroup; 325 | children = ( 326 | 37D105341B8A3F06001A2F45 /* Base */, 327 | ); 328 | name = LaunchScreen.xib; 329 | sourceTree = ""; 330 | }; 331 | /* End PBXVariantGroup section */ 332 | 333 | /* Begin XCBuildConfiguration section */ 334 | 37D105421B8A3F06001A2F45 /* Debug */ = { 335 | isa = XCBuildConfiguration; 336 | buildSettings = { 337 | ALWAYS_SEARCH_USER_PATHS = NO; 338 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 339 | CLANG_CXX_LIBRARY = "libc++"; 340 | CLANG_ENABLE_MODULES = YES; 341 | CLANG_ENABLE_OBJC_ARC = YES; 342 | CLANG_WARN_BOOL_CONVERSION = YES; 343 | CLANG_WARN_CONSTANT_CONVERSION = YES; 344 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 345 | CLANG_WARN_EMPTY_BODY = YES; 346 | CLANG_WARN_ENUM_CONVERSION = YES; 347 | CLANG_WARN_INT_CONVERSION = YES; 348 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 349 | CLANG_WARN_UNREACHABLE_CODE = YES; 350 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 351 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 352 | COPY_PHASE_STRIP = NO; 353 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 354 | ENABLE_STRICT_OBJC_MSGSEND = YES; 355 | ENABLE_TESTABILITY = YES; 356 | GCC_C_LANGUAGE_STANDARD = gnu99; 357 | GCC_DYNAMIC_NO_PIC = NO; 358 | GCC_NO_COMMON_BLOCKS = YES; 359 | GCC_OPTIMIZATION_LEVEL = 0; 360 | GCC_PREPROCESSOR_DEFINITIONS = ( 361 | "DEBUG=1", 362 | "$(inherited)", 363 | ); 364 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 365 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 366 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 367 | GCC_WARN_UNDECLARED_SELECTOR = YES; 368 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 369 | GCC_WARN_UNUSED_FUNCTION = YES; 370 | GCC_WARN_UNUSED_VARIABLE = YES; 371 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 372 | MTL_ENABLE_DEBUG_INFO = YES; 373 | ONLY_ACTIVE_ARCH = YES; 374 | SDKROOT = iphoneos; 375 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 376 | }; 377 | name = Debug; 378 | }; 379 | 37D105431B8A3F06001A2F45 /* Release */ = { 380 | isa = XCBuildConfiguration; 381 | buildSettings = { 382 | ALWAYS_SEARCH_USER_PATHS = NO; 383 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 384 | CLANG_CXX_LIBRARY = "libc++"; 385 | CLANG_ENABLE_MODULES = YES; 386 | CLANG_ENABLE_OBJC_ARC = YES; 387 | CLANG_WARN_BOOL_CONVERSION = YES; 388 | CLANG_WARN_CONSTANT_CONVERSION = YES; 389 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 390 | CLANG_WARN_EMPTY_BODY = YES; 391 | CLANG_WARN_ENUM_CONVERSION = YES; 392 | CLANG_WARN_INT_CONVERSION = YES; 393 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 394 | CLANG_WARN_UNREACHABLE_CODE = YES; 395 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 396 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 397 | COPY_PHASE_STRIP = NO; 398 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 399 | ENABLE_NS_ASSERTIONS = NO; 400 | ENABLE_STRICT_OBJC_MSGSEND = YES; 401 | GCC_C_LANGUAGE_STANDARD = gnu99; 402 | GCC_NO_COMMON_BLOCKS = YES; 403 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 404 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 405 | GCC_WARN_UNDECLARED_SELECTOR = YES; 406 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 407 | GCC_WARN_UNUSED_FUNCTION = YES; 408 | GCC_WARN_UNUSED_VARIABLE = YES; 409 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 410 | MTL_ENABLE_DEBUG_INFO = NO; 411 | SDKROOT = iphoneos; 412 | VALIDATE_PRODUCT = YES; 413 | }; 414 | name = Release; 415 | }; 416 | 37D105451B8A3F06001A2F45 /* Debug */ = { 417 | isa = XCBuildConfiguration; 418 | baseConfigurationReference = CEED5CCB91B8BDD0D8068F5D /* Pods.debug.xcconfig */; 419 | buildSettings = { 420 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 421 | INFOPLIST_FILE = SAWaveToastSample/Info.plist; 422 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 423 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 424 | PRODUCT_BUNDLE_IDENTIFIER = "szk-atmosphere.$(PRODUCT_NAME:rfc1034identifier)"; 425 | PRODUCT_NAME = "$(TARGET_NAME)"; 426 | }; 427 | name = Debug; 428 | }; 429 | 37D105461B8A3F06001A2F45 /* Release */ = { 430 | isa = XCBuildConfiguration; 431 | baseConfigurationReference = D79E669CC88CCCCFEE700FDF /* Pods.release.xcconfig */; 432 | buildSettings = { 433 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 434 | INFOPLIST_FILE = SAWaveToastSample/Info.plist; 435 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 436 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 437 | PRODUCT_BUNDLE_IDENTIFIER = "szk-atmosphere.$(PRODUCT_NAME:rfc1034identifier)"; 438 | PRODUCT_NAME = "$(TARGET_NAME)"; 439 | }; 440 | name = Release; 441 | }; 442 | 37D105481B8A3F06001A2F45 /* Debug */ = { 443 | isa = XCBuildConfiguration; 444 | buildSettings = { 445 | BUNDLE_LOADER = "$(TEST_HOST)"; 446 | FRAMEWORK_SEARCH_PATHS = ""; 447 | GCC_PREPROCESSOR_DEFINITIONS = ( 448 | "DEBUG=1", 449 | "$(inherited)", 450 | ); 451 | INFOPLIST_FILE = SAWaveToastSampleTests/Info.plist; 452 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 453 | PRODUCT_BUNDLE_IDENTIFIER = "szk-atmosphere.$(PRODUCT_NAME:rfc1034identifier)"; 454 | PRODUCT_NAME = "$(TARGET_NAME)"; 455 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SAWaveToastSample.app/SAWaveToastSample"; 456 | }; 457 | name = Debug; 458 | }; 459 | 37D105491B8A3F06001A2F45 /* Release */ = { 460 | isa = XCBuildConfiguration; 461 | buildSettings = { 462 | BUNDLE_LOADER = "$(TEST_HOST)"; 463 | FRAMEWORK_SEARCH_PATHS = ""; 464 | INFOPLIST_FILE = SAWaveToastSampleTests/Info.plist; 465 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 466 | PRODUCT_BUNDLE_IDENTIFIER = "szk-atmosphere.$(PRODUCT_NAME:rfc1034identifier)"; 467 | PRODUCT_NAME = "$(TARGET_NAME)"; 468 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SAWaveToastSample.app/SAWaveToastSample"; 469 | }; 470 | name = Release; 471 | }; 472 | /* End XCBuildConfiguration section */ 473 | 474 | /* Begin XCConfigurationList section */ 475 | 37D105201B8A3F06001A2F45 /* Build configuration list for PBXProject "SAWaveToastSample" */ = { 476 | isa = XCConfigurationList; 477 | buildConfigurations = ( 478 | 37D105421B8A3F06001A2F45 /* Debug */, 479 | 37D105431B8A3F06001A2F45 /* Release */, 480 | ); 481 | defaultConfigurationIsVisible = 0; 482 | defaultConfigurationName = Release; 483 | }; 484 | 37D105441B8A3F06001A2F45 /* Build configuration list for PBXNativeTarget "SAWaveToastSample" */ = { 485 | isa = XCConfigurationList; 486 | buildConfigurations = ( 487 | 37D105451B8A3F06001A2F45 /* Debug */, 488 | 37D105461B8A3F06001A2F45 /* Release */, 489 | ); 490 | defaultConfigurationIsVisible = 0; 491 | defaultConfigurationName = Release; 492 | }; 493 | 37D105471B8A3F06001A2F45 /* Build configuration list for PBXNativeTarget "SAWaveToastSampleTests" */ = { 494 | isa = XCConfigurationList; 495 | buildConfigurations = ( 496 | 37D105481B8A3F06001A2F45 /* Debug */, 497 | 37D105491B8A3F06001A2F45 /* Release */, 498 | ); 499 | defaultConfigurationIsVisible = 0; 500 | defaultConfigurationName = Release; 501 | }; 502 | /* End XCConfigurationList section */ 503 | }; 504 | rootObject = 37D1051D1B8A3F06001A2F45 /* Project object */; 505 | } 506 | -------------------------------------------------------------------------------- /SAWaveToastSample/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 051323F1DB1955D4E5DD50A1 /* Pods-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C636364DBE8D97C581FF59F5 /* Pods-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | 13E4325A8C63B96264D72F24 /* Pods-SAWaveToast-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6514C83EFE8F4EE67BA3BC92 /* Pods-SAWaveToast-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 12 | 2521139E87E2575119B57175 /* Pods-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B3F3B8EF7277C42D7DA53478 /* Pods-dummy.m */; }; 13 | 5862417949DB48CAB10B6200 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B83F1F363CA2C927CE14B2B6 /* Foundation.framework */; }; 14 | 7DA2647BB80D17D3599978A5 /* Pods-SAWaveToast-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 884579E0540ECA3DFE53613F /* Pods-SAWaveToast-dummy.m */; }; 15 | 92445DFFEDF3D1B56C478EBC /* SAWaveToast.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7C205F0CDB4BFA2C1AF05ED /* SAWaveToast.swift */; }; 16 | 9D7F9E291B94110C001E3DB3 /* SAWaveView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D7F9E271B9410D0001E3DB3 /* SAWaveView.swift */; }; 17 | FE3EEF41F68F54AB3D7A6BF1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B83F1F363CA2C927CE14B2B6 /* Foundation.framework */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 3BF264390D47F08BB561D71A /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = 3648403E0F3053D2CA80662D /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 22B2D9BBBDA20FAC05AADA87; 26 | remoteInfo = "Pods-SAWaveToast"; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 174608E32670EC3334EEE699 /* Pods-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-resources.sh"; sourceTree = ""; }; 32 | 1CC7827015E587ADE63646EF /* Pods-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-environment.h"; sourceTree = ""; }; 33 | 322C6BB2515419470EE22DE6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 34 | 49A9C49701FA8A10E53AA9F4 /* SAWaveToast.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SAWaveToast.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | 5AE4BB3A73F73876E12C39EA /* Pods-SAWaveToast-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SAWaveToast-prefix.pch"; sourceTree = ""; }; 36 | 6514C83EFE8F4EE67BA3BC92 /* Pods-SAWaveToast-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SAWaveToast-umbrella.h"; sourceTree = ""; }; 37 | 73060CBBB226472AB6DE966C /* Pods.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 38 | 78C2308440F8D91CB60C57B0 /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Pods.debug.xcconfig; sourceTree = ""; }; 39 | 87C35E3FF2B5E6222ECB9F72 /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 40 | 884579E0540ECA3DFE53613F /* Pods-SAWaveToast-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SAWaveToast-dummy.m"; sourceTree = ""; }; 41 | 886EBE60D00282F4E240E31B /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Pods.release.xcconfig; sourceTree = ""; }; 42 | 98DC2366FAC25118D706B407 /* Pods-SAWaveToast.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SAWaveToast.xcconfig"; sourceTree = ""; }; 43 | 9D7F9E271B9410D0001E3DB3 /* SAWaveView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SAWaveView.swift; sourceTree = ""; }; 44 | 9DF05312CF7555180ECE9176 /* Pods-SAWaveToast-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SAWaveToast-Private.xcconfig"; sourceTree = ""; }; 45 | A1BF768D19DC530B512A04B0 /* Pods.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Pods.modulemap; sourceTree = ""; }; 46 | A7C205F0CDB4BFA2C1AF05ED /* SAWaveToast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SAWaveToast.swift; sourceTree = ""; }; 47 | AD14F0E40FD793D644B90F73 /* Pods-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-frameworks.sh"; sourceTree = ""; }; 48 | AF4F24C9C23ED8F42E923576 /* Pods-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-acknowledgements.plist"; sourceTree = ""; }; 49 | B3F3B8EF7277C42D7DA53478 /* Pods-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-dummy.m"; sourceTree = ""; }; 50 | B83F1F363CA2C927CE14B2B6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 51 | C636364DBE8D97C581FF59F5 /* Pods-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-umbrella.h"; sourceTree = ""; }; 52 | CCD4E12DCCA219B5527F55F6 /* Pods-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-acknowledgements.markdown"; sourceTree = ""; }; 53 | D62FB6C27E9D5389391B7AD1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 54 | F17C992185CC0CF7D1EDF78C /* Pods-SAWaveToast.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-SAWaveToast.modulemap"; sourceTree = ""; }; 55 | /* End PBXFileReference section */ 56 | 57 | /* Begin PBXFrameworksBuildPhase section */ 58 | 647C359EBE782F19151765E1 /* Frameworks */ = { 59 | isa = PBXFrameworksBuildPhase; 60 | buildActionMask = 2147483647; 61 | files = ( 62 | FE3EEF41F68F54AB3D7A6BF1 /* Foundation.framework in Frameworks */, 63 | ); 64 | runOnlyForDeploymentPostprocessing = 0; 65 | }; 66 | F6FAFC4B8DDFAD724958AE8B /* Frameworks */ = { 67 | isa = PBXFrameworksBuildPhase; 68 | buildActionMask = 2147483647; 69 | files = ( 70 | 5862417949DB48CAB10B6200 /* Foundation.framework in Frameworks */, 71 | ); 72 | runOnlyForDeploymentPostprocessing = 0; 73 | }; 74 | /* End PBXFrameworksBuildPhase section */ 75 | 76 | /* Begin PBXGroup section */ 77 | 00B98170481F4903E778B46A /* SAWaveToast */ = { 78 | isa = PBXGroup; 79 | children = ( 80 | A7C205F0CDB4BFA2C1AF05ED /* SAWaveToast.swift */, 81 | 9D7F9E271B9410D0001E3DB3 /* SAWaveView.swift */, 82 | ); 83 | path = SAWaveToast; 84 | sourceTree = ""; 85 | }; 86 | 0CB704DE52966246CE111689 /* Pods */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 322C6BB2515419470EE22DE6 /* Info.plist */, 90 | A1BF768D19DC530B512A04B0 /* Pods.modulemap */, 91 | CCD4E12DCCA219B5527F55F6 /* Pods-acknowledgements.markdown */, 92 | AF4F24C9C23ED8F42E923576 /* Pods-acknowledgements.plist */, 93 | B3F3B8EF7277C42D7DA53478 /* Pods-dummy.m */, 94 | 1CC7827015E587ADE63646EF /* Pods-environment.h */, 95 | AD14F0E40FD793D644B90F73 /* Pods-frameworks.sh */, 96 | 174608E32670EC3334EEE699 /* Pods-resources.sh */, 97 | C636364DBE8D97C581FF59F5 /* Pods-umbrella.h */, 98 | 78C2308440F8D91CB60C57B0 /* Pods.debug.xcconfig */, 99 | 886EBE60D00282F4E240E31B /* Pods.release.xcconfig */, 100 | ); 101 | name = Pods; 102 | path = "Target Support Files/Pods"; 103 | sourceTree = ""; 104 | }; 105 | 22F1C5213B0A1671EDCFEC02 /* SAWaveToast */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | 00B98170481F4903E778B46A /* SAWaveToast */, 109 | A481C1C34181F94F10C89E0D /* Support Files */, 110 | ); 111 | name = SAWaveToast; 112 | path = ../..; 113 | sourceTree = ""; 114 | }; 115 | 3289966DC1FE71FCE0FF7855 /* Development Pods */ = { 116 | isa = PBXGroup; 117 | children = ( 118 | 22F1C5213B0A1671EDCFEC02 /* SAWaveToast */, 119 | ); 120 | name = "Development Pods"; 121 | sourceTree = ""; 122 | }; 123 | 3A5E552DD924CDFCD967155F /* Frameworks */ = { 124 | isa = PBXGroup; 125 | children = ( 126 | 6611F3BAF5B62A1DCC077632 /* iOS */, 127 | ); 128 | name = Frameworks; 129 | sourceTree = ""; 130 | }; 131 | 4624CA2005A5A3FE4A79C546 /* Products */ = { 132 | isa = PBXGroup; 133 | children = ( 134 | 73060CBBB226472AB6DE966C /* Pods.framework */, 135 | 49A9C49701FA8A10E53AA9F4 /* SAWaveToast.framework */, 136 | ); 137 | name = Products; 138 | sourceTree = ""; 139 | }; 140 | 6611F3BAF5B62A1DCC077632 /* iOS */ = { 141 | isa = PBXGroup; 142 | children = ( 143 | B83F1F363CA2C927CE14B2B6 /* Foundation.framework */, 144 | ); 145 | name = iOS; 146 | sourceTree = ""; 147 | }; 148 | A481C1C34181F94F10C89E0D /* Support Files */ = { 149 | isa = PBXGroup; 150 | children = ( 151 | D62FB6C27E9D5389391B7AD1 /* Info.plist */, 152 | F17C992185CC0CF7D1EDF78C /* Pods-SAWaveToast.modulemap */, 153 | 98DC2366FAC25118D706B407 /* Pods-SAWaveToast.xcconfig */, 154 | 9DF05312CF7555180ECE9176 /* Pods-SAWaveToast-Private.xcconfig */, 155 | 884579E0540ECA3DFE53613F /* Pods-SAWaveToast-dummy.m */, 156 | 5AE4BB3A73F73876E12C39EA /* Pods-SAWaveToast-prefix.pch */, 157 | 6514C83EFE8F4EE67BA3BC92 /* Pods-SAWaveToast-umbrella.h */, 158 | ); 159 | name = "Support Files"; 160 | path = "SAWaveToastSample/Pods/Target Support Files/Pods-SAWaveToast"; 161 | sourceTree = ""; 162 | }; 163 | D9A1E17BEC9F01FFAD339454 = { 164 | isa = PBXGroup; 165 | children = ( 166 | 87C35E3FF2B5E6222ECB9F72 /* Podfile */, 167 | 3289966DC1FE71FCE0FF7855 /* Development Pods */, 168 | 3A5E552DD924CDFCD967155F /* Frameworks */, 169 | 4624CA2005A5A3FE4A79C546 /* Products */, 170 | E5BD08639DAC4C9A2FFA76C7 /* Targets Support Files */, 171 | ); 172 | sourceTree = ""; 173 | }; 174 | E5BD08639DAC4C9A2FFA76C7 /* Targets Support Files */ = { 175 | isa = PBXGroup; 176 | children = ( 177 | 0CB704DE52966246CE111689 /* Pods */, 178 | ); 179 | name = "Targets Support Files"; 180 | sourceTree = ""; 181 | }; 182 | /* End PBXGroup section */ 183 | 184 | /* Begin PBXHeadersBuildPhase section */ 185 | 67D014CEF0CDFDD165D3E1A9 /* Headers */ = { 186 | isa = PBXHeadersBuildPhase; 187 | buildActionMask = 2147483647; 188 | files = ( 189 | 051323F1DB1955D4E5DD50A1 /* Pods-umbrella.h in Headers */, 190 | ); 191 | runOnlyForDeploymentPostprocessing = 0; 192 | }; 193 | F65158D33F1294A40A0DA0CD /* Headers */ = { 194 | isa = PBXHeadersBuildPhase; 195 | buildActionMask = 2147483647; 196 | files = ( 197 | 13E4325A8C63B96264D72F24 /* Pods-SAWaveToast-umbrella.h in Headers */, 198 | ); 199 | runOnlyForDeploymentPostprocessing = 0; 200 | }; 201 | /* End PBXHeadersBuildPhase section */ 202 | 203 | /* Begin PBXNativeTarget section */ 204 | 22B2D9BBBDA20FAC05AADA87 /* Pods-SAWaveToast */ = { 205 | isa = PBXNativeTarget; 206 | buildConfigurationList = 03638424BE688A7143B89395 /* Build configuration list for PBXNativeTarget "Pods-SAWaveToast" */; 207 | buildPhases = ( 208 | B264B4CDCCFD22CB5A37556C /* Sources */, 209 | F6FAFC4B8DDFAD724958AE8B /* Frameworks */, 210 | F65158D33F1294A40A0DA0CD /* Headers */, 211 | ); 212 | buildRules = ( 213 | ); 214 | dependencies = ( 215 | ); 216 | name = "Pods-SAWaveToast"; 217 | productName = "Pods-SAWaveToast"; 218 | productReference = 49A9C49701FA8A10E53AA9F4 /* SAWaveToast.framework */; 219 | productType = "com.apple.product-type.framework"; 220 | }; 221 | 840ECDE7CE668581CDDBCDFC /* Pods */ = { 222 | isa = PBXNativeTarget; 223 | buildConfigurationList = F26397ED6948056849005A3F /* Build configuration list for PBXNativeTarget "Pods" */; 224 | buildPhases = ( 225 | 796C3A732B9D3EFB8A2CC51E /* Sources */, 226 | 647C359EBE782F19151765E1 /* Frameworks */, 227 | 67D014CEF0CDFDD165D3E1A9 /* Headers */, 228 | ); 229 | buildRules = ( 230 | ); 231 | dependencies = ( 232 | CD5A5A5B385724E94EA8DA75 /* PBXTargetDependency */, 233 | ); 234 | name = Pods; 235 | productName = Pods; 236 | productReference = 73060CBBB226472AB6DE966C /* Pods.framework */; 237 | productType = "com.apple.product-type.framework"; 238 | }; 239 | /* End PBXNativeTarget section */ 240 | 241 | /* Begin PBXProject section */ 242 | 3648403E0F3053D2CA80662D /* Project object */ = { 243 | isa = PBXProject; 244 | attributes = { 245 | LastSwiftUpdateCheck = 0700; 246 | LastUpgradeCheck = 0510; 247 | }; 248 | buildConfigurationList = FD1FF7EA26F92CDEB64C1951 /* Build configuration list for PBXProject "Pods" */; 249 | compatibilityVersion = "Xcode 3.2"; 250 | developmentRegion = English; 251 | hasScannedForEncodings = 0; 252 | knownRegions = ( 253 | en, 254 | ); 255 | mainGroup = D9A1E17BEC9F01FFAD339454; 256 | productRefGroup = 4624CA2005A5A3FE4A79C546 /* Products */; 257 | projectDirPath = ""; 258 | projectRoot = ""; 259 | targets = ( 260 | 840ECDE7CE668581CDDBCDFC /* Pods */, 261 | 22B2D9BBBDA20FAC05AADA87 /* Pods-SAWaveToast */, 262 | ); 263 | }; 264 | /* End PBXProject section */ 265 | 266 | /* Begin PBXSourcesBuildPhase section */ 267 | 796C3A732B9D3EFB8A2CC51E /* Sources */ = { 268 | isa = PBXSourcesBuildPhase; 269 | buildActionMask = 2147483647; 270 | files = ( 271 | 2521139E87E2575119B57175 /* Pods-dummy.m in Sources */, 272 | ); 273 | runOnlyForDeploymentPostprocessing = 0; 274 | }; 275 | B264B4CDCCFD22CB5A37556C /* Sources */ = { 276 | isa = PBXSourcesBuildPhase; 277 | buildActionMask = 2147483647; 278 | files = ( 279 | 9D7F9E291B94110C001E3DB3 /* SAWaveView.swift in Sources */, 280 | 7DA2647BB80D17D3599978A5 /* Pods-SAWaveToast-dummy.m in Sources */, 281 | 92445DFFEDF3D1B56C478EBC /* SAWaveToast.swift in Sources */, 282 | ); 283 | runOnlyForDeploymentPostprocessing = 0; 284 | }; 285 | /* End PBXSourcesBuildPhase section */ 286 | 287 | /* Begin PBXTargetDependency section */ 288 | CD5A5A5B385724E94EA8DA75 /* PBXTargetDependency */ = { 289 | isa = PBXTargetDependency; 290 | name = "Pods-SAWaveToast"; 291 | target = 22B2D9BBBDA20FAC05AADA87 /* Pods-SAWaveToast */; 292 | targetProxy = 3BF264390D47F08BB561D71A /* PBXContainerItemProxy */; 293 | }; 294 | /* End PBXTargetDependency section */ 295 | 296 | /* Begin XCBuildConfiguration section */ 297 | 083D09E63736CCD3CEACB646 /* Release */ = { 298 | isa = XCBuildConfiguration; 299 | baseConfigurationReference = 886EBE60D00282F4E240E31B /* Pods.release.xcconfig */; 300 | buildSettings = { 301 | CLANG_ENABLE_MODULES = YES; 302 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 303 | CURRENT_PROJECT_VERSION = 1; 304 | DEFINES_MODULE = YES; 305 | DYLIB_COMPATIBILITY_VERSION = 1; 306 | DYLIB_CURRENT_VERSION = 1; 307 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 308 | ENABLE_STRICT_OBJC_MSGSEND = YES; 309 | INFOPLIST_FILE = "Target Support Files/Pods/Info.plist"; 310 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 311 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 312 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 313 | MODULEMAP_FILE = "Target Support Files/Pods/Pods.modulemap"; 314 | MTL_ENABLE_DEBUG_INFO = NO; 315 | OTHER_LDFLAGS = ""; 316 | OTHER_LIBTOOLFLAGS = ""; 317 | PODS_ROOT = "$(SRCROOT)"; 318 | PRODUCT_NAME = Pods; 319 | SDKROOT = iphoneos; 320 | SKIP_INSTALL = YES; 321 | TARGETED_DEVICE_FAMILY = "1,2"; 322 | VERSIONING_SYSTEM = "apple-generic"; 323 | VERSION_INFO_PREFIX = ""; 324 | }; 325 | name = Release; 326 | }; 327 | 2544C32B4020D02BF947E5E6 /* Release */ = { 328 | isa = XCBuildConfiguration; 329 | buildSettings = { 330 | ALWAYS_SEARCH_USER_PATHS = NO; 331 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 332 | CLANG_CXX_LIBRARY = "libc++"; 333 | CLANG_ENABLE_MODULES = YES; 334 | CLANG_ENABLE_OBJC_ARC = YES; 335 | CLANG_WARN_BOOL_CONVERSION = YES; 336 | CLANG_WARN_CONSTANT_CONVERSION = YES; 337 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 338 | CLANG_WARN_EMPTY_BODY = YES; 339 | CLANG_WARN_ENUM_CONVERSION = YES; 340 | CLANG_WARN_INT_CONVERSION = YES; 341 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 342 | CLANG_WARN_UNREACHABLE_CODE = YES; 343 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 344 | COPY_PHASE_STRIP = YES; 345 | ENABLE_NS_ASSERTIONS = NO; 346 | GCC_C_LANGUAGE_STANDARD = gnu99; 347 | GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1"; 348 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 349 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 350 | GCC_WARN_UNDECLARED_SELECTOR = YES; 351 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 352 | GCC_WARN_UNUSED_FUNCTION = YES; 353 | GCC_WARN_UNUSED_VARIABLE = YES; 354 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 355 | STRIP_INSTALLED_PRODUCT = NO; 356 | SYMROOT = "${SRCROOT}/../build"; 357 | VALIDATE_PRODUCT = YES; 358 | }; 359 | name = Release; 360 | }; 361 | 34300681222051D97D54A4ED /* Debug */ = { 362 | isa = XCBuildConfiguration; 363 | baseConfigurationReference = 78C2308440F8D91CB60C57B0 /* Pods.debug.xcconfig */; 364 | buildSettings = { 365 | CLANG_ENABLE_MODULES = YES; 366 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 367 | CURRENT_PROJECT_VERSION = 1; 368 | DEFINES_MODULE = YES; 369 | DYLIB_COMPATIBILITY_VERSION = 1; 370 | DYLIB_CURRENT_VERSION = 1; 371 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 372 | ENABLE_STRICT_OBJC_MSGSEND = YES; 373 | INFOPLIST_FILE = "Target Support Files/Pods/Info.plist"; 374 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 375 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 376 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 377 | MODULEMAP_FILE = "Target Support Files/Pods/Pods.modulemap"; 378 | MTL_ENABLE_DEBUG_INFO = YES; 379 | OTHER_LDFLAGS = ""; 380 | OTHER_LIBTOOLFLAGS = ""; 381 | PODS_ROOT = "$(SRCROOT)"; 382 | PRODUCT_NAME = Pods; 383 | SDKROOT = iphoneos; 384 | SKIP_INSTALL = YES; 385 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 386 | TARGETED_DEVICE_FAMILY = "1,2"; 387 | VERSIONING_SYSTEM = "apple-generic"; 388 | VERSION_INFO_PREFIX = ""; 389 | }; 390 | name = Debug; 391 | }; 392 | C297DB71DF3AE54A3D1B7850 /* Release */ = { 393 | isa = XCBuildConfiguration; 394 | baseConfigurationReference = 9DF05312CF7555180ECE9176 /* Pods-SAWaveToast-Private.xcconfig */; 395 | buildSettings = { 396 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 397 | CURRENT_PROJECT_VERSION = 1; 398 | DEFINES_MODULE = YES; 399 | DYLIB_COMPATIBILITY_VERSION = 1; 400 | DYLIB_CURRENT_VERSION = 1; 401 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 402 | ENABLE_STRICT_OBJC_MSGSEND = YES; 403 | GCC_PREFIX_HEADER = "Target Support Files/Pods-SAWaveToast/Pods-SAWaveToast-prefix.pch"; 404 | INFOPLIST_FILE = "Target Support Files/Pods-SAWaveToast/Info.plist"; 405 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 406 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 407 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 408 | MODULEMAP_FILE = "Target Support Files/Pods-SAWaveToast/Pods-SAWaveToast.modulemap"; 409 | MTL_ENABLE_DEBUG_INFO = NO; 410 | PRODUCT_NAME = SAWaveToast; 411 | SDKROOT = iphoneos; 412 | SKIP_INSTALL = YES; 413 | TARGETED_DEVICE_FAMILY = "1,2"; 414 | VERSIONING_SYSTEM = "apple-generic"; 415 | VERSION_INFO_PREFIX = ""; 416 | }; 417 | name = Release; 418 | }; 419 | E904078725200DB6BD5AFCAA /* Debug */ = { 420 | isa = XCBuildConfiguration; 421 | baseConfigurationReference = 9DF05312CF7555180ECE9176 /* Pods-SAWaveToast-Private.xcconfig */; 422 | buildSettings = { 423 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 424 | CURRENT_PROJECT_VERSION = 1; 425 | DEFINES_MODULE = YES; 426 | DYLIB_COMPATIBILITY_VERSION = 1; 427 | DYLIB_CURRENT_VERSION = 1; 428 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 429 | ENABLE_STRICT_OBJC_MSGSEND = YES; 430 | GCC_PREFIX_HEADER = "Target Support Files/Pods-SAWaveToast/Pods-SAWaveToast-prefix.pch"; 431 | INFOPLIST_FILE = "Target Support Files/Pods-SAWaveToast/Info.plist"; 432 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 433 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 434 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 435 | MODULEMAP_FILE = "Target Support Files/Pods-SAWaveToast/Pods-SAWaveToast.modulemap"; 436 | MTL_ENABLE_DEBUG_INFO = YES; 437 | PRODUCT_NAME = SAWaveToast; 438 | SDKROOT = iphoneos; 439 | SKIP_INSTALL = YES; 440 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 441 | TARGETED_DEVICE_FAMILY = "1,2"; 442 | VERSIONING_SYSTEM = "apple-generic"; 443 | VERSION_INFO_PREFIX = ""; 444 | }; 445 | name = Debug; 446 | }; 447 | F114907C39D9A243C43BFF9A /* Debug */ = { 448 | isa = XCBuildConfiguration; 449 | buildSettings = { 450 | ALWAYS_SEARCH_USER_PATHS = NO; 451 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 452 | CLANG_CXX_LIBRARY = "libc++"; 453 | CLANG_ENABLE_MODULES = YES; 454 | CLANG_ENABLE_OBJC_ARC = YES; 455 | CLANG_WARN_BOOL_CONVERSION = YES; 456 | CLANG_WARN_CONSTANT_CONVERSION = YES; 457 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 458 | CLANG_WARN_EMPTY_BODY = YES; 459 | CLANG_WARN_ENUM_CONVERSION = YES; 460 | CLANG_WARN_INT_CONVERSION = YES; 461 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 462 | CLANG_WARN_UNREACHABLE_CODE = YES; 463 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 464 | COPY_PHASE_STRIP = NO; 465 | GCC_C_LANGUAGE_STANDARD = gnu99; 466 | GCC_DYNAMIC_NO_PIC = NO; 467 | GCC_OPTIMIZATION_LEVEL = 0; 468 | GCC_PREPROCESSOR_DEFINITIONS = ( 469 | "DEBUG=1", 470 | "$(inherited)", 471 | ); 472 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 473 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 474 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 475 | GCC_WARN_UNDECLARED_SELECTOR = YES; 476 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 477 | GCC_WARN_UNUSED_FUNCTION = YES; 478 | GCC_WARN_UNUSED_VARIABLE = YES; 479 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 480 | ONLY_ACTIVE_ARCH = YES; 481 | STRIP_INSTALLED_PRODUCT = NO; 482 | SYMROOT = "${SRCROOT}/../build"; 483 | }; 484 | name = Debug; 485 | }; 486 | /* End XCBuildConfiguration section */ 487 | 488 | /* Begin XCConfigurationList section */ 489 | 03638424BE688A7143B89395 /* Build configuration list for PBXNativeTarget "Pods-SAWaveToast" */ = { 490 | isa = XCConfigurationList; 491 | buildConfigurations = ( 492 | E904078725200DB6BD5AFCAA /* Debug */, 493 | C297DB71DF3AE54A3D1B7850 /* Release */, 494 | ); 495 | defaultConfigurationIsVisible = 0; 496 | defaultConfigurationName = Release; 497 | }; 498 | F26397ED6948056849005A3F /* Build configuration list for PBXNativeTarget "Pods" */ = { 499 | isa = XCConfigurationList; 500 | buildConfigurations = ( 501 | 34300681222051D97D54A4ED /* Debug */, 502 | 083D09E63736CCD3CEACB646 /* Release */, 503 | ); 504 | defaultConfigurationIsVisible = 0; 505 | defaultConfigurationName = Release; 506 | }; 507 | FD1FF7EA26F92CDEB64C1951 /* Build configuration list for PBXProject "Pods" */ = { 508 | isa = XCConfigurationList; 509 | buildConfigurations = ( 510 | F114907C39D9A243C43BFF9A /* Debug */, 511 | 2544C32B4020D02BF947E5E6 /* Release */, 512 | ); 513 | defaultConfigurationIsVisible = 0; 514 | defaultConfigurationName = Release; 515 | }; 516 | /* End XCConfigurationList section */ 517 | }; 518 | rootObject = 3648403E0F3053D2CA80662D /* Project object */; 519 | } 520 | --------------------------------------------------------------------------------