├── Pod ├── Assets │ ├── .gitkeep │ └── screenshot.gif └── Classes │ ├── .gitkeep │ ├── YPBubbleTransition.h │ └── YPBubbleTransition.m ├── Example ├── Tests │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── Tests-Info.plist ├── Pods │ ├── Target Support Files │ │ ├── Pods-Tests-BubbleTransition │ │ │ ├── Pods-Tests-BubbleTransition.xcconfig │ │ │ ├── Pods-Tests-BubbleTransition-prefix.pch │ │ │ ├── Pods-Tests-BubbleTransition-dummy.m │ │ │ └── Pods-Tests-BubbleTransition-Private.xcconfig │ │ ├── Pods-BubbleTransition-BubbleTransition │ │ │ ├── Pods-BubbleTransition-BubbleTransition.xcconfig │ │ │ ├── Pods-BubbleTransition-BubbleTransition-prefix.pch │ │ │ ├── Pods-BubbleTransition-BubbleTransition-dummy.m │ │ │ └── Pods-BubbleTransition-BubbleTransition-Private.xcconfig │ │ ├── Pods-Tests │ │ │ ├── Pods-Tests-dummy.m │ │ │ ├── Pods-Tests.debug.xcconfig │ │ │ ├── Pods-Tests.release.xcconfig │ │ │ ├── Pods-Tests-environment.h │ │ │ ├── Pods-Tests-acknowledgements.markdown │ │ │ ├── Pods-Tests-acknowledgements.plist │ │ │ └── Pods-Tests-resources.sh │ │ └── Pods-BubbleTransition │ │ │ ├── Pods-BubbleTransition-dummy.m │ │ │ ├── Pods-BubbleTransition.debug.xcconfig │ │ │ ├── Pods-BubbleTransition.release.xcconfig │ │ │ ├── Pods-BubbleTransition-environment.h │ │ │ ├── Pods-BubbleTransition-acknowledgements.markdown │ │ │ ├── Pods-BubbleTransition-acknowledgements.plist │ │ │ └── Pods-BubbleTransition-resources.sh │ ├── Headers │ │ ├── Private │ │ │ └── BubbleTransition │ │ │ │ └── YPBubbleTransition.h │ │ └── Public │ │ │ └── BubbleTransition │ │ │ └── YPBubbleTransition.h │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── BubbleTransition.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── BubbleTransition │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── YPViewController.h │ ├── YPModalViewController.h │ ├── YPAppDelegate.h │ ├── main.m │ ├── BubbleTransition-Prefix.pch │ ├── YPModalViewController.m │ ├── Images.xcassets │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ ├── BubbleTransition-Info.plist │ ├── YPAppDelegate.m │ ├── YPViewController.m │ └── Launch Screen.storyboard ├── BubbleTransition.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── BubbleTransition-Example.xcscheme │ └── project.pbxproj ├── Podfile ├── Podfile.lock └── BubbleTransition.xcworkspace │ └── contents.xcworkspacedata ├── .travis.yml ├── .gitignore ├── LICENSE ├── BubbleTransition-objc.podspec └── README.md /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-BubbleTransition/Pods-Tests-BubbleTransition.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/BubbleTransition/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/BubbleTransition/YPBubbleTransition.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/YPBubbleTransition.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/BubbleTransition/YPBubbleTransition.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/YPBubbleTransition.h -------------------------------------------------------------------------------- /Pod/Assets/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epingwang/BubbleTransition/HEAD/Pod/Assets/screenshot.gif -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BubbleTransition-BubbleTransition/Pods-BubbleTransition-BubbleTransition.xcconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-BubbleTransition/Pods-Tests-BubbleTransition-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-Tests-environment.h" 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BubbleTransition-BubbleTransition/Pods-BubbleTransition-BubbleTransition-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-BubbleTransition-environment.h" 6 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every test case source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | 9 | 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BubbleTransition/Pods-BubbleTransition-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_BubbleTransition : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_BubbleTransition 5 | @end 6 | -------------------------------------------------------------------------------- /Example/BubbleTransition.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-BubbleTransition/Pods-Tests-BubbleTransition-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Tests_BubbleTransition : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Tests_BubbleTransition 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | 3 | target 'BubbleTransition', :exclusive => true do 4 | pod "BubbleTransition", :path => "../" 5 | end 6 | 7 | target 'Tests', :exclusive => true do 8 | pod "BubbleTransition", :path => "../" 9 | 10 | 11 | end 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BubbleTransition-BubbleTransition/Pods-BubbleTransition-BubbleTransition-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_BubbleTransition_BubbleTransition : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_BubbleTransition_BubbleTransition 5 | @end 6 | -------------------------------------------------------------------------------- /Example/BubbleTransition/YPViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YPViewController.h 3 | // BubbleTransition 4 | // 5 | // Created by 王易平 on 05/19/2015. 6 | // Copyright (c) 2014 王易平. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YPViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - BubbleTransition (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - BubbleTransition (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | BubbleTransition: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | BubbleTransition: 41a3d3e115475e9671d5e68bb203ee05f09b83a1 13 | 14 | COCOAPODS: 0.36.4 15 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - BubbleTransition (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - BubbleTransition (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | BubbleTransition: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | BubbleTransition: 41a3d3e115475e9671d5e68bb203ee05f09b83a1 13 | 14 | COCOAPODS: 0.36.4 15 | -------------------------------------------------------------------------------- /Example/BubbleTransition/YPModalViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // YPModalViewController.h 3 | // BubbleTransition 4 | // 5 | // Created by 王易平 on 15/5/20. 6 | // Copyright (c) 2015年 王易平. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YPModalViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Example/BubbleTransition.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/BubbleTransition/YPAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // YPAppDelegate.h 3 | // BubbleTransition 4 | // 5 | // Created by CocoaPods on 05/19/2015. 6 | // Copyright (c) 2014 王易平. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YPAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Example/BubbleTransition/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // BubbleTransition 4 | // 5 | // Created by 王易平 on 05/19/2015. 6 | // Copyright (c) 2014 王易平. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "YPAppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([YPAppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-BubbleTransition/Pods-Tests-BubbleTransition-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-Tests-BubbleTransition.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/BubbleTransition" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BubbleTransition" 4 | OTHER_LDFLAGS = -ObjC 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /Example/BubbleTransition/BubbleTransition-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | #import 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BubbleTransition-BubbleTransition/Pods-BubbleTransition-BubbleTransition-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-BubbleTransition-BubbleTransition.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/BubbleTransition" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BubbleTransition" 4 | OTHER_LDFLAGS = -ObjC 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BubbleTransition" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/BubbleTransition" 4 | OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-Tests-BubbleTransition" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BubbleTransition" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/BubbleTransition" 4 | OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-Tests-BubbleTransition" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BubbleTransition/Pods-BubbleTransition.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BubbleTransition" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/BubbleTransition" 4 | OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-BubbleTransition-BubbleTransition" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BubbleTransition/Pods-BubbleTransition.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BubbleTransition" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/BubbleTransition" 4 | OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-BubbleTransition-BubbleTransition" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-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 | // BubbleTransition 10 | #define COCOAPODS_POD_AVAILABLE_BubbleTransition 11 | #define COCOAPODS_VERSION_MAJOR_BubbleTransition 0 12 | #define COCOAPODS_VERSION_MINOR_BubbleTransition 1 13 | #define COCOAPODS_VERSION_PATCH_BubbleTransition 0 14 | 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BubbleTransition/Pods-BubbleTransition-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 | // BubbleTransition 10 | #define COCOAPODS_POD_AVAILABLE_BubbleTransition 11 | #define COCOAPODS_VERSION_MAJOR_BubbleTransition 0 12 | #define COCOAPODS_VERSION_MINOR_BubbleTransition 1 13 | #define COCOAPODS_VERSION_PATCH_BubbleTransition 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/BubbleTransition.xcworkspace -scheme BubbleTransition-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c 15 | - pod lib lint --quick 16 | -------------------------------------------------------------------------------- /Pod/Classes/YPBubbleTransition.h: -------------------------------------------------------------------------------- 1 | // 2 | // YPBubbleTransition.h 3 | // Pods 4 | // 5 | // Created by 王易平 on 15/5/19. 6 | // 7 | // 8 | 9 | #import 10 | 11 | typedef NS_ENUM(NSUInteger, YPBubbleTransitionMode) { 12 | YPBubbleTransitionModePresent, 13 | YPBubbleTransitionModeDismiss, 14 | }; 15 | 16 | @interface YPBubbleTransition : NSObject 17 | 18 | @property (nonatomic, assign) CGPoint startPoint; 19 | @property (nonatomic, assign) CGFloat duration; 20 | @property (nonatomic, assign) YPBubbleTransitionMode transitionMode; 21 | @property (nonatomic, strong) UIColor *bubbleColor; 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /.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 | # We recommend against adding the Pods directory to your .gitignore. However 26 | # you should judge for yourself, the pros and cons are mentioned at: 27 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 28 | # 29 | # Note: if you ignore the Pods directory, make sure to uncomment 30 | # `pod install` in .travis.yml 31 | # 32 | # Pods/ 33 | -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- 1 | // 2 | // BubbleTransitionTests.m 3 | // BubbleTransitionTests 4 | // 5 | // Created by 王易平 on 05/19/2015. 6 | // Copyright (c) 2014 王易平. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface Tests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation Tests 16 | 17 | - (void)setUp 18 | { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown 24 | { 25 | // Put teardown code here. This method is called after the invocation of each test method in the class. 26 | [super tearDown]; 27 | } 28 | 29 | - (void)testExample 30 | { 31 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); 32 | } 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/BubbleTransition.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "BubbleTransition", 3 | "version": "0.1.0", 4 | "summary": "A short description of BubbleTransition.", 5 | "description": " An optional longer description of BubbleTransition\n\n * Markdown format.\n * Don't worry about the indent, we strip it!\n", 6 | "homepage": "https://github.com/epingwang/BubbleTransition", 7 | "license": "MIT", 8 | "authors": { 9 | "王易平": "wangyiping1@letv.com" 10 | }, 11 | "source": { 12 | "git": "https://github.com/epingwang/BubbleTransition.git", 13 | "tag": "0.1.0" 14 | }, 15 | "platforms": { 16 | "ios": "7.0" 17 | }, 18 | "requires_arc": true, 19 | "source_files": "Pod/Classes/**/*", 20 | "resource_bundles": { 21 | "BubbleTransition": [ 22 | "Pod/Assets/*.png" 23 | ] 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Example/BubbleTransition/YPModalViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // YPModalViewController.m 3 | // BubbleTransition 4 | // 5 | // Created by 王易平 on 15/5/20. 6 | // Copyright (c) 2015年 王易平. All rights reserved. 7 | // 8 | 9 | #import "YPModalViewController.h" 10 | 11 | @interface YPModalViewController () 12 | 13 | @property IBOutlet UIButton *button; 14 | 15 | @end 16 | 17 | @implementation YPModalViewController 18 | 19 | -(void)viewWillAppear:(BOOL)animated 20 | { 21 | [super viewWillAppear:animated]; 22 | 23 | [UIView animateWithDuration:0.5f animations:^{ 24 | self.button.transform = CGAffineTransformMakeRotation(-M_PI_4*3.0f); 25 | }]; 26 | } 27 | 28 | -(void)viewWillDisappear:(BOOL)animated 29 | { 30 | [super viewWillDisappear:animated]; 31 | 32 | [UIView animateWithDuration:0.5f animations:^{ 33 | self.button.transform = CGAffineTransformIdentity; 34 | }]; 35 | } 36 | 37 | -(IBAction)closeAction:(id)sender 38 | { 39 | [self dismissViewControllerAnimated:YES completion:nil]; 40 | } 41 | 42 | 43 | @end 44 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 王易平 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 | -------------------------------------------------------------------------------- /Example/BubbleTransition/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "subtype" : "retina4", 14 | "extent" : "full-screen", 15 | "minimum-system-version" : "7.0", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "orientation" : "portrait", 20 | "idiom" : "ipad", 21 | "extent" : "full-screen", 22 | "minimum-system-version" : "7.0", 23 | "scale" : "1x" 24 | }, 25 | { 26 | "orientation" : "landscape", 27 | "idiom" : "ipad", 28 | "extent" : "full-screen", 29 | "minimum-system-version" : "7.0", 30 | "scale" : "1x" 31 | }, 32 | { 33 | "orientation" : "portrait", 34 | "idiom" : "ipad", 35 | "extent" : "full-screen", 36 | "minimum-system-version" : "7.0", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "orientation" : "landscape", 41 | "idiom" : "ipad", 42 | "extent" : "full-screen", 43 | "minimum-system-version" : "7.0", 44 | "scale" : "2x" 45 | } 46 | ], 47 | "info" : { 48 | "version" : 1, 49 | "author" : "xcode" 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## BubbleTransition 5 | 6 | Copyright (c) 2015 王易平 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 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BubbleTransition/Pods-BubbleTransition-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## BubbleTransition 5 | 6 | Copyright (c) 2015 王易平 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 | -------------------------------------------------------------------------------- /Example/BubbleTransition/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "ipad", 35 | "size" : "29x29", 36 | "scale" : "1x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "29x29", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "40x40", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "40x40", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "76x76", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "76x76", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "83.5x83.5", 66 | "scale" : "2x" 67 | } 68 | ], 69 | "info" : { 70 | "version" : 1, 71 | "author" : "xcode" 72 | } 73 | } -------------------------------------------------------------------------------- /BubbleTransition-objc.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint BubbleTransition.podspec' to ensure this is a 3 | # valid spec and remove all comments before submitting the spec. 4 | # 5 | # Any lines starting with a # are optional, but encouraged 6 | # 7 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 8 | # 9 | 10 | Pod::Spec.new do |s| 11 | s.name = "BubbleTransition-objc" 12 | s.version = "0.1.0" 13 | s.summary = "An objective-C version of andreamazz/BubbleTransition" 14 | s.description = <<-DESC 15 | A custom modal transition that presents and dismiss a controller inside an expanding and shrinking bubble. 16 | 17 | * Markdown format. 18 | * Don't worry about the indent, we strip it! 19 | DESC 20 | s.homepage = "https://github.com/epingwang/BubbleTransition" 21 | # s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2" 22 | s.license = 'MIT' 23 | s.author = { "王易平" => "me@epingwang.me" } 24 | s.source = { :git => "https://github.com/epingwang/BubbleTransition.git", :tag => s.version.to_s } 25 | # s.social_media_url = 'https://twitter.com/' 26 | 27 | s.platform = :ios, '7.0' 28 | s.requires_arc = true 29 | 30 | s.source_files = 'Pod/Classes/**/*' 31 | s.resource_bundles = { 32 | 'BubbleTransition' => ['Pod/Assets/*.png'] 33 | } 34 | 35 | # s.public_header_files = 'Pod/Classes/**/*.h' 36 | # s.frameworks = 'UIKit', 'MapKit' 37 | # s.dependency 'AFNetworking', '~> 2.3' 38 | end 39 | -------------------------------------------------------------------------------- /Example/BubbleTransition/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/BubbleTransition/BubbleTransition-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | Launch Screen 29 | UIMainStoryboardFile 30 | Main_iPhone 31 | UIMainStoryboardFile~ipad 32 | Main_iPad 33 | UIRequiredDeviceCapabilities 34 | 35 | armv7 36 | 37 | UISupportedInterfaceOrientations 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationLandscapeLeft 41 | UIInterfaceOrientationLandscapeRight 42 | 43 | UISupportedInterfaceOrientations~ipad 44 | 45 | UIInterfaceOrientationPortrait 46 | UIInterfaceOrientationPortraitUpsideDown 47 | UIInterfaceOrientationLandscapeLeft 48 | UIInterfaceOrientationLandscapeRight 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /Example/BubbleTransition/YPAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // YPAppDelegate.m 3 | // BubbleTransition 4 | // 5 | // Created by CocoaPods on 05/19/2015. 6 | // Copyright (c) 2014 王易平. All rights reserved. 7 | // 8 | 9 | #import "YPAppDelegate.h" 10 | 11 | @implementation YPAppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | // Override point for customization after application launch. 16 | return YES; 17 | } 18 | 19 | - (void)applicationWillResignActive:(UIApplication *)application 20 | { 21 | // 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. 22 | // 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. 23 | } 24 | 25 | - (void)applicationDidEnterBackground:(UIApplication *)application 26 | { 27 | // 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. 28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 29 | } 30 | 31 | - (void)applicationWillEnterForeground:(UIApplication *)application 32 | { 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 | - (void)applicationDidBecomeActive:(UIApplication *)application 37 | { 38 | // 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. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application 42 | { 43 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 44 | } 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /Example/BubbleTransition/YPViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // YPViewController.m 3 | // BubbleTransition 4 | // 5 | // Created by 王易平 on 05/19/2015. 6 | // Copyright (c) 2014 王易平. All rights reserved. 7 | // 8 | 9 | #import "YPViewController.h" 10 | #import 11 | 12 | @interface YPViewController () 13 | 14 | @property IBOutlet UIButton *button; 15 | @property (nonatomic, strong) YPBubbleTransition *transition; 16 | 17 | 18 | @end 19 | 20 | @implementation YPViewController 21 | 22 | - (void)viewDidLoad 23 | { 24 | [super viewDidLoad]; 25 | // Do any additional setup after loading the view, typically from a nib. 26 | 27 | self.button.layer.cornerRadius = self.button.frame.size.width/2.0f; 28 | } 29 | 30 | - (void)didReceiveMemoryWarning 31 | { 32 | [super didReceiveMemoryWarning]; 33 | // Dispose of any resources that can be recreated. 34 | } 35 | 36 | -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender 37 | { 38 | UIViewController *controller = segue.destinationViewController; 39 | controller.transitioningDelegate = self; 40 | controller.modalPresentationStyle = UIModalPresentationCustom; 41 | } 42 | 43 | -(id)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source 44 | { 45 | self.transition.transitionMode = YPBubbleTransitionModePresent; 46 | self.transition.startPoint = self.button.center; 47 | self.transition.bubbleColor = self.button.backgroundColor; 48 | return self.transition; 49 | } 50 | 51 | -(id)animationControllerForDismissedController:(UIViewController *)dismissed 52 | { 53 | self.transition.transitionMode = YPBubbleTransitionModeDismiss; 54 | self.transition.startPoint = self.button.center; 55 | self.transition.bubbleColor = self.button.backgroundColor; 56 | return self.transition; 57 | } 58 | 59 | -(YPBubbleTransition *)transition 60 | { 61 | if (!_transition) { 62 | _transition = [[YPBubbleTransition alloc] init]; 63 | } 64 | return _transition; 65 | } 66 | 67 | @end 68 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-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 王易平 <wangyiping1@letv.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 | BubbleTransition 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 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BubbleTransition/Pods-BubbleTransition-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 王易平 <wangyiping1@letv.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 | BubbleTransition 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BubbleTransition 2 | 3 | [![CI Status](http://img.shields.io/travis/王易平/BubbleTransition.svg?style=flat)](https://travis-ci.org/王易平/BubbleTransition) 4 | [![Version](https://img.shields.io/cocoapods/v/BubbleTransition.svg?style=flat)](http://cocoapods.org/pods/BubbleTransition) 5 | [![License](https://img.shields.io/cocoapods/l/BubbleTransition.svg?style=flat)](http://cocoapods.org/pods/BubbleTransition) 6 | [![Platform](https://img.shields.io/cocoapods/p/BubbleTransition.svg?style=flat)](http://cocoapods.org/pods/BubbleTransition) 7 | 8 | An objective-C version of [andreamazz/BubbleTransition](https://github.com/andreamazz/BubbleTransition). A custom modal transition that presents and dismiss a controller inside an expanding and shrinking _bubble_. 9 | 10 | # Screenshot 11 | ![BubbleTransition](https://raw.githubusercontent.com/epingwang/BubbleTransision/master/Pod/Assets/screenshot.gif) 12 | 13 | ## Usage 14 | 15 | Install through [Cocoapods](http://cocoapods.org) 16 | ```ruby 17 | pod 'BubbleTransition-objc', '~> 0.1' 18 | ``` 19 | 20 | ## Installation 21 | 22 | Have your viewcontroller conform to `UIViewControllerTransitioningDelegate`. Set the `transitionMode`, the `startingPoint`, the `bubbleColor` and the `duration`. 23 | ```objc 24 | 25 | -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender 26 | { 27 | UIViewController *controller = segue.destinationViewController; 28 | controller.transitioningDelegate = self; 29 | controller.modalPresentationStyle = UIModalPresentationCustom; 30 | } 31 | 32 | #pragma mark - UIViewControllerTransitioningDelegate 33 | 34 | -(id)animationControllerForPresentedController:(UIViewController *)presented presentingController:(UIViewController *)presenting sourceController:(UIViewController *)source 35 | { 36 | self.transition.transitionMode = YPBubbleTransitionModePresent; 37 | self.transition.startPoint = someButton.center; 38 | self.transition.bubbleColor = someButton.backgroundColor; 39 | return self.transition; 40 | } 41 | 42 | -(id)animationControllerForDismissedController:(UIViewController *)dismissed 43 | { 44 | self.transition.transitionMode = YPBubbleTransitionModeDismiss; 45 | self.transition.startPoint = someButton.center; 46 | self.transition.bubbleColor = someButton.backgroundColor; 47 | return self.transition; 48 | } 49 | 50 | 51 | ``` 52 | 53 | #Properties 54 | ```objc 55 | CGPoint startPoint = CGPointZero; 56 | ``` 57 | The point that originates the bubble. 58 | 59 | ```objc 60 | CGFloat duration = 0.5; 61 | ``` 62 | The transition duration. 63 | 64 | ```objc 65 | YPBubbleTransitionMode transitionMode = YPBubbleTransitionModePresent; 66 | ``` 67 | The transition direction. Either `YPBubbleTransitionModePresent` or `YPBubbleTransitionModeDismiss`. 68 | 69 | ```swift 70 | UIColor *bubbleColor = [UIColor whiteColor]; 71 | ``` 72 | The color of the bubble. Make sure that it matches the destination controller's background color. 73 | 74 | Checkout the sample project for the full implementation. 75 | 76 | ## Author 77 | 78 | epingwang 79 | 80 | ## License 81 | 82 | BubbleTransition is available under the MIT license. See the LICENSE file for more info. 83 | -------------------------------------------------------------------------------- /Example/BubbleTransition.xcodeproj/xcshareddata/xcschemes/BubbleTransition-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 61 | 62 | 68 | 69 | 70 | 71 | 72 | 73 | 79 | 80 | 86 | 87 | 88 | 89 | 91 | 92 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /Pod/Classes/YPBubbleTransition.m: -------------------------------------------------------------------------------- 1 | // 2 | // YPBubbleTransition.m 3 | // Pods 4 | // 5 | // Created by 王易平 on 15/5/19. 6 | // 7 | // 8 | 9 | #import "YPBubbleTransition.h" 10 | 11 | @interface YPBubbleTransition () 12 | 13 | @property (nonatomic, strong) UIView *bubble; 14 | 15 | @end 16 | 17 | @implementation YPBubbleTransition 18 | 19 | -(instancetype)init 20 | { 21 | if (self = [super init]) { 22 | self.startPoint = CGPointZero; 23 | self.duration = 0.5f; 24 | self.transitionMode = YPBubbleTransitionModePresent; 25 | self.bubbleColor = [UIColor redColor]; 26 | } 27 | return self; 28 | } 29 | 30 | -(NSTimeInterval)transitionDuration:(id)transitionContext 31 | { 32 | return self.duration; 33 | } 34 | 35 | -(void)animateTransition:(id)transitionContext 36 | { 37 | UIView *containerView = [transitionContext containerView]; 38 | 39 | if (self.transitionMode == YPBubbleTransitionModePresent) { 40 | UIView *presentedControllerView = nil; 41 | if ([transitionContext respondsToSelector:@selector(viewForKey:)]) { 42 | presentedControllerView = [transitionContext viewForKey:UITransitionContextToViewKey]; 43 | } 44 | else { 45 | presentedControllerView = [transitionContext viewControllerForKey:UITransitionContextToViewControllerKey].view; 46 | } 47 | 48 | CGPoint originalCenter = presentedControllerView.center; 49 | CGSize originalSize = presentedControllerView.frame.size; 50 | CGFloat lengthX = fmax(self.startPoint.x, originalSize.width - self.startPoint.x); 51 | CGFloat lengthY = fmax(self.startPoint.y, originalSize.height - self.startPoint.y); 52 | CGFloat offset = sqrt(lengthX * lengthX + lengthY * lengthY) * 2; 53 | CGSize size = CGSizeMake(offset, offset); 54 | 55 | self.bubble = [[UIView alloc] initWithFrame:CGRectMake(0, 0, size.width, size.height)]; 56 | self.bubble.layer.cornerRadius = size.height/2.0f; 57 | self.bubble.center = self.startPoint; 58 | self.bubble.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.001, 0.001); 59 | self.bubble.backgroundColor = self.bubbleColor; 60 | [containerView addSubview:self.bubble]; 61 | 62 | presentedControllerView.center = self.startPoint; 63 | presentedControllerView.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.001, 0.001); 64 | presentedControllerView.alpha = 0; 65 | [containerView addSubview:presentedControllerView]; 66 | 67 | [UIView animateWithDuration:self.duration animations:^{ 68 | self.bubble.transform = CGAffineTransformIdentity; 69 | presentedControllerView.transform = CGAffineTransformIdentity; 70 | presentedControllerView.alpha = 1; 71 | presentedControllerView.center = originalCenter; 72 | 73 | } completion:^(BOOL finished) { 74 | [transitionContext completeTransition:finished]; 75 | }]; 76 | 77 | } 78 | else if (self.transitionMode == YPBubbleTransitionModeDismiss) { 79 | UIView *returningControllerView = [transitionContext viewForKey:UITransitionContextFromViewKey]; 80 | 81 | [UIView animateWithDuration:self.duration animations:^{ 82 | self.bubble.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.001, 0.001); 83 | returningControllerView.transform = CGAffineTransformScale(CGAffineTransformIdentity, 0.001, 0.001); 84 | returningControllerView.center = self.startPoint; 85 | returningControllerView.alpha = 0; 86 | } completion:^(BOOL finished) { 87 | [returningControllerView removeFromSuperview]; 88 | [self.bubble removeFromSuperview]; 89 | [transitionContext completeTransition:finished]; 90 | }]; 91 | } 92 | else { 93 | 94 | } 95 | } 96 | 97 | 98 | 99 | @end 100 | -------------------------------------------------------------------------------- /Example/BubbleTransition/Launch Screen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 27 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-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 | realpath() { 12 | DIRECTORY=$(cd "${1%/*}" && pwd) 13 | FILENAME="${1##*/}" 14 | echo "$DIRECTORY/$FILENAME" 15 | } 16 | 17 | install_resource() 18 | { 19 | case $1 in 20 | *.storyboard) 21 | 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}" 22 | 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}" 23 | ;; 24 | *.xib) 25 | 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}" 26 | 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}" 27 | ;; 28 | *.framework) 29 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 30 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 31 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 32 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 33 | ;; 34 | *.xcdatamodel) 35 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 36 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 37 | ;; 38 | *.xcdatamodeld) 39 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 40 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 41 | ;; 42 | *.xcmappingmodel) 43 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 44 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 45 | ;; 46 | *.xcassets) 47 | ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") 48 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 49 | ;; 50 | /*) 51 | echo "$1" 52 | echo "$1" >> "$RESOURCES_TO_COPY" 53 | ;; 54 | *) 55 | echo "${PODS_ROOT}/$1" 56 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 57 | ;; 58 | esac 59 | } 60 | if [[ "$CONFIGURATION" == "Debug" ]]; then 61 | install_resource "${BUILT_PRODUCTS_DIR}/BubbleTransition.bundle" 62 | fi 63 | if [[ "$CONFIGURATION" == "Release" ]]; then 64 | install_resource "${BUILT_PRODUCTS_DIR}/BubbleTransition.bundle" 65 | fi 66 | 67 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 68 | if [[ "${ACTION}" == "install" ]]; then 69 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 70 | fi 71 | rm -f "$RESOURCES_TO_COPY" 72 | 73 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 74 | then 75 | case "${TARGETED_DEVICE_FAMILY}" in 76 | 1,2) 77 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 78 | ;; 79 | 1) 80 | TARGET_DEVICE_ARGS="--target-device iphone" 81 | ;; 82 | 2) 83 | TARGET_DEVICE_ARGS="--target-device ipad" 84 | ;; 85 | *) 86 | TARGET_DEVICE_ARGS="--target-device mac" 87 | ;; 88 | esac 89 | 90 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 91 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 92 | while read line; do 93 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 94 | XCASSET_FILES+=("$line") 95 | fi 96 | done <<<"$OTHER_XCASSETS" 97 | 98 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun 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}" 99 | fi 100 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-BubbleTransition/Pods-BubbleTransition-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 | realpath() { 12 | DIRECTORY=$(cd "${1%/*}" && pwd) 13 | FILENAME="${1##*/}" 14 | echo "$DIRECTORY/$FILENAME" 15 | } 16 | 17 | install_resource() 18 | { 19 | case $1 in 20 | *.storyboard) 21 | 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}" 22 | 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}" 23 | ;; 24 | *.xib) 25 | 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}" 26 | 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}" 27 | ;; 28 | *.framework) 29 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 30 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 31 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 32 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 33 | ;; 34 | *.xcdatamodel) 35 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 36 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 37 | ;; 38 | *.xcdatamodeld) 39 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 40 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 41 | ;; 42 | *.xcmappingmodel) 43 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 44 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 45 | ;; 46 | *.xcassets) 47 | ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") 48 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 49 | ;; 50 | /*) 51 | echo "$1" 52 | echo "$1" >> "$RESOURCES_TO_COPY" 53 | ;; 54 | *) 55 | echo "${PODS_ROOT}/$1" 56 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 57 | ;; 58 | esac 59 | } 60 | if [[ "$CONFIGURATION" == "Debug" ]]; then 61 | install_resource "${BUILT_PRODUCTS_DIR}/BubbleTransition.bundle" 62 | fi 63 | if [[ "$CONFIGURATION" == "Release" ]]; then 64 | install_resource "${BUILT_PRODUCTS_DIR}/BubbleTransition.bundle" 65 | fi 66 | 67 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 68 | if [[ "${ACTION}" == "install" ]]; then 69 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 70 | fi 71 | rm -f "$RESOURCES_TO_COPY" 72 | 73 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 74 | then 75 | case "${TARGETED_DEVICE_FAMILY}" in 76 | 1,2) 77 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 78 | ;; 79 | 1) 80 | TARGET_DEVICE_ARGS="--target-device iphone" 81 | ;; 82 | 2) 83 | TARGET_DEVICE_ARGS="--target-device ipad" 84 | ;; 85 | *) 86 | TARGET_DEVICE_ARGS="--target-device mac" 87 | ;; 88 | esac 89 | 90 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 91 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 92 | while read line; do 93 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 94 | XCASSET_FILES+=("$line") 95 | fi 96 | done <<<"$OTHER_XCASSETS" 97 | 98 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun 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}" 99 | fi 100 | -------------------------------------------------------------------------------- /Example/BubbleTransition/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 84 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | -------------------------------------------------------------------------------- /Example/BubbleTransition.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 11 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 12 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 13 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; 14 | 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 15 | 6003F59E195388D20070C39A /* YPAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* YPAppDelegate.m */; }; 16 | 6003F5A1195388D20070C39A /* Main_iPhone.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6003F59F195388D20070C39A /* Main_iPhone.storyboard */; }; 17 | 6003F5A4195388D20070C39A /* Main_iPad.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A2195388D20070C39A /* Main_iPad.storyboard */; }; 18 | 6003F5A7195388D20070C39A /* YPViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* YPViewController.m */; }; 19 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; 20 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; }; 21 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 22 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 23 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; }; 24 | 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; }; 25 | 929292551CF469900001D737 /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 929292541CF469900001D737 /* Launch Screen.storyboard */; }; 26 | 92B68C5B1B0C224800FA7C2C /* YPModalViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 92B68C5A1B0C224800FA7C2C /* YPModalViewController.m */; }; 27 | A7D65BC4B04D6ACFF2BE10DD /* libPods-BubbleTransition.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 62493D90BB9AD616C80C838B /* libPods-BubbleTransition.a */; }; 28 | CFB79AAC787E1173382EAC08 /* libPods-Tests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B75C2BBF97DBBBFAF1E668FF /* libPods-Tests.a */; }; 29 | /* End PBXBuildFile section */ 30 | 31 | /* Begin PBXContainerItemProxy section */ 32 | 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { 33 | isa = PBXContainerItemProxy; 34 | containerPortal = 6003F582195388D10070C39A /* Project object */; 35 | proxyType = 1; 36 | remoteGlobalIDString = 6003F589195388D20070C39A; 37 | remoteInfo = BubbleTransition; 38 | }; 39 | /* End PBXContainerItemProxy section */ 40 | 41 | /* Begin PBXFileReference section */ 42 | 24E0A295E067EFE6C573E79D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 43 | 46A33AC64148FF915044FA35 /* Pods-Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig"; sourceTree = ""; }; 44 | 6003F58A195388D20070C39A /* BubbleTransition.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BubbleTransition.app; sourceTree = BUILT_PRODUCTS_DIR; }; 45 | 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 46 | 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 47 | 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 48 | 6003F595195388D20070C39A /* BubbleTransition-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "BubbleTransition-Info.plist"; sourceTree = ""; }; 49 | 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 50 | 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 51 | 6003F59B195388D20070C39A /* BubbleTransition-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "BubbleTransition-Prefix.pch"; sourceTree = ""; }; 52 | 6003F59C195388D20070C39A /* YPAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YPAppDelegate.h; sourceTree = ""; }; 53 | 6003F59D195388D20070C39A /* YPAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YPAppDelegate.m; sourceTree = ""; }; 54 | 6003F5A0195388D20070C39A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main_iPhone.storyboard; sourceTree = ""; }; 55 | 6003F5A3195388D20070C39A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main_iPad.storyboard; sourceTree = ""; }; 56 | 6003F5A5195388D20070C39A /* YPViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YPViewController.h; sourceTree = ""; }; 57 | 6003F5A6195388D20070C39A /* YPViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YPViewController.m; sourceTree = ""; }; 58 | 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 59 | 6003F5AE195388D20070C39A /* Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 60 | 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 61 | 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; 62 | 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 63 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; 64 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; 65 | 62493D90BB9AD616C80C838B /* libPods-BubbleTransition.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-BubbleTransition.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 66 | 7AE0B0B25EDB3F50CDB5BAA3 /* Pods-Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig"; sourceTree = ""; }; 67 | 929292541CF469900001D737 /* Launch Screen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = "Launch Screen.storyboard"; sourceTree = ""; }; 68 | 92B68C591B0C224800FA7C2C /* YPModalViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YPModalViewController.h; sourceTree = ""; }; 69 | 92B68C5A1B0C224800FA7C2C /* YPModalViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YPModalViewController.m; sourceTree = ""; }; 70 | B75C2BBF97DBBBFAF1E668FF /* libPods-Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 71 | D34F15209E3FD6A1372B6E53 /* Pods-BubbleTransition.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BubbleTransition.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BubbleTransition/Pods-BubbleTransition.debug.xcconfig"; sourceTree = ""; }; 72 | ED40C92108DA1AA619B61A77 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 73 | F80CF0B0B47C8C1DC7026079 /* Pods-BubbleTransition.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BubbleTransition.release.xcconfig"; path = "Pods/Target Support Files/Pods-BubbleTransition/Pods-BubbleTransition.release.xcconfig"; sourceTree = ""; }; 74 | F8358ABD893E32ECD09F9F7B /* BubbleTransition-objc.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = "BubbleTransition-objc.podspec"; path = "../BubbleTransition-objc.podspec"; sourceTree = ""; }; 75 | /* End PBXFileReference section */ 76 | 77 | /* Begin PBXFrameworksBuildPhase section */ 78 | 6003F587195388D20070C39A /* Frameworks */ = { 79 | isa = PBXFrameworksBuildPhase; 80 | buildActionMask = 2147483647; 81 | files = ( 82 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 83 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 84 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 85 | A7D65BC4B04D6ACFF2BE10DD /* libPods-BubbleTransition.a in Frameworks */, 86 | ); 87 | runOnlyForDeploymentPostprocessing = 0; 88 | }; 89 | 6003F5AB195388D20070C39A /* Frameworks */ = { 90 | isa = PBXFrameworksBuildPhase; 91 | buildActionMask = 2147483647; 92 | files = ( 93 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, 94 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, 95 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, 96 | CFB79AAC787E1173382EAC08 /* libPods-Tests.a in Frameworks */, 97 | ); 98 | runOnlyForDeploymentPostprocessing = 0; 99 | }; 100 | /* End PBXFrameworksBuildPhase section */ 101 | 102 | /* Begin PBXGroup section */ 103 | 6003F581195388D10070C39A = { 104 | isa = PBXGroup; 105 | children = ( 106 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, 107 | 6003F593195388D20070C39A /* BubbleTransition */, 108 | 6003F5B5195388D20070C39A /* Tests */, 109 | 6003F58C195388D20070C39A /* Frameworks */, 110 | 6003F58B195388D20070C39A /* Products */, 111 | 8FE75B5B7F5382E56F61B57D /* Pods */, 112 | ); 113 | sourceTree = ""; 114 | }; 115 | 6003F58B195388D20070C39A /* Products */ = { 116 | isa = PBXGroup; 117 | children = ( 118 | 6003F58A195388D20070C39A /* BubbleTransition.app */, 119 | 6003F5AE195388D20070C39A /* Tests.xctest */, 120 | ); 121 | name = Products; 122 | sourceTree = ""; 123 | }; 124 | 6003F58C195388D20070C39A /* Frameworks */ = { 125 | isa = PBXGroup; 126 | children = ( 127 | 6003F58D195388D20070C39A /* Foundation.framework */, 128 | 6003F58F195388D20070C39A /* CoreGraphics.framework */, 129 | 6003F591195388D20070C39A /* UIKit.framework */, 130 | 6003F5AF195388D20070C39A /* XCTest.framework */, 131 | 62493D90BB9AD616C80C838B /* libPods-BubbleTransition.a */, 132 | B75C2BBF97DBBBFAF1E668FF /* libPods-Tests.a */, 133 | ); 134 | name = Frameworks; 135 | sourceTree = ""; 136 | }; 137 | 6003F593195388D20070C39A /* BubbleTransition */ = { 138 | isa = PBXGroup; 139 | children = ( 140 | 929292541CF469900001D737 /* Launch Screen.storyboard */, 141 | 6003F59C195388D20070C39A /* YPAppDelegate.h */, 142 | 6003F59D195388D20070C39A /* YPAppDelegate.m */, 143 | 6003F59F195388D20070C39A /* Main_iPhone.storyboard */, 144 | 6003F5A2195388D20070C39A /* Main_iPad.storyboard */, 145 | 6003F5A5195388D20070C39A /* YPViewController.h */, 146 | 6003F5A6195388D20070C39A /* YPViewController.m */, 147 | 6003F5A8195388D20070C39A /* Images.xcassets */, 148 | 6003F594195388D20070C39A /* Supporting Files */, 149 | 92B68C591B0C224800FA7C2C /* YPModalViewController.h */, 150 | 92B68C5A1B0C224800FA7C2C /* YPModalViewController.m */, 151 | ); 152 | path = BubbleTransition; 153 | sourceTree = ""; 154 | }; 155 | 6003F594195388D20070C39A /* Supporting Files */ = { 156 | isa = PBXGroup; 157 | children = ( 158 | 6003F595195388D20070C39A /* BubbleTransition-Info.plist */, 159 | 6003F596195388D20070C39A /* InfoPlist.strings */, 160 | 6003F599195388D20070C39A /* main.m */, 161 | 6003F59B195388D20070C39A /* BubbleTransition-Prefix.pch */, 162 | ); 163 | name = "Supporting Files"; 164 | sourceTree = ""; 165 | }; 166 | 6003F5B5195388D20070C39A /* Tests */ = { 167 | isa = PBXGroup; 168 | children = ( 169 | 6003F5BB195388D20070C39A /* Tests.m */, 170 | 6003F5B6195388D20070C39A /* Supporting Files */, 171 | ); 172 | path = Tests; 173 | sourceTree = ""; 174 | }; 175 | 6003F5B6195388D20070C39A /* Supporting Files */ = { 176 | isa = PBXGroup; 177 | children = ( 178 | 6003F5B7195388D20070C39A /* Tests-Info.plist */, 179 | 6003F5B8195388D20070C39A /* InfoPlist.strings */, 180 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, 181 | ); 182 | name = "Supporting Files"; 183 | sourceTree = ""; 184 | }; 185 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { 186 | isa = PBXGroup; 187 | children = ( 188 | F8358ABD893E32ECD09F9F7B /* BubbleTransition-objc.podspec */, 189 | 24E0A295E067EFE6C573E79D /* README.md */, 190 | ED40C92108DA1AA619B61A77 /* LICENSE */, 191 | ); 192 | name = "Podspec Metadata"; 193 | sourceTree = ""; 194 | }; 195 | 8FE75B5B7F5382E56F61B57D /* Pods */ = { 196 | isa = PBXGroup; 197 | children = ( 198 | D34F15209E3FD6A1372B6E53 /* Pods-BubbleTransition.debug.xcconfig */, 199 | F80CF0B0B47C8C1DC7026079 /* Pods-BubbleTransition.release.xcconfig */, 200 | 7AE0B0B25EDB3F50CDB5BAA3 /* Pods-Tests.debug.xcconfig */, 201 | 46A33AC64148FF915044FA35 /* Pods-Tests.release.xcconfig */, 202 | ); 203 | name = Pods; 204 | sourceTree = ""; 205 | }; 206 | /* End PBXGroup section */ 207 | 208 | /* Begin PBXNativeTarget section */ 209 | 6003F589195388D20070C39A /* BubbleTransition */ = { 210 | isa = PBXNativeTarget; 211 | buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "BubbleTransition" */; 212 | buildPhases = ( 213 | 52692EAF7310ACC0373CE6CC /* Check Pods Manifest.lock */, 214 | 6003F586195388D20070C39A /* Sources */, 215 | 6003F587195388D20070C39A /* Frameworks */, 216 | 6003F588195388D20070C39A /* Resources */, 217 | 019269EA4078EB8C7237A97C /* Copy Pods Resources */, 218 | ); 219 | buildRules = ( 220 | ); 221 | dependencies = ( 222 | ); 223 | name = BubbleTransition; 224 | productName = BubbleTransition; 225 | productReference = 6003F58A195388D20070C39A /* BubbleTransition.app */; 226 | productType = "com.apple.product-type.application"; 227 | }; 228 | 6003F5AD195388D20070C39A /* Tests */ = { 229 | isa = PBXNativeTarget; 230 | buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "Tests" */; 231 | buildPhases = ( 232 | AA17D48AD60C3DABA74F0050 /* Check Pods Manifest.lock */, 233 | 6003F5AA195388D20070C39A /* Sources */, 234 | 6003F5AB195388D20070C39A /* Frameworks */, 235 | 6003F5AC195388D20070C39A /* Resources */, 236 | 910386E9320BE80D61649300 /* Copy Pods Resources */, 237 | ); 238 | buildRules = ( 239 | ); 240 | dependencies = ( 241 | 6003F5B4195388D20070C39A /* PBXTargetDependency */, 242 | ); 243 | name = Tests; 244 | productName = BubbleTransitionTests; 245 | productReference = 6003F5AE195388D20070C39A /* Tests.xctest */; 246 | productType = "com.apple.product-type.bundle.unit-test"; 247 | }; 248 | /* End PBXNativeTarget section */ 249 | 250 | /* Begin PBXProject section */ 251 | 6003F582195388D10070C39A /* Project object */ = { 252 | isa = PBXProject; 253 | attributes = { 254 | CLASSPREFIX = YP; 255 | LastUpgradeCheck = 0510; 256 | ORGANIZATIONNAME = "王易平"; 257 | TargetAttributes = { 258 | 6003F5AD195388D20070C39A = { 259 | TestTargetID = 6003F589195388D20070C39A; 260 | }; 261 | }; 262 | }; 263 | buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "BubbleTransition" */; 264 | compatibilityVersion = "Xcode 3.2"; 265 | developmentRegion = English; 266 | hasScannedForEncodings = 0; 267 | knownRegions = ( 268 | en, 269 | Base, 270 | ); 271 | mainGroup = 6003F581195388D10070C39A; 272 | productRefGroup = 6003F58B195388D20070C39A /* Products */; 273 | projectDirPath = ""; 274 | projectRoot = ""; 275 | targets = ( 276 | 6003F589195388D20070C39A /* BubbleTransition */, 277 | 6003F5AD195388D20070C39A /* Tests */, 278 | ); 279 | }; 280 | /* End PBXProject section */ 281 | 282 | /* Begin PBXResourcesBuildPhase section */ 283 | 6003F588195388D20070C39A /* Resources */ = { 284 | isa = PBXResourcesBuildPhase; 285 | buildActionMask = 2147483647; 286 | files = ( 287 | 6003F5A4195388D20070C39A /* Main_iPad.storyboard in Resources */, 288 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 289 | 6003F5A1195388D20070C39A /* Main_iPhone.storyboard in Resources */, 290 | 929292551CF469900001D737 /* Launch Screen.storyboard in Resources */, 291 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, 292 | ); 293 | runOnlyForDeploymentPostprocessing = 0; 294 | }; 295 | 6003F5AC195388D20070C39A /* Resources */ = { 296 | isa = PBXResourcesBuildPhase; 297 | buildActionMask = 2147483647; 298 | files = ( 299 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, 300 | ); 301 | runOnlyForDeploymentPostprocessing = 0; 302 | }; 303 | /* End PBXResourcesBuildPhase section */ 304 | 305 | /* Begin PBXShellScriptBuildPhase section */ 306 | 019269EA4078EB8C7237A97C /* Copy Pods Resources */ = { 307 | isa = PBXShellScriptBuildPhase; 308 | buildActionMask = 2147483647; 309 | files = ( 310 | ); 311 | inputPaths = ( 312 | ); 313 | name = "Copy Pods Resources"; 314 | outputPaths = ( 315 | ); 316 | runOnlyForDeploymentPostprocessing = 0; 317 | shellPath = /bin/sh; 318 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BubbleTransition/Pods-BubbleTransition-resources.sh\"\n"; 319 | showEnvVarsInLog = 0; 320 | }; 321 | 52692EAF7310ACC0373CE6CC /* Check Pods Manifest.lock */ = { 322 | isa = PBXShellScriptBuildPhase; 323 | buildActionMask = 2147483647; 324 | files = ( 325 | ); 326 | inputPaths = ( 327 | ); 328 | name = "Check Pods Manifest.lock"; 329 | outputPaths = ( 330 | ); 331 | runOnlyForDeploymentPostprocessing = 0; 332 | shellPath = /bin/sh; 333 | 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"; 334 | showEnvVarsInLog = 0; 335 | }; 336 | 910386E9320BE80D61649300 /* Copy Pods Resources */ = { 337 | isa = PBXShellScriptBuildPhase; 338 | buildActionMask = 2147483647; 339 | files = ( 340 | ); 341 | inputPaths = ( 342 | ); 343 | name = "Copy Pods Resources"; 344 | outputPaths = ( 345 | ); 346 | runOnlyForDeploymentPostprocessing = 0; 347 | shellPath = /bin/sh; 348 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh\"\n"; 349 | showEnvVarsInLog = 0; 350 | }; 351 | AA17D48AD60C3DABA74F0050 /* Check Pods Manifest.lock */ = { 352 | isa = PBXShellScriptBuildPhase; 353 | buildActionMask = 2147483647; 354 | files = ( 355 | ); 356 | inputPaths = ( 357 | ); 358 | name = "Check Pods Manifest.lock"; 359 | outputPaths = ( 360 | ); 361 | runOnlyForDeploymentPostprocessing = 0; 362 | shellPath = /bin/sh; 363 | 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"; 364 | showEnvVarsInLog = 0; 365 | }; 366 | /* End PBXShellScriptBuildPhase section */ 367 | 368 | /* Begin PBXSourcesBuildPhase section */ 369 | 6003F586195388D20070C39A /* Sources */ = { 370 | isa = PBXSourcesBuildPhase; 371 | buildActionMask = 2147483647; 372 | files = ( 373 | 6003F59E195388D20070C39A /* YPAppDelegate.m in Sources */, 374 | 6003F5A7195388D20070C39A /* YPViewController.m in Sources */, 375 | 6003F59A195388D20070C39A /* main.m in Sources */, 376 | 92B68C5B1B0C224800FA7C2C /* YPModalViewController.m in Sources */, 377 | ); 378 | runOnlyForDeploymentPostprocessing = 0; 379 | }; 380 | 6003F5AA195388D20070C39A /* Sources */ = { 381 | isa = PBXSourcesBuildPhase; 382 | buildActionMask = 2147483647; 383 | files = ( 384 | 6003F5BC195388D20070C39A /* Tests.m in Sources */, 385 | ); 386 | runOnlyForDeploymentPostprocessing = 0; 387 | }; 388 | /* End PBXSourcesBuildPhase section */ 389 | 390 | /* Begin PBXTargetDependency section */ 391 | 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { 392 | isa = PBXTargetDependency; 393 | target = 6003F589195388D20070C39A /* BubbleTransition */; 394 | targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; 395 | }; 396 | /* End PBXTargetDependency section */ 397 | 398 | /* Begin PBXVariantGroup section */ 399 | 6003F596195388D20070C39A /* InfoPlist.strings */ = { 400 | isa = PBXVariantGroup; 401 | children = ( 402 | 6003F597195388D20070C39A /* en */, 403 | ); 404 | name = InfoPlist.strings; 405 | sourceTree = ""; 406 | }; 407 | 6003F59F195388D20070C39A /* Main_iPhone.storyboard */ = { 408 | isa = PBXVariantGroup; 409 | children = ( 410 | 6003F5A0195388D20070C39A /* Base */, 411 | ); 412 | name = Main_iPhone.storyboard; 413 | sourceTree = ""; 414 | }; 415 | 6003F5A2195388D20070C39A /* Main_iPad.storyboard */ = { 416 | isa = PBXVariantGroup; 417 | children = ( 418 | 6003F5A3195388D20070C39A /* Base */, 419 | ); 420 | name = Main_iPad.storyboard; 421 | sourceTree = ""; 422 | }; 423 | 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { 424 | isa = PBXVariantGroup; 425 | children = ( 426 | 6003F5B9195388D20070C39A /* en */, 427 | ); 428 | name = InfoPlist.strings; 429 | sourceTree = ""; 430 | }; 431 | /* End PBXVariantGroup section */ 432 | 433 | /* Begin XCBuildConfiguration section */ 434 | 6003F5BD195388D20070C39A /* Debug */ = { 435 | isa = XCBuildConfiguration; 436 | buildSettings = { 437 | ALWAYS_SEARCH_USER_PATHS = NO; 438 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 439 | CLANG_CXX_LIBRARY = "libc++"; 440 | CLANG_ENABLE_MODULES = YES; 441 | CLANG_ENABLE_OBJC_ARC = YES; 442 | CLANG_WARN_BOOL_CONVERSION = YES; 443 | CLANG_WARN_CONSTANT_CONVERSION = YES; 444 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 445 | CLANG_WARN_EMPTY_BODY = YES; 446 | CLANG_WARN_ENUM_CONVERSION = YES; 447 | CLANG_WARN_INT_CONVERSION = YES; 448 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 449 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 450 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 451 | COPY_PHASE_STRIP = NO; 452 | GCC_C_LANGUAGE_STANDARD = gnu99; 453 | GCC_DYNAMIC_NO_PIC = NO; 454 | GCC_OPTIMIZATION_LEVEL = 0; 455 | GCC_PREPROCESSOR_DEFINITIONS = ( 456 | "DEBUG=1", 457 | "$(inherited)", 458 | ); 459 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 460 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 461 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 462 | GCC_WARN_UNDECLARED_SELECTOR = YES; 463 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 464 | GCC_WARN_UNUSED_FUNCTION = YES; 465 | GCC_WARN_UNUSED_VARIABLE = YES; 466 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 467 | ONLY_ACTIVE_ARCH = YES; 468 | SDKROOT = iphoneos; 469 | TARGETED_DEVICE_FAMILY = "1,2"; 470 | }; 471 | name = Debug; 472 | }; 473 | 6003F5BE195388D20070C39A /* Release */ = { 474 | isa = XCBuildConfiguration; 475 | buildSettings = { 476 | ALWAYS_SEARCH_USER_PATHS = NO; 477 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 478 | CLANG_CXX_LIBRARY = "libc++"; 479 | CLANG_ENABLE_MODULES = YES; 480 | CLANG_ENABLE_OBJC_ARC = YES; 481 | CLANG_WARN_BOOL_CONVERSION = YES; 482 | CLANG_WARN_CONSTANT_CONVERSION = YES; 483 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 484 | CLANG_WARN_EMPTY_BODY = YES; 485 | CLANG_WARN_ENUM_CONVERSION = YES; 486 | CLANG_WARN_INT_CONVERSION = YES; 487 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 488 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 489 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 490 | COPY_PHASE_STRIP = YES; 491 | ENABLE_NS_ASSERTIONS = NO; 492 | GCC_C_LANGUAGE_STANDARD = gnu99; 493 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 494 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 495 | GCC_WARN_UNDECLARED_SELECTOR = YES; 496 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 497 | GCC_WARN_UNUSED_FUNCTION = YES; 498 | GCC_WARN_UNUSED_VARIABLE = YES; 499 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 500 | SDKROOT = iphoneos; 501 | TARGETED_DEVICE_FAMILY = "1,2"; 502 | VALIDATE_PRODUCT = YES; 503 | }; 504 | name = Release; 505 | }; 506 | 6003F5C0195388D20070C39A /* Debug */ = { 507 | isa = XCBuildConfiguration; 508 | baseConfigurationReference = D34F15209E3FD6A1372B6E53 /* Pods-BubbleTransition.debug.xcconfig */; 509 | buildSettings = { 510 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 511 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 512 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 513 | GCC_PREFIX_HEADER = "BubbleTransition/BubbleTransition-Prefix.pch"; 514 | INFOPLIST_FILE = "BubbleTransition/BubbleTransition-Info.plist"; 515 | PRODUCT_NAME = "$(TARGET_NAME)"; 516 | WRAPPER_EXTENSION = app; 517 | }; 518 | name = Debug; 519 | }; 520 | 6003F5C1195388D20070C39A /* Release */ = { 521 | isa = XCBuildConfiguration; 522 | baseConfigurationReference = F80CF0B0B47C8C1DC7026079 /* Pods-BubbleTransition.release.xcconfig */; 523 | buildSettings = { 524 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 525 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 526 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 527 | GCC_PREFIX_HEADER = "BubbleTransition/BubbleTransition-Prefix.pch"; 528 | INFOPLIST_FILE = "BubbleTransition/BubbleTransition-Info.plist"; 529 | PRODUCT_NAME = "$(TARGET_NAME)"; 530 | WRAPPER_EXTENSION = app; 531 | }; 532 | name = Release; 533 | }; 534 | 6003F5C3195388D20070C39A /* Debug */ = { 535 | isa = XCBuildConfiguration; 536 | baseConfigurationReference = 7AE0B0B25EDB3F50CDB5BAA3 /* Pods-Tests.debug.xcconfig */; 537 | buildSettings = { 538 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/BubbleTransition.app/BubbleTransition"; 539 | FRAMEWORK_SEARCH_PATHS = ( 540 | "$(SDKROOT)/Developer/Library/Frameworks", 541 | "$(inherited)", 542 | "$(DEVELOPER_FRAMEWORKS_DIR)", 543 | ); 544 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 545 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 546 | GCC_PREPROCESSOR_DEFINITIONS = ( 547 | "DEBUG=1", 548 | "$(inherited)", 549 | ); 550 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 551 | PRODUCT_NAME = "$(TARGET_NAME)"; 552 | TEST_HOST = "$(BUNDLE_LOADER)"; 553 | WRAPPER_EXTENSION = xctest; 554 | }; 555 | name = Debug; 556 | }; 557 | 6003F5C4195388D20070C39A /* Release */ = { 558 | isa = XCBuildConfiguration; 559 | baseConfigurationReference = 46A33AC64148FF915044FA35 /* Pods-Tests.release.xcconfig */; 560 | buildSettings = { 561 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/BubbleTransition.app/BubbleTransition"; 562 | FRAMEWORK_SEARCH_PATHS = ( 563 | "$(SDKROOT)/Developer/Library/Frameworks", 564 | "$(inherited)", 565 | "$(DEVELOPER_FRAMEWORKS_DIR)", 566 | ); 567 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 568 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 569 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 570 | PRODUCT_NAME = "$(TARGET_NAME)"; 571 | TEST_HOST = "$(BUNDLE_LOADER)"; 572 | WRAPPER_EXTENSION = xctest; 573 | }; 574 | name = Release; 575 | }; 576 | /* End XCBuildConfiguration section */ 577 | 578 | /* Begin XCConfigurationList section */ 579 | 6003F585195388D10070C39A /* Build configuration list for PBXProject "BubbleTransition" */ = { 580 | isa = XCConfigurationList; 581 | buildConfigurations = ( 582 | 6003F5BD195388D20070C39A /* Debug */, 583 | 6003F5BE195388D20070C39A /* Release */, 584 | ); 585 | defaultConfigurationIsVisible = 0; 586 | defaultConfigurationName = Release; 587 | }; 588 | 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "BubbleTransition" */ = { 589 | isa = XCConfigurationList; 590 | buildConfigurations = ( 591 | 6003F5C0195388D20070C39A /* Debug */, 592 | 6003F5C1195388D20070C39A /* Release */, 593 | ); 594 | defaultConfigurationIsVisible = 0; 595 | defaultConfigurationName = Release; 596 | }; 597 | 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "Tests" */ = { 598 | isa = XCConfigurationList; 599 | buildConfigurations = ( 600 | 6003F5C3195388D20070C39A /* Debug */, 601 | 6003F5C4195388D20070C39A /* Release */, 602 | ); 603 | defaultConfigurationIsVisible = 0; 604 | defaultConfigurationName = Release; 605 | }; 606 | /* End XCConfigurationList section */ 607 | }; 608 | rootObject = 6003F582195388D10070C39A /* Project object */; 609 | } 610 | -------------------------------------------------------------------------------- /Example/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 | 0428C48AF23989489921588C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 463484A530356424529CDEFF /* Foundation.framework */; }; 11 | 05C649F429FDCD1A44177AAD /* YPBubbleTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 293549D7BECD93402F924414 /* YPBubbleTransition.h */; }; 12 | 56D98CC23C90D9111B79D80C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 463484A530356424529CDEFF /* Foundation.framework */; }; 13 | 6DFA2470FB16AF28269D7A8A /* YPBubbleTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = EA3B88928E038810E3F628BA /* YPBubbleTransition.m */; }; 14 | B0D1C71CC44F91C3BDD776B6 /* YPBubbleTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = EA3B88928E038810E3F628BA /* YPBubbleTransition.m */; }; 15 | B513BD663FFD83291D4866CF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 463484A530356424529CDEFF /* Foundation.framework */; }; 16 | B89A6C6DBC4D105A1F7D0108 /* Pods-Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AD4318CCF36E95EE2215C778 /* Pods-Tests-dummy.m */; }; 17 | C7069C2B40911412B132B630 /* Pods-BubbleTransition-BubbleTransition-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3204DBA271E071A2B67D9C6D /* Pods-BubbleTransition-BubbleTransition-dummy.m */; }; 18 | C9C71338D88DE39A5FA102B5 /* Pods-BubbleTransition-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DE9B1C1B6A6510968DCCB3C /* Pods-BubbleTransition-dummy.m */; }; 19 | D6B99FEBC8B32379838C044F /* Pods-Tests-BubbleTransition-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 88BEAD9556FE63BDE976B540 /* Pods-Tests-BubbleTransition-dummy.m */; }; 20 | DDE9277C62202F70ED414A1B /* YPBubbleTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 293549D7BECD93402F924414 /* YPBubbleTransition.h */; }; 21 | EBDA41780A59447AC05E33B9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 463484A530356424529CDEFF /* Foundation.framework */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXContainerItemProxy section */ 25 | 245860D4275AF518BC51EE29 /* PBXContainerItemProxy */ = { 26 | isa = PBXContainerItemProxy; 27 | containerPortal = 8864399A3C47299407462867 /* Project object */; 28 | proxyType = 1; 29 | remoteGlobalIDString = 16A720CB16C0F6D2DE579433; 30 | remoteInfo = "Pods-BubbleTransition-BubbleTransition"; 31 | }; 32 | 2ABA9FDA0E3FA8C8F8F40F9A /* PBXContainerItemProxy */ = { 33 | isa = PBXContainerItemProxy; 34 | containerPortal = 8864399A3C47299407462867 /* Project object */; 35 | proxyType = 1; 36 | remoteGlobalIDString = AA4C09A55A8972C6C1A541C4; 37 | remoteInfo = "Pods-Tests-BubbleTransition"; 38 | }; 39 | 6BC628A653D9CAE03143F9BA /* PBXContainerItemProxy */ = { 40 | isa = PBXContainerItemProxy; 41 | containerPortal = 8864399A3C47299407462867 /* Project object */; 42 | proxyType = 1; 43 | remoteGlobalIDString = 99EE668A11B62810C19B9816; 44 | remoteInfo = "Pods-BubbleTransition-BubbleTransition-BubbleTransition"; 45 | }; 46 | E910AD44B4249FBA791265A3 /* PBXContainerItemProxy */ = { 47 | isa = PBXContainerItemProxy; 48 | containerPortal = 8864399A3C47299407462867 /* Project object */; 49 | proxyType = 1; 50 | remoteGlobalIDString = E13F78C60FE5830F245D43B0; 51 | remoteInfo = "Pods-Tests-BubbleTransition-BubbleTransition"; 52 | }; 53 | /* End PBXContainerItemProxy section */ 54 | 55 | /* Begin PBXFileReference section */ 56 | 0E841A68D8B6BB6561A56BC0 /* Pods-BubbleTransition.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BubbleTransition.debug.xcconfig"; sourceTree = ""; }; 57 | 17A439BA4541D02C62792CD0 /* Pods-Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Tests-acknowledgements.markdown"; sourceTree = ""; }; 58 | 188E46350A3773088FA167B3 /* Pods-Tests-BubbleTransition-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Pods-Tests-BubbleTransition-prefix.pch"; path = "../Pods-Tests-BubbleTransition/Pods-Tests-BubbleTransition-prefix.pch"; sourceTree = ""; }; 59 | 2302232DDFE459C8129E7AE0 /* Pods-BubbleTransition-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-BubbleTransition-resources.sh"; sourceTree = ""; }; 60 | 23920945F26DF299A9924463 /* libPods-Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 61 | 293549D7BECD93402F924414 /* YPBubbleTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = YPBubbleTransition.h; sourceTree = ""; }; 62 | 3204DBA271E071A2B67D9C6D /* Pods-BubbleTransition-BubbleTransition-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-BubbleTransition-BubbleTransition-dummy.m"; sourceTree = ""; }; 63 | 37696C5D8EDD7043FC123182 /* Pods-Tests-BubbleTransition-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests-BubbleTransition-Private.xcconfig"; path = "../Pods-Tests-BubbleTransition/Pods-Tests-BubbleTransition-Private.xcconfig"; sourceTree = ""; }; 64 | 3845D06BCA18E7BAD8041DBA /* Pods-Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests.release.xcconfig"; sourceTree = ""; }; 65 | 3E5D057209A064BED17921F2 /* Pods-BubbleTransition.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BubbleTransition.release.xcconfig"; sourceTree = ""; }; 66 | 463484A530356424529CDEFF /* 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; }; 67 | 4DE9B1C1B6A6510968DCCB3C /* Pods-BubbleTransition-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-BubbleTransition-dummy.m"; sourceTree = ""; }; 68 | 58430E1D0A0163980C2FDF43 /* Pods-BubbleTransition-BubbleTransition-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BubbleTransition-BubbleTransition-Private.xcconfig"; sourceTree = ""; }; 69 | 5D023D03061BA92A0F8D2785 /* Pods-Tests-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Tests-environment.h"; sourceTree = ""; }; 70 | 695E4B9806C1499923BAA812 /* libPods-BubbleTransition-BubbleTransition.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-BubbleTransition-BubbleTransition.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 71 | 815FC288C8D87F3F71AD9540 /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 72 | 84141D482B96C22B8FF62595 /* libPods-BubbleTransition.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-BubbleTransition.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 73 | 8707B8453D19610F5CE9DD96 /* Pods-BubbleTransition-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BubbleTransition-environment.h"; sourceTree = ""; }; 74 | 87E9D558B410637C22EE8B9C /* Pods-BubbleTransition-BubbleTransition-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-BubbleTransition-BubbleTransition-prefix.pch"; sourceTree = ""; }; 75 | 88BEAD9556FE63BDE976B540 /* Pods-Tests-BubbleTransition-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Pods-Tests-BubbleTransition-dummy.m"; path = "../Pods-Tests-BubbleTransition/Pods-Tests-BubbleTransition-dummy.m"; sourceTree = ""; }; 76 | 8F3EB03DC44EE1BC0EBAA386 /* libPods-Tests-BubbleTransition.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Tests-BubbleTransition.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 77 | 90F8C18F469F4EA2458C9F4C /* Pods-BubbleTransition-BubbleTransition.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-BubbleTransition-BubbleTransition.xcconfig"; sourceTree = ""; }; 78 | 9149D998B8973AF7B7525754 /* Pods-Tests-BubbleTransition.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Tests-BubbleTransition.xcconfig"; path = "../Pods-Tests-BubbleTransition/Pods-Tests-BubbleTransition.xcconfig"; sourceTree = ""; }; 79 | 97583836F9CD7BA7B5BA390A /* Pods-Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Tests-resources.sh"; sourceTree = ""; }; 80 | A50EEF6EE045824ED1A6559B /* Pods-BubbleTransition-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-BubbleTransition-acknowledgements.plist"; sourceTree = ""; }; 81 | AD4318CCF36E95EE2215C778 /* Pods-Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Tests-dummy.m"; sourceTree = ""; }; 82 | C0111DABC5DE03855BA48145 /* BubbleTransition.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BubbleTransition.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 83 | D89B8C342ADFBCF32FBAF98B /* BubbleTransition.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BubbleTransition.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 84 | E272A2418AC9FB992CFC4585 /* Pods-Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Tests-acknowledgements.plist"; sourceTree = ""; }; 85 | E4F60F4A2C72C7631D9E3127 /* Pods-BubbleTransition-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-BubbleTransition-acknowledgements.markdown"; sourceTree = ""; }; 86 | EA3B88928E038810E3F628BA /* YPBubbleTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = YPBubbleTransition.m; sourceTree = ""; }; 87 | FA5483807FA874CED1A4AE0E /* Pods-Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Tests.debug.xcconfig"; sourceTree = ""; }; 88 | /* End PBXFileReference section */ 89 | 90 | /* Begin PBXFrameworksBuildPhase section */ 91 | 040C61A546B5BC87EEACDF14 /* Frameworks */ = { 92 | isa = PBXFrameworksBuildPhase; 93 | buildActionMask = 2147483647; 94 | files = ( 95 | ); 96 | runOnlyForDeploymentPostprocessing = 0; 97 | }; 98 | 7392A64EF6460475DC8011C5 /* Frameworks */ = { 99 | isa = PBXFrameworksBuildPhase; 100 | buildActionMask = 2147483647; 101 | files = ( 102 | 56D98CC23C90D9111B79D80C /* Foundation.framework in Frameworks */, 103 | ); 104 | runOnlyForDeploymentPostprocessing = 0; 105 | }; 106 | 98F19416D4049A4B5F3A7748 /* Frameworks */ = { 107 | isa = PBXFrameworksBuildPhase; 108 | buildActionMask = 2147483647; 109 | files = ( 110 | EBDA41780A59447AC05E33B9 /* Foundation.framework in Frameworks */, 111 | ); 112 | runOnlyForDeploymentPostprocessing = 0; 113 | }; 114 | A4ADC8DE668AAA2BF33526C4 /* Frameworks */ = { 115 | isa = PBXFrameworksBuildPhase; 116 | buildActionMask = 2147483647; 117 | files = ( 118 | 0428C48AF23989489921588C /* Foundation.framework in Frameworks */, 119 | ); 120 | runOnlyForDeploymentPostprocessing = 0; 121 | }; 122 | E5469C98F27EE3744547416E /* Frameworks */ = { 123 | isa = PBXFrameworksBuildPhase; 124 | buildActionMask = 2147483647; 125 | files = ( 126 | B513BD663FFD83291D4866CF /* Foundation.framework in Frameworks */, 127 | ); 128 | runOnlyForDeploymentPostprocessing = 0; 129 | }; 130 | E9602D4F3982A8FDBB171931 /* Frameworks */ = { 131 | isa = PBXFrameworksBuildPhase; 132 | buildActionMask = 2147483647; 133 | files = ( 134 | ); 135 | runOnlyForDeploymentPostprocessing = 0; 136 | }; 137 | /* End PBXFrameworksBuildPhase section */ 138 | 139 | /* Begin PBXGroup section */ 140 | 0FB4E6BC8E0DFD725C6E863E /* Pod */ = { 141 | isa = PBXGroup; 142 | children = ( 143 | EA24BBC677E220E6193A6E5A /* Classes */, 144 | ); 145 | path = Pod; 146 | sourceTree = ""; 147 | }; 148 | 739C934A77C4CE5738664A85 /* Targets Support Files */ = { 149 | isa = PBXGroup; 150 | children = ( 151 | 8B844D93887C327E3FC78099 /* Pods-BubbleTransition */, 152 | EA4575B7ADC27DE46607A10E /* Pods-Tests */, 153 | ); 154 | name = "Targets Support Files"; 155 | sourceTree = ""; 156 | }; 157 | 7528E777631F36A1412AAB18 /* Frameworks */ = { 158 | isa = PBXGroup; 159 | children = ( 160 | CD65EBCEE0E563132CEB980C /* iOS */, 161 | ); 162 | name = Frameworks; 163 | sourceTree = ""; 164 | }; 165 | 8B844D93887C327E3FC78099 /* Pods-BubbleTransition */ = { 166 | isa = PBXGroup; 167 | children = ( 168 | E4F60F4A2C72C7631D9E3127 /* Pods-BubbleTransition-acknowledgements.markdown */, 169 | A50EEF6EE045824ED1A6559B /* Pods-BubbleTransition-acknowledgements.plist */, 170 | 4DE9B1C1B6A6510968DCCB3C /* Pods-BubbleTransition-dummy.m */, 171 | 8707B8453D19610F5CE9DD96 /* Pods-BubbleTransition-environment.h */, 172 | 2302232DDFE459C8129E7AE0 /* Pods-BubbleTransition-resources.sh */, 173 | 0E841A68D8B6BB6561A56BC0 /* Pods-BubbleTransition.debug.xcconfig */, 174 | 3E5D057209A064BED17921F2 /* Pods-BubbleTransition.release.xcconfig */, 175 | ); 176 | name = "Pods-BubbleTransition"; 177 | path = "Target Support Files/Pods-BubbleTransition"; 178 | sourceTree = ""; 179 | }; 180 | 9C2AA6F18D0CD84738B925F9 /* Support Files */ = { 181 | isa = PBXGroup; 182 | children = ( 183 | 90F8C18F469F4EA2458C9F4C /* Pods-BubbleTransition-BubbleTransition.xcconfig */, 184 | 58430E1D0A0163980C2FDF43 /* Pods-BubbleTransition-BubbleTransition-Private.xcconfig */, 185 | 3204DBA271E071A2B67D9C6D /* Pods-BubbleTransition-BubbleTransition-dummy.m */, 186 | 87E9D558B410637C22EE8B9C /* Pods-BubbleTransition-BubbleTransition-prefix.pch */, 187 | 9149D998B8973AF7B7525754 /* Pods-Tests-BubbleTransition.xcconfig */, 188 | 37696C5D8EDD7043FC123182 /* Pods-Tests-BubbleTransition-Private.xcconfig */, 189 | 88BEAD9556FE63BDE976B540 /* Pods-Tests-BubbleTransition-dummy.m */, 190 | 188E46350A3773088FA167B3 /* Pods-Tests-BubbleTransition-prefix.pch */, 191 | ); 192 | name = "Support Files"; 193 | path = "Example/Pods/Target Support Files/Pods-BubbleTransition-BubbleTransition"; 194 | sourceTree = ""; 195 | }; 196 | A96318E67D952329E7503442 /* Products */ = { 197 | isa = PBXGroup; 198 | children = ( 199 | D89B8C342ADFBCF32FBAF98B /* BubbleTransition.bundle */, 200 | C0111DABC5DE03855BA48145 /* BubbleTransition.bundle */, 201 | 84141D482B96C22B8FF62595 /* libPods-BubbleTransition.a */, 202 | 695E4B9806C1499923BAA812 /* libPods-BubbleTransition-BubbleTransition.a */, 203 | 23920945F26DF299A9924463 /* libPods-Tests.a */, 204 | 8F3EB03DC44EE1BC0EBAA386 /* libPods-Tests-BubbleTransition.a */, 205 | ); 206 | name = Products; 207 | sourceTree = ""; 208 | }; 209 | BA37CB687B661258FDE77AE4 /* Development Pods */ = { 210 | isa = PBXGroup; 211 | children = ( 212 | E25E02D3F04B5BC26FD92C24 /* BubbleTransition */, 213 | ); 214 | name = "Development Pods"; 215 | sourceTree = ""; 216 | }; 217 | CD65EBCEE0E563132CEB980C /* iOS */ = { 218 | isa = PBXGroup; 219 | children = ( 220 | 463484A530356424529CDEFF /* Foundation.framework */, 221 | ); 222 | name = iOS; 223 | sourceTree = ""; 224 | }; 225 | E25E02D3F04B5BC26FD92C24 /* BubbleTransition */ = { 226 | isa = PBXGroup; 227 | children = ( 228 | 0FB4E6BC8E0DFD725C6E863E /* Pod */, 229 | 9C2AA6F18D0CD84738B925F9 /* Support Files */, 230 | ); 231 | name = BubbleTransition; 232 | path = ../..; 233 | sourceTree = ""; 234 | }; 235 | EA24BBC677E220E6193A6E5A /* Classes */ = { 236 | isa = PBXGroup; 237 | children = ( 238 | 293549D7BECD93402F924414 /* YPBubbleTransition.h */, 239 | EA3B88928E038810E3F628BA /* YPBubbleTransition.m */, 240 | ); 241 | path = Classes; 242 | sourceTree = ""; 243 | }; 244 | EA4575B7ADC27DE46607A10E /* Pods-Tests */ = { 245 | isa = PBXGroup; 246 | children = ( 247 | 17A439BA4541D02C62792CD0 /* Pods-Tests-acknowledgements.markdown */, 248 | E272A2418AC9FB992CFC4585 /* Pods-Tests-acknowledgements.plist */, 249 | AD4318CCF36E95EE2215C778 /* Pods-Tests-dummy.m */, 250 | 5D023D03061BA92A0F8D2785 /* Pods-Tests-environment.h */, 251 | 97583836F9CD7BA7B5BA390A /* Pods-Tests-resources.sh */, 252 | FA5483807FA874CED1A4AE0E /* Pods-Tests.debug.xcconfig */, 253 | 3845D06BCA18E7BAD8041DBA /* Pods-Tests.release.xcconfig */, 254 | ); 255 | name = "Pods-Tests"; 256 | path = "Target Support Files/Pods-Tests"; 257 | sourceTree = ""; 258 | }; 259 | F8BC2C8E79916CA6C0B74BA5 = { 260 | isa = PBXGroup; 261 | children = ( 262 | 815FC288C8D87F3F71AD9540 /* Podfile */, 263 | BA37CB687B661258FDE77AE4 /* Development Pods */, 264 | 7528E777631F36A1412AAB18 /* Frameworks */, 265 | A96318E67D952329E7503442 /* Products */, 266 | 739C934A77C4CE5738664A85 /* Targets Support Files */, 267 | ); 268 | sourceTree = ""; 269 | }; 270 | /* End PBXGroup section */ 271 | 272 | /* Begin PBXHeadersBuildPhase section */ 273 | 1867ED75327C18A401C9E79F /* Headers */ = { 274 | isa = PBXHeadersBuildPhase; 275 | buildActionMask = 2147483647; 276 | files = ( 277 | DDE9277C62202F70ED414A1B /* YPBubbleTransition.h in Headers */, 278 | ); 279 | runOnlyForDeploymentPostprocessing = 0; 280 | }; 281 | 2722BAC8DE55E83E85892DB7 /* Headers */ = { 282 | isa = PBXHeadersBuildPhase; 283 | buildActionMask = 2147483647; 284 | files = ( 285 | 05C649F429FDCD1A44177AAD /* YPBubbleTransition.h in Headers */, 286 | ); 287 | runOnlyForDeploymentPostprocessing = 0; 288 | }; 289 | /* End PBXHeadersBuildPhase section */ 290 | 291 | /* Begin PBXNativeTarget section */ 292 | 16A720CB16C0F6D2DE579433 /* Pods-BubbleTransition-BubbleTransition */ = { 293 | isa = PBXNativeTarget; 294 | buildConfigurationList = 07C53F9B2D8EA80AE037DF8D /* Build configuration list for PBXNativeTarget "Pods-BubbleTransition-BubbleTransition" */; 295 | buildPhases = ( 296 | E22D228B1620332A8C146D0D /* Sources */, 297 | A4ADC8DE668AAA2BF33526C4 /* Frameworks */, 298 | 2722BAC8DE55E83E85892DB7 /* Headers */, 299 | ); 300 | buildRules = ( 301 | ); 302 | dependencies = ( 303 | 521249D70E2124D19209F39C /* PBXTargetDependency */, 304 | ); 305 | name = "Pods-BubbleTransition-BubbleTransition"; 306 | productName = "Pods-BubbleTransition-BubbleTransition"; 307 | productReference = 695E4B9806C1499923BAA812 /* libPods-BubbleTransition-BubbleTransition.a */; 308 | productType = "com.apple.product-type.library.static"; 309 | }; 310 | 1AB880FB9CD68203B17E7EBC /* Pods-BubbleTransition */ = { 311 | isa = PBXNativeTarget; 312 | buildConfigurationList = 314878C89F3DB2748D87F4E3 /* Build configuration list for PBXNativeTarget "Pods-BubbleTransition" */; 313 | buildPhases = ( 314 | 2220EE16B591387F5C61D17D /* Sources */, 315 | 98F19416D4049A4B5F3A7748 /* Frameworks */, 316 | ); 317 | buildRules = ( 318 | ); 319 | dependencies = ( 320 | 853F2BC75875831F2C68B93E /* PBXTargetDependency */, 321 | ); 322 | name = "Pods-BubbleTransition"; 323 | productName = "Pods-BubbleTransition"; 324 | productReference = 84141D482B96C22B8FF62595 /* libPods-BubbleTransition.a */; 325 | productType = "com.apple.product-type.library.static"; 326 | }; 327 | 3492B66C2D4626613EB4486D /* Pods-Tests */ = { 328 | isa = PBXNativeTarget; 329 | buildConfigurationList = E796C3EAD7437DBFE5173B03 /* Build configuration list for PBXNativeTarget "Pods-Tests" */; 330 | buildPhases = ( 331 | 31B0B560B35EF743CBEA19F8 /* Sources */, 332 | E5469C98F27EE3744547416E /* Frameworks */, 333 | ); 334 | buildRules = ( 335 | ); 336 | dependencies = ( 337 | 00E8F9618F69264B05FE5A11 /* PBXTargetDependency */, 338 | ); 339 | name = "Pods-Tests"; 340 | productName = "Pods-Tests"; 341 | productReference = 23920945F26DF299A9924463 /* libPods-Tests.a */; 342 | productType = "com.apple.product-type.library.static"; 343 | }; 344 | 99EE668A11B62810C19B9816 /* Pods-BubbleTransition-BubbleTransition-BubbleTransition */ = { 345 | isa = PBXNativeTarget; 346 | buildConfigurationList = 726B6695FB531AFC3DA3BC48 /* Build configuration list for PBXNativeTarget "Pods-BubbleTransition-BubbleTransition-BubbleTransition" */; 347 | buildPhases = ( 348 | 44A031AC394E87DC9254000B /* Sources */, 349 | E9602D4F3982A8FDBB171931 /* Frameworks */, 350 | 0DBC2FF71B9B861D0AB6691F /* Resources */, 351 | ); 352 | buildRules = ( 353 | ); 354 | dependencies = ( 355 | ); 356 | name = "Pods-BubbleTransition-BubbleTransition-BubbleTransition"; 357 | productName = "Pods-BubbleTransition-BubbleTransition-BubbleTransition"; 358 | productReference = C0111DABC5DE03855BA48145 /* BubbleTransition.bundle */; 359 | productType = "com.apple.product-type.bundle"; 360 | }; 361 | AA4C09A55A8972C6C1A541C4 /* Pods-Tests-BubbleTransition */ = { 362 | isa = PBXNativeTarget; 363 | buildConfigurationList = C828A6EBE16955C3BC36E889 /* Build configuration list for PBXNativeTarget "Pods-Tests-BubbleTransition" */; 364 | buildPhases = ( 365 | 7C05D78443720F57061B3FE2 /* Sources */, 366 | 7392A64EF6460475DC8011C5 /* Frameworks */, 367 | 1867ED75327C18A401C9E79F /* Headers */, 368 | ); 369 | buildRules = ( 370 | ); 371 | dependencies = ( 372 | 1BBF6E5C29EF6B66A0F35DFC /* PBXTargetDependency */, 373 | ); 374 | name = "Pods-Tests-BubbleTransition"; 375 | productName = "Pods-Tests-BubbleTransition"; 376 | productReference = 8F3EB03DC44EE1BC0EBAA386 /* libPods-Tests-BubbleTransition.a */; 377 | productType = "com.apple.product-type.library.static"; 378 | }; 379 | E13F78C60FE5830F245D43B0 /* Pods-Tests-BubbleTransition-BubbleTransition */ = { 380 | isa = PBXNativeTarget; 381 | buildConfigurationList = 4889A9B4FC67B626808B17DA /* Build configuration list for PBXNativeTarget "Pods-Tests-BubbleTransition-BubbleTransition" */; 382 | buildPhases = ( 383 | 88652ED2470AE9662708DF26 /* Sources */, 384 | 040C61A546B5BC87EEACDF14 /* Frameworks */, 385 | D6E1CF07EED70E373A21C1B8 /* Resources */, 386 | ); 387 | buildRules = ( 388 | ); 389 | dependencies = ( 390 | ); 391 | name = "Pods-Tests-BubbleTransition-BubbleTransition"; 392 | productName = "Pods-Tests-BubbleTransition-BubbleTransition"; 393 | productReference = D89B8C342ADFBCF32FBAF98B /* BubbleTransition.bundle */; 394 | productType = "com.apple.product-type.bundle"; 395 | }; 396 | /* End PBXNativeTarget section */ 397 | 398 | /* Begin PBXProject section */ 399 | 8864399A3C47299407462867 /* Project object */ = { 400 | isa = PBXProject; 401 | attributes = { 402 | LastUpgradeCheck = 0510; 403 | }; 404 | buildConfigurationList = 2C4672EFDB0683FB035B4691 /* Build configuration list for PBXProject "Pods" */; 405 | compatibilityVersion = "Xcode 3.2"; 406 | developmentRegion = English; 407 | hasScannedForEncodings = 0; 408 | knownRegions = ( 409 | en, 410 | ); 411 | mainGroup = F8BC2C8E79916CA6C0B74BA5; 412 | productRefGroup = A96318E67D952329E7503442 /* Products */; 413 | projectDirPath = ""; 414 | projectRoot = ""; 415 | targets = ( 416 | 1AB880FB9CD68203B17E7EBC /* Pods-BubbleTransition */, 417 | 16A720CB16C0F6D2DE579433 /* Pods-BubbleTransition-BubbleTransition */, 418 | 99EE668A11B62810C19B9816 /* Pods-BubbleTransition-BubbleTransition-BubbleTransition */, 419 | 3492B66C2D4626613EB4486D /* Pods-Tests */, 420 | AA4C09A55A8972C6C1A541C4 /* Pods-Tests-BubbleTransition */, 421 | E13F78C60FE5830F245D43B0 /* Pods-Tests-BubbleTransition-BubbleTransition */, 422 | ); 423 | }; 424 | /* End PBXProject section */ 425 | 426 | /* Begin PBXResourcesBuildPhase section */ 427 | 0DBC2FF71B9B861D0AB6691F /* Resources */ = { 428 | isa = PBXResourcesBuildPhase; 429 | buildActionMask = 2147483647; 430 | files = ( 431 | ); 432 | runOnlyForDeploymentPostprocessing = 0; 433 | }; 434 | D6E1CF07EED70E373A21C1B8 /* Resources */ = { 435 | isa = PBXResourcesBuildPhase; 436 | buildActionMask = 2147483647; 437 | files = ( 438 | ); 439 | runOnlyForDeploymentPostprocessing = 0; 440 | }; 441 | /* End PBXResourcesBuildPhase section */ 442 | 443 | /* Begin PBXSourcesBuildPhase section */ 444 | 2220EE16B591387F5C61D17D /* Sources */ = { 445 | isa = PBXSourcesBuildPhase; 446 | buildActionMask = 2147483647; 447 | files = ( 448 | C9C71338D88DE39A5FA102B5 /* Pods-BubbleTransition-dummy.m in Sources */, 449 | ); 450 | runOnlyForDeploymentPostprocessing = 0; 451 | }; 452 | 31B0B560B35EF743CBEA19F8 /* Sources */ = { 453 | isa = PBXSourcesBuildPhase; 454 | buildActionMask = 2147483647; 455 | files = ( 456 | B89A6C6DBC4D105A1F7D0108 /* Pods-Tests-dummy.m in Sources */, 457 | ); 458 | runOnlyForDeploymentPostprocessing = 0; 459 | }; 460 | 44A031AC394E87DC9254000B /* Sources */ = { 461 | isa = PBXSourcesBuildPhase; 462 | buildActionMask = 2147483647; 463 | files = ( 464 | ); 465 | runOnlyForDeploymentPostprocessing = 0; 466 | }; 467 | 7C05D78443720F57061B3FE2 /* Sources */ = { 468 | isa = PBXSourcesBuildPhase; 469 | buildActionMask = 2147483647; 470 | files = ( 471 | D6B99FEBC8B32379838C044F /* Pods-Tests-BubbleTransition-dummy.m in Sources */, 472 | B0D1C71CC44F91C3BDD776B6 /* YPBubbleTransition.m in Sources */, 473 | ); 474 | runOnlyForDeploymentPostprocessing = 0; 475 | }; 476 | 88652ED2470AE9662708DF26 /* Sources */ = { 477 | isa = PBXSourcesBuildPhase; 478 | buildActionMask = 2147483647; 479 | files = ( 480 | ); 481 | runOnlyForDeploymentPostprocessing = 0; 482 | }; 483 | E22D228B1620332A8C146D0D /* Sources */ = { 484 | isa = PBXSourcesBuildPhase; 485 | buildActionMask = 2147483647; 486 | files = ( 487 | C7069C2B40911412B132B630 /* Pods-BubbleTransition-BubbleTransition-dummy.m in Sources */, 488 | 6DFA2470FB16AF28269D7A8A /* YPBubbleTransition.m in Sources */, 489 | ); 490 | runOnlyForDeploymentPostprocessing = 0; 491 | }; 492 | /* End PBXSourcesBuildPhase section */ 493 | 494 | /* Begin PBXTargetDependency section */ 495 | 00E8F9618F69264B05FE5A11 /* PBXTargetDependency */ = { 496 | isa = PBXTargetDependency; 497 | name = "Pods-Tests-BubbleTransition"; 498 | target = AA4C09A55A8972C6C1A541C4 /* Pods-Tests-BubbleTransition */; 499 | targetProxy = 2ABA9FDA0E3FA8C8F8F40F9A /* PBXContainerItemProxy */; 500 | }; 501 | 1BBF6E5C29EF6B66A0F35DFC /* PBXTargetDependency */ = { 502 | isa = PBXTargetDependency; 503 | name = "Pods-Tests-BubbleTransition-BubbleTransition"; 504 | target = E13F78C60FE5830F245D43B0 /* Pods-Tests-BubbleTransition-BubbleTransition */; 505 | targetProxy = E910AD44B4249FBA791265A3 /* PBXContainerItemProxy */; 506 | }; 507 | 521249D70E2124D19209F39C /* PBXTargetDependency */ = { 508 | isa = PBXTargetDependency; 509 | name = "Pods-BubbleTransition-BubbleTransition-BubbleTransition"; 510 | target = 99EE668A11B62810C19B9816 /* Pods-BubbleTransition-BubbleTransition-BubbleTransition */; 511 | targetProxy = 6BC628A653D9CAE03143F9BA /* PBXContainerItemProxy */; 512 | }; 513 | 853F2BC75875831F2C68B93E /* PBXTargetDependency */ = { 514 | isa = PBXTargetDependency; 515 | name = "Pods-BubbleTransition-BubbleTransition"; 516 | target = 16A720CB16C0F6D2DE579433 /* Pods-BubbleTransition-BubbleTransition */; 517 | targetProxy = 245860D4275AF518BC51EE29 /* PBXContainerItemProxy */; 518 | }; 519 | /* End PBXTargetDependency section */ 520 | 521 | /* Begin XCBuildConfiguration section */ 522 | 03CA6F0A4E410323340E0D9B /* Release */ = { 523 | isa = XCBuildConfiguration; 524 | buildSettings = { 525 | ENABLE_STRICT_OBJC_MSGSEND = YES; 526 | PRODUCT_NAME = BubbleTransition; 527 | SDKROOT = iphoneos; 528 | SKIP_INSTALL = YES; 529 | WRAPPER_EXTENSION = bundle; 530 | }; 531 | name = Release; 532 | }; 533 | 15165B0D5A45827F4C2936D6 /* Debug */ = { 534 | isa = XCBuildConfiguration; 535 | baseConfigurationReference = 58430E1D0A0163980C2FDF43 /* Pods-BubbleTransition-BubbleTransition-Private.xcconfig */; 536 | buildSettings = { 537 | ENABLE_STRICT_OBJC_MSGSEND = YES; 538 | GCC_PREFIX_HEADER = "Target Support Files/Pods-BubbleTransition-BubbleTransition/Pods-BubbleTransition-BubbleTransition-prefix.pch"; 539 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 540 | MTL_ENABLE_DEBUG_INFO = YES; 541 | OTHER_LDFLAGS = ""; 542 | OTHER_LIBTOOLFLAGS = ""; 543 | PRODUCT_NAME = "$(TARGET_NAME)"; 544 | SDKROOT = iphoneos; 545 | SKIP_INSTALL = YES; 546 | }; 547 | name = Debug; 548 | }; 549 | 5671D2742BDE99C38A9A5285 /* Release */ = { 550 | isa = XCBuildConfiguration; 551 | baseConfigurationReference = 3E5D057209A064BED17921F2 /* Pods-BubbleTransition.release.xcconfig */; 552 | buildSettings = { 553 | ENABLE_STRICT_OBJC_MSGSEND = YES; 554 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 555 | MTL_ENABLE_DEBUG_INFO = NO; 556 | OTHER_LDFLAGS = ""; 557 | OTHER_LIBTOOLFLAGS = ""; 558 | PODS_ROOT = "$(SRCROOT)"; 559 | PRODUCT_NAME = "$(TARGET_NAME)"; 560 | SDKROOT = iphoneos; 561 | SKIP_INSTALL = YES; 562 | }; 563 | name = Release; 564 | }; 565 | 81238C273E15596C182F52B2 /* Release */ = { 566 | isa = XCBuildConfiguration; 567 | baseConfigurationReference = 58430E1D0A0163980C2FDF43 /* Pods-BubbleTransition-BubbleTransition-Private.xcconfig */; 568 | buildSettings = { 569 | ENABLE_STRICT_OBJC_MSGSEND = YES; 570 | GCC_PREFIX_HEADER = "Target Support Files/Pods-BubbleTransition-BubbleTransition/Pods-BubbleTransition-BubbleTransition-prefix.pch"; 571 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 572 | MTL_ENABLE_DEBUG_INFO = NO; 573 | OTHER_LDFLAGS = ""; 574 | OTHER_LIBTOOLFLAGS = ""; 575 | PRODUCT_NAME = "$(TARGET_NAME)"; 576 | SDKROOT = iphoneos; 577 | SKIP_INSTALL = YES; 578 | }; 579 | name = Release; 580 | }; 581 | 9FEF34E1402E1890A005D8A7 /* Debug */ = { 582 | isa = XCBuildConfiguration; 583 | baseConfigurationReference = FA5483807FA874CED1A4AE0E /* Pods-Tests.debug.xcconfig */; 584 | buildSettings = { 585 | ENABLE_STRICT_OBJC_MSGSEND = YES; 586 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 587 | MTL_ENABLE_DEBUG_INFO = YES; 588 | OTHER_LDFLAGS = ""; 589 | OTHER_LIBTOOLFLAGS = ""; 590 | PODS_ROOT = "$(SRCROOT)"; 591 | PRODUCT_NAME = "$(TARGET_NAME)"; 592 | SDKROOT = iphoneos; 593 | SKIP_INSTALL = YES; 594 | }; 595 | name = Debug; 596 | }; 597 | A326D946948AAF9D9C962B64 /* Debug */ = { 598 | isa = XCBuildConfiguration; 599 | baseConfigurationReference = 37696C5D8EDD7043FC123182 /* Pods-Tests-BubbleTransition-Private.xcconfig */; 600 | buildSettings = { 601 | ENABLE_STRICT_OBJC_MSGSEND = YES; 602 | GCC_PREFIX_HEADER = "Target Support Files/Pods-Tests-BubbleTransition/Pods-Tests-BubbleTransition-prefix.pch"; 603 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 604 | MTL_ENABLE_DEBUG_INFO = YES; 605 | OTHER_LDFLAGS = ""; 606 | OTHER_LIBTOOLFLAGS = ""; 607 | PRODUCT_NAME = "$(TARGET_NAME)"; 608 | SDKROOT = iphoneos; 609 | SKIP_INSTALL = YES; 610 | }; 611 | name = Debug; 612 | }; 613 | A5C4F3ABE1EF553162978BD2 /* Release */ = { 614 | isa = XCBuildConfiguration; 615 | buildSettings = { 616 | ALWAYS_SEARCH_USER_PATHS = NO; 617 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 618 | CLANG_CXX_LIBRARY = "libc++"; 619 | CLANG_ENABLE_MODULES = YES; 620 | CLANG_ENABLE_OBJC_ARC = YES; 621 | CLANG_WARN_BOOL_CONVERSION = YES; 622 | CLANG_WARN_CONSTANT_CONVERSION = YES; 623 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 624 | CLANG_WARN_EMPTY_BODY = YES; 625 | CLANG_WARN_ENUM_CONVERSION = YES; 626 | CLANG_WARN_INT_CONVERSION = YES; 627 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 628 | CLANG_WARN_UNREACHABLE_CODE = YES; 629 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 630 | COPY_PHASE_STRIP = YES; 631 | ENABLE_NS_ASSERTIONS = NO; 632 | GCC_C_LANGUAGE_STANDARD = gnu99; 633 | GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1"; 634 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 635 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 636 | GCC_WARN_UNDECLARED_SELECTOR = YES; 637 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 638 | GCC_WARN_UNUSED_FUNCTION = YES; 639 | GCC_WARN_UNUSED_VARIABLE = YES; 640 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 641 | STRIP_INSTALLED_PRODUCT = NO; 642 | SYMROOT = "${SRCROOT}/../build"; 643 | VALIDATE_PRODUCT = YES; 644 | }; 645 | name = Release; 646 | }; 647 | AEC6888ED8A276150B82C09E /* Debug */ = { 648 | isa = XCBuildConfiguration; 649 | buildSettings = { 650 | ALWAYS_SEARCH_USER_PATHS = NO; 651 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 652 | CLANG_CXX_LIBRARY = "libc++"; 653 | CLANG_ENABLE_MODULES = YES; 654 | CLANG_ENABLE_OBJC_ARC = YES; 655 | CLANG_WARN_BOOL_CONVERSION = YES; 656 | CLANG_WARN_CONSTANT_CONVERSION = YES; 657 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 658 | CLANG_WARN_EMPTY_BODY = YES; 659 | CLANG_WARN_ENUM_CONVERSION = YES; 660 | CLANG_WARN_INT_CONVERSION = YES; 661 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 662 | CLANG_WARN_UNREACHABLE_CODE = YES; 663 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 664 | COPY_PHASE_STRIP = NO; 665 | GCC_C_LANGUAGE_STANDARD = gnu99; 666 | GCC_DYNAMIC_NO_PIC = NO; 667 | GCC_OPTIMIZATION_LEVEL = 0; 668 | GCC_PREPROCESSOR_DEFINITIONS = ( 669 | "DEBUG=1", 670 | "$(inherited)", 671 | ); 672 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 673 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 674 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 675 | GCC_WARN_UNDECLARED_SELECTOR = YES; 676 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 677 | GCC_WARN_UNUSED_FUNCTION = YES; 678 | GCC_WARN_UNUSED_VARIABLE = YES; 679 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 680 | ONLY_ACTIVE_ARCH = YES; 681 | STRIP_INSTALLED_PRODUCT = NO; 682 | SYMROOT = "${SRCROOT}/../build"; 683 | }; 684 | name = Debug; 685 | }; 686 | B96FBCE7DF7D213ABF11A563 /* Release */ = { 687 | isa = XCBuildConfiguration; 688 | baseConfigurationReference = 37696C5D8EDD7043FC123182 /* Pods-Tests-BubbleTransition-Private.xcconfig */; 689 | buildSettings = { 690 | ENABLE_STRICT_OBJC_MSGSEND = YES; 691 | GCC_PREFIX_HEADER = "Target Support Files/Pods-Tests-BubbleTransition/Pods-Tests-BubbleTransition-prefix.pch"; 692 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 693 | MTL_ENABLE_DEBUG_INFO = NO; 694 | OTHER_LDFLAGS = ""; 695 | OTHER_LIBTOOLFLAGS = ""; 696 | PRODUCT_NAME = "$(TARGET_NAME)"; 697 | SDKROOT = iphoneos; 698 | SKIP_INSTALL = YES; 699 | }; 700 | name = Release; 701 | }; 702 | BD710F346C40A14469E6D5B3 /* Release */ = { 703 | isa = XCBuildConfiguration; 704 | baseConfigurationReference = 3845D06BCA18E7BAD8041DBA /* Pods-Tests.release.xcconfig */; 705 | buildSettings = { 706 | ENABLE_STRICT_OBJC_MSGSEND = YES; 707 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 708 | MTL_ENABLE_DEBUG_INFO = NO; 709 | OTHER_LDFLAGS = ""; 710 | OTHER_LIBTOOLFLAGS = ""; 711 | PODS_ROOT = "$(SRCROOT)"; 712 | PRODUCT_NAME = "$(TARGET_NAME)"; 713 | SDKROOT = iphoneos; 714 | SKIP_INSTALL = YES; 715 | }; 716 | name = Release; 717 | }; 718 | C532BB48339DF146B90AAA5D /* Debug */ = { 719 | isa = XCBuildConfiguration; 720 | buildSettings = { 721 | ENABLE_STRICT_OBJC_MSGSEND = YES; 722 | PRODUCT_NAME = BubbleTransition; 723 | SDKROOT = iphoneos; 724 | SKIP_INSTALL = YES; 725 | WRAPPER_EXTENSION = bundle; 726 | }; 727 | name = Debug; 728 | }; 729 | D55889F779811760087C1035 /* Release */ = { 730 | isa = XCBuildConfiguration; 731 | buildSettings = { 732 | ENABLE_STRICT_OBJC_MSGSEND = YES; 733 | PRODUCT_NAME = BubbleTransition; 734 | SDKROOT = iphoneos; 735 | SKIP_INSTALL = YES; 736 | WRAPPER_EXTENSION = bundle; 737 | }; 738 | name = Release; 739 | }; 740 | DCAC5CFE6159183A177BA656 /* Debug */ = { 741 | isa = XCBuildConfiguration; 742 | buildSettings = { 743 | ENABLE_STRICT_OBJC_MSGSEND = YES; 744 | PRODUCT_NAME = BubbleTransition; 745 | SDKROOT = iphoneos; 746 | SKIP_INSTALL = YES; 747 | WRAPPER_EXTENSION = bundle; 748 | }; 749 | name = Debug; 750 | }; 751 | F8EE3FC5D155AFADEE7EE440 /* Debug */ = { 752 | isa = XCBuildConfiguration; 753 | baseConfigurationReference = 0E841A68D8B6BB6561A56BC0 /* Pods-BubbleTransition.debug.xcconfig */; 754 | buildSettings = { 755 | ENABLE_STRICT_OBJC_MSGSEND = YES; 756 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 757 | MTL_ENABLE_DEBUG_INFO = YES; 758 | OTHER_LDFLAGS = ""; 759 | OTHER_LIBTOOLFLAGS = ""; 760 | PODS_ROOT = "$(SRCROOT)"; 761 | PRODUCT_NAME = "$(TARGET_NAME)"; 762 | SDKROOT = iphoneos; 763 | SKIP_INSTALL = YES; 764 | }; 765 | name = Debug; 766 | }; 767 | /* End XCBuildConfiguration section */ 768 | 769 | /* Begin XCConfigurationList section */ 770 | 07C53F9B2D8EA80AE037DF8D /* Build configuration list for PBXNativeTarget "Pods-BubbleTransition-BubbleTransition" */ = { 771 | isa = XCConfigurationList; 772 | buildConfigurations = ( 773 | 15165B0D5A45827F4C2936D6 /* Debug */, 774 | 81238C273E15596C182F52B2 /* Release */, 775 | ); 776 | defaultConfigurationIsVisible = 0; 777 | defaultConfigurationName = Release; 778 | }; 779 | 2C4672EFDB0683FB035B4691 /* Build configuration list for PBXProject "Pods" */ = { 780 | isa = XCConfigurationList; 781 | buildConfigurations = ( 782 | AEC6888ED8A276150B82C09E /* Debug */, 783 | A5C4F3ABE1EF553162978BD2 /* Release */, 784 | ); 785 | defaultConfigurationIsVisible = 0; 786 | defaultConfigurationName = Release; 787 | }; 788 | 314878C89F3DB2748D87F4E3 /* Build configuration list for PBXNativeTarget "Pods-BubbleTransition" */ = { 789 | isa = XCConfigurationList; 790 | buildConfigurations = ( 791 | F8EE3FC5D155AFADEE7EE440 /* Debug */, 792 | 5671D2742BDE99C38A9A5285 /* Release */, 793 | ); 794 | defaultConfigurationIsVisible = 0; 795 | defaultConfigurationName = Release; 796 | }; 797 | 4889A9B4FC67B626808B17DA /* Build configuration list for PBXNativeTarget "Pods-Tests-BubbleTransition-BubbleTransition" */ = { 798 | isa = XCConfigurationList; 799 | buildConfigurations = ( 800 | DCAC5CFE6159183A177BA656 /* Debug */, 801 | D55889F779811760087C1035 /* Release */, 802 | ); 803 | defaultConfigurationIsVisible = 0; 804 | defaultConfigurationName = Release; 805 | }; 806 | 726B6695FB531AFC3DA3BC48 /* Build configuration list for PBXNativeTarget "Pods-BubbleTransition-BubbleTransition-BubbleTransition" */ = { 807 | isa = XCConfigurationList; 808 | buildConfigurations = ( 809 | C532BB48339DF146B90AAA5D /* Debug */, 810 | 03CA6F0A4E410323340E0D9B /* Release */, 811 | ); 812 | defaultConfigurationIsVisible = 0; 813 | defaultConfigurationName = Release; 814 | }; 815 | C828A6EBE16955C3BC36E889 /* Build configuration list for PBXNativeTarget "Pods-Tests-BubbleTransition" */ = { 816 | isa = XCConfigurationList; 817 | buildConfigurations = ( 818 | A326D946948AAF9D9C962B64 /* Debug */, 819 | B96FBCE7DF7D213ABF11A563 /* Release */, 820 | ); 821 | defaultConfigurationIsVisible = 0; 822 | defaultConfigurationName = Release; 823 | }; 824 | E796C3EAD7437DBFE5173B03 /* Build configuration list for PBXNativeTarget "Pods-Tests" */ = { 825 | isa = XCConfigurationList; 826 | buildConfigurations = ( 827 | 9FEF34E1402E1890A005D8A7 /* Debug */, 828 | BD710F346C40A14469E6D5B3 /* Release */, 829 | ); 830 | defaultConfigurationIsVisible = 0; 831 | defaultConfigurationName = Release; 832 | }; 833 | /* End XCConfigurationList section */ 834 | }; 835 | rootObject = 8864399A3C47299407462867 /* Project object */; 836 | } 837 | --------------------------------------------------------------------------------