├── FAStickers ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── ReplaceMe.swift │ ├── GifCell.swift │ ├── StickerCell.swift │ ├── EmojiCell.swift │ ├── EmojisCVDelegate.swift │ ├── SwiftGif.swift │ └── StickerViewController.swift ├── _Pods.xcodeproj ├── Example ├── FAStickers │ ├── gif1.gif │ ├── gif2.gif │ ├── gif3.gif │ ├── gif4.gif │ ├── gif5.gif │ ├── gif6.gif │ ├── gif7.gif │ ├── gif8.gif │ ├── gif9.gif │ ├── Images.xcassets │ │ ├── Contents.json │ │ ├── stickers │ │ │ ├── Contents.json │ │ │ ├── 100.imageset │ │ │ │ ├── 0.png │ │ │ │ └── Contents.json │ │ │ ├── 101.imageset │ │ │ │ ├── 6.png │ │ │ │ └── Contents.json │ │ │ ├── 102.imageset │ │ │ │ ├── 1.png │ │ │ │ └── Contents.json │ │ │ ├── 103.imageset │ │ │ │ ├── 2.png │ │ │ │ └── Contents.json │ │ │ ├── 104.imageset │ │ │ │ ├── 3.png │ │ │ │ └── Contents.json │ │ │ ├── 105.imageset │ │ │ │ ├── 4.png │ │ │ │ └── Contents.json │ │ │ ├── 106.imageset │ │ │ │ ├── 5.png │ │ │ │ └── Contents.json │ │ │ ├── 107.imageset │ │ │ │ ├── 7.png │ │ │ │ └── Contents.json │ │ │ ├── 108.imageset │ │ │ │ ├── 8.png │ │ │ │ └── Contents.json │ │ │ ├── 109.imageset │ │ │ │ ├── 9.png │ │ │ │ └── Contents.json │ │ │ └── 110.imageset │ │ │ │ ├── 10.png │ │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.xib │ └── ViewController.swift ├── Pods │ ├── Target Support Files │ │ ├── FAStickers │ │ │ ├── FAStickers.modulemap │ │ │ ├── FAStickers-dummy.m │ │ │ ├── FAStickers-prefix.pch │ │ │ ├── FAStickers-umbrella.h │ │ │ ├── FAStickers.xcconfig │ │ │ └── FAStickers-Info.plist │ │ ├── Pods-FAStickers_Tests │ │ │ ├── Pods-FAStickers_Tests.modulemap │ │ │ ├── Pods-FAStickers_Tests-acknowledgements.markdown │ │ │ ├── Pods-FAStickers_Tests-dummy.m │ │ │ ├── Pods-FAStickers_Tests-umbrella.h │ │ │ ├── Pods-FAStickers_Tests.debug.xcconfig │ │ │ ├── Pods-FAStickers_Tests.release.xcconfig │ │ │ ├── Pods-FAStickers_Tests-Info.plist │ │ │ └── Pods-FAStickers_Tests-acknowledgements.plist │ │ └── Pods-FAStickers_Example │ │ │ ├── Pods-FAStickers_Example.modulemap │ │ │ ├── Pods-FAStickers_Example-dummy.m │ │ │ ├── Pods-FAStickers_Example-umbrella.h │ │ │ ├── Pods-FAStickers_Example.debug.xcconfig │ │ │ ├── Pods-FAStickers_Example.release.xcconfig │ │ │ ├── Pods-FAStickers_Example-Info.plist │ │ │ ├── Pods-FAStickers_Example-acknowledgements.markdown │ │ │ ├── Pods-FAStickers_Example-acknowledgements.plist │ │ │ └── Pods-FAStickers_Example-frameworks.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── FAStickers.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── Podfile ├── FAStickers.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── FAStickers-Example.xcscheme │ └── project.pbxproj ├── FAStickers.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Podfile.lock └── Tests │ ├── Info.plist │ └── Tests.swift ├── .travis.yml ├── .gitignore ├── LICENSE ├── FAStickers.podspec └── README.md /FAStickers/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FAStickers/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FAStickers/Classes/ReplaceMe.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /Example/FAStickers/gif1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/gif1.gif -------------------------------------------------------------------------------- /Example/FAStickers/gif2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/gif2.gif -------------------------------------------------------------------------------- /Example/FAStickers/gif3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/gif3.gif -------------------------------------------------------------------------------- /Example/FAStickers/gif4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/gif4.gif -------------------------------------------------------------------------------- /Example/FAStickers/gif5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/gif5.gif -------------------------------------------------------------------------------- /Example/FAStickers/gif6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/gif6.gif -------------------------------------------------------------------------------- /Example/FAStickers/gif7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/gif7.gif -------------------------------------------------------------------------------- /Example/FAStickers/gif8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/gif8.gif -------------------------------------------------------------------------------- /Example/FAStickers/gif9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/gif9.gif -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/100.imageset/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/Images.xcassets/stickers/100.imageset/0.png -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/101.imageset/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/Images.xcassets/stickers/101.imageset/6.png -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/102.imageset/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/Images.xcassets/stickers/102.imageset/1.png -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/103.imageset/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/Images.xcassets/stickers/103.imageset/2.png -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/104.imageset/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/Images.xcassets/stickers/104.imageset/3.png -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/105.imageset/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/Images.xcassets/stickers/105.imageset/4.png -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/106.imageset/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/Images.xcassets/stickers/106.imageset/5.png -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/107.imageset/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/Images.xcassets/stickers/107.imageset/7.png -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/108.imageset/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/Images.xcassets/stickers/108.imageset/8.png -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/109.imageset/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/Images.xcassets/stickers/109.imageset/9.png -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/110.imageset/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarisAlbalawi/FAStickers/HEAD/Example/FAStickers/Images.xcassets/stickers/110.imageset/10.png -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FAStickers/FAStickers.modulemap: -------------------------------------------------------------------------------- 1 | framework module FAStickers { 2 | umbrella header "FAStickers-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FAStickers/FAStickers-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FAStickers : NSObject 3 | @end 4 | @implementation PodsDummy_FAStickers 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'FAStickers_Example' do 4 | pod 'FAStickers', :path => '../' 5 | 6 | target 'FAStickers_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Tests/Pods-FAStickers_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_FAStickers_Tests { 2 | umbrella header "Pods-FAStickers_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Tests/Pods-FAStickers_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_FAStickers_Example { 2 | umbrella header "Pods-FAStickers_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Tests/Pods-FAStickers_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_FAStickers_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_FAStickers_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/FAStickers.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_FAStickers_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_FAStickers_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FAStickers/FAStickers-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example/FAStickers.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/FAStickers.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - FAStickers (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - FAStickers (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | FAStickers: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | FAStickers: 48ba452a651bb0cf6acbf78bd962f4cbcf928876 13 | 14 | PODFILE CHECKSUM: e4beaf079ab7f9c450c6421f146ec998d5a261ea 15 | 16 | COCOAPODS: 1.6.2 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - FAStickers (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - FAStickers (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | FAStickers: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | FAStickers: 48ba452a651bb0cf6acbf78bd962f4cbcf928876 13 | 14 | PODFILE CHECKSUM: e4beaf079ab7f9c450c6421f146ec998d5a261ea 15 | 16 | COCOAPODS: 1.6.2 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FAStickers/FAStickers-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double FAStickersVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char FAStickersVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/100.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "0.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/101.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "6.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/102.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/103.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/104.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "3.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/105.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "4.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/106.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "5.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/107.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "7.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/108.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "8.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/109.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "9.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/stickers/110.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "10.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Tests/Pods-FAStickers_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_FAStickers_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_FAStickers_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_FAStickers_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_FAStickers_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FAStickers/FAStickers.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FAStickers 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * https://www.objc.io/issues/6-build-tools/travis-ci/ 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/FAStickers.xcworkspace -scheme FAStickers-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/FAStickers.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FAStickers", 3 | "version": "0.1.0", 4 | "summary": "A short description of FAStickers.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/farisalbalawi/FAStickers", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "farisalbalawi": "xx-301@hotmail.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/farisalbalawi/FAStickers.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "FAStickers/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Tests/Pods-FAStickers_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FAStickers" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FAStickers/FAStickers.framework/Headers" 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_LDFLAGS = $(inherited) -framework "FAStickers" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Tests/Pods-FAStickers_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FAStickers" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FAStickers/FAStickers.framework/Headers" 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_LDFLAGS = $(inherited) -framework "FAStickers" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FAStickers" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FAStickers/FAStickers.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "FAStickers" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FAStickers" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FAStickers/FAStickers.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "FAStickers" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | 3 | class Tests: XCTestCase { 4 | 5 | override func setUp() { 6 | super.setUp() 7 | // Put setup code here. This method is called before the invocation of each test method in the class. 8 | } 9 | 10 | override func tearDown() { 11 | // Put teardown code here. This method is called after the invocation of each test method in the class. 12 | super.tearDown() 13 | } 14 | 15 | func testExample() { 16 | // This is an example of a functional test case. 17 | XCTAssert(true, "Pass") 18 | } 19 | 20 | func testPerformanceExample() { 21 | // This is an example of a performance test case. 22 | self.measure() { 23 | // Put the code you want to measure the time of here. 24 | } 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /.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 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 26 | # Carthage/Checkouts 27 | 28 | Carthage/Build 29 | 30 | # We recommend against adding the Pods directory to your .gitignore. However 31 | # you should judge for yourself, the pros and cons are mentioned at: 32 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 33 | # 34 | # Note: if you ignore the Pods directory, make sure to uncomment 35 | # `pod install` in .travis.yml 36 | # 37 | # Pods/ 38 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/FAStickers/FAStickers-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Tests/Pods-FAStickers_Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Tests/Pods-FAStickers_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 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example/FAStickers/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "size" : "1024x1024", 46 | "scale" : "1x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 farisalbalawi 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 | -------------------------------------------------------------------------------- /FAStickers/Classes/GifCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // GifCell.swift 3 | // FAStickers 4 | // 5 | // Created by Faris Albalawi on 6/4/19. 6 | // 7 | 8 | import UIKit 9 | 10 | class GifCell: UICollectionViewCell { 11 | var gifImage = UIImageView() 12 | 13 | 14 | override init(frame: CGRect) { 15 | super.init(frame: frame) 16 | self.gifImage.contentMode = .scaleAspectFit 17 | gifImage.translatesAutoresizingMaskIntoConstraints = false 18 | self.addSubview(self.gifImage) 19 | 20 | let constraints = [ 21 | 22 | gifImage.topAnchor.constraint(equalTo: topAnchor, constant: 1), 23 | gifImage.bottomAnchor.constraint(equalTo: bottomAnchor, constant: -1), 24 | gifImage.leadingAnchor.constraint(equalTo: leadingAnchor, constant: -1), 25 | gifImage.trailingAnchor.constraint(equalTo: trailingAnchor, constant: 1), 26 | 27 | ] 28 | 29 | NSLayoutConstraint.activate(constraints) 30 | 31 | } 32 | 33 | 34 | 35 | 36 | required init?(coder aDecoder: NSCoder) { 37 | super.init(coder: aDecoder) 38 | // fatalError("init(coder:) has not been implemented") 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /FAStickers/Classes/StickerCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // StickerCell.swift 3 | // FAStickers 4 | // 5 | // Created by Faris Albalawi on 6/4/19. 6 | // 7 | 8 | import UIKit 9 | 10 | class StickerCell: UICollectionViewCell { 11 | 12 | var stickerImage = UIImageView() 13 | 14 | override init(frame: CGRect) { 15 | super.init(frame: frame) 16 | self.stickerImage.contentMode = .scaleAspectFit 17 | stickerImage.translatesAutoresizingMaskIntoConstraints = false 18 | self.addSubview(self.stickerImage) 19 | 20 | let constraints = [ 21 | 22 | stickerImage.topAnchor.constraint(equalTo: topAnchor, constant: 1), 23 | stickerImage.bottomAnchor.constraint(equalTo: bottomAnchor, constant: -1), 24 | stickerImage.leadingAnchor.constraint(equalTo: leadingAnchor, constant: -1), 25 | stickerImage.trailingAnchor.constraint(equalTo: trailingAnchor, constant: 1), 26 | 27 | ] 28 | 29 | NSLayoutConstraint.activate(constraints) 30 | 31 | } 32 | 33 | 34 | 35 | 36 | required init?(coder aDecoder: NSCoder) { 37 | super.init(coder: aDecoder) 38 | // fatalError("init(coder:) has not been implemented") 39 | } 40 | 41 | 42 | } 43 | -------------------------------------------------------------------------------- /Example/FAStickers/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /FAStickers/Classes/EmojiCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // EmojiCell.swift 3 | // FAStickers 4 | // 5 | // Created by Faris Albalawi on 6/4/19. 6 | // 7 | 8 | 9 | import UIKit 10 | 11 | class EmojiCell: UICollectionViewCell { 12 | var emojiLabel = UILabel() 13 | 14 | 15 | override init(frame: CGRect) { 16 | super.init(frame: frame) 17 | 18 | self.emojiLabel.sizeToFit() 19 | self.emojiLabel.font = emojiLabel.font.withSize(50) 20 | self.emojiLabel.translatesAutoresizingMaskIntoConstraints = false 21 | self.addSubview(self.emojiLabel) 22 | 23 | let constraints = [ 24 | 25 | emojiLabel.topAnchor.constraint(equalTo: topAnchor, constant: 1), 26 | emojiLabel.bottomAnchor.constraint(equalTo: bottomAnchor, constant: -1), 27 | emojiLabel.leadingAnchor.constraint(equalTo: leadingAnchor, constant: -1), 28 | emojiLabel.trailingAnchor.constraint(equalTo: trailingAnchor, constant: 1), 29 | 30 | ] 31 | 32 | NSLayoutConstraint.activate(constraints) 33 | 34 | } 35 | 36 | 37 | 38 | 39 | required init?(coder aDecoder: NSCoder) { 40 | super.init(coder: aDecoder) 41 | // fatalError("init(coder:) has not been implemented") 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## FAStickers 5 | 6 | Copyright (c) 2019 farisalbalawi 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 - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /FAStickers.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint FAStickers.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'FAStickers' 11 | s.version = '0.1.0' 12 | s.swift_version = '5' 13 | s.summary = 'FAStickers allows you to create easily Stickers, Emojis, and Gifs' 14 | 15 | s.description = <<-DESC 16 | 'FAStickers allows you to create easily Stickers, Emojis, and Gif that you can use it for Photo Editor like the SnapChat app when you add a Stickers on images, etc, or you can use it in chat to send a Stickers, Emojis or even a Gif message, etc. '. 17 | DESC 18 | 19 | s.homepage = 'https://github.com/FarisAlbalawi/FAStickers' 20 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 21 | s.license = { :type => 'MIT', :file => 'LICENSE' } 22 | s.author = { 'Faris Albalawi' => 'developer.faris@gmail.com' } 23 | s.source = { :git => 'https://github.com/FarisAlbalawi/FAStickers.git', :tag => s.version.to_s } 24 | # s.social_media_url = 'https://twitter.com/' 25 | 26 | s.ios.deployment_target = '11.0' 27 | 28 | s.source_files = 'FAStickers/Classes/*.swift' 29 | 30 | # s.resource_bundles = { 31 | # 'FAStickers' => ['FAStickers/Assets/*.png'] 32 | # } 33 | 34 | # s.public_header_files = 'Pod/Classes/**/*.h' 35 | s.frameworks = 'UIKit', 'MapKit' 36 | # s.dependency 'AFNetworking', '~> 2.3' 37 | end 38 | -------------------------------------------------------------------------------- /FAStickers/Classes/EmojisCVDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // EmojisCVDelegate.swift 3 | // FAStickers 4 | // 5 | // Created by Faris Albalawi on 6/4/19. 6 | // 7 | 8 | import UIKit 9 | 10 | class EmojisCVDelegate: NSObject, UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout { 11 | 12 | 13 | var EmojiDelegate : StickerEmojiDelegate! 14 | 15 | 16 | 17 | let emojiRanges = [ 18 | 0x1F601...0x1F64F, 19 | 0x1F30D...0x1F567, 20 | 0x1F680...0x1F6C0, 21 | 0x1F681...0x1F6C5 22 | ] 23 | 24 | var emojis: [String] = [] 25 | 26 | override init() { 27 | super.init() 28 | 29 | for range in emojiRanges { 30 | for i in range { 31 | let c = String(describing: UnicodeScalar(i)!) 32 | emojis.append(c) 33 | } 34 | } 35 | } 36 | 37 | 38 | 39 | func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { 40 | return emojis.count 41 | } 42 | 43 | 44 | func numberOfSections(in collectionView: UICollectionView) -> Int { 45 | return 1 46 | } 47 | 48 | func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 49 | let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath) as! EmojiCell 50 | cell.emojiLabel.text = emojis[indexPath.row] 51 | return cell 52 | } 53 | 54 | func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) { 55 | 56 | EmojiDelegate.EmojiTapped(EmojiName: emojis[indexPath.row]) 57 | print(emojis[indexPath.row]) 58 | } 59 | 60 | 61 | func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat { 62 | return 4 63 | } 64 | 65 | func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat { 66 | return 0 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /Example/FAStickers/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // FAStickers 4 | // 5 | // Created by farisalbalawi on 06/04/2019. 6 | // Copyright (c) 2019 farisalbalawi. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | internal func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example-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) 2019 farisalbalawi <xx-301@hotmail.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 | License 38 | MIT 39 | Title 40 | FAStickers 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example/FAStickers/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /Example/FAStickers/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Example/FAStickers/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // FAStickers 4 | // 5 | // Created by farisalbalawi on 06/04/2019. 6 | // Copyright (c) 2019 farisalbalawi. All rights reserved. 7 | // 8 | 9 | 10 | import UIKit 11 | import FAStickers 12 | 13 | class ViewController: UIViewController { 14 | 15 | var StickerVC: StickerViewController! 16 | 17 | 18 | public var stickers : [String] = [] 19 | public var gifs : [String] = [] 20 | 21 | 22 | override func viewDidLoad() { 23 | super.viewDidLoad() 24 | // Do any additional setup after loading the view. 25 | 26 | for i in 100...110 { 27 | stickers.append(i.description) 28 | } 29 | 30 | 31 | let gifImage = ["gif1","gif2","gif3","gif4", "gif5","gif6","gif7","gif8", "gif9"] 32 | 33 | for i in gifImage { 34 | gifs.append(i) 35 | } 36 | 37 | StickerVC = StickerViewController(nibName: nil, bundle: Bundle(for: StickerViewController.self)) 38 | 39 | 40 | } 41 | 42 | 43 | @IBAction func AddSticker(_ sender: Any) { 44 | showStickerView() 45 | } 46 | 47 | 48 | 49 | } 50 | 51 | 52 | extension ViewController: StickerEmojiDelegate { 53 | 54 | 55 | func GitTapped(GifName: String) { 56 | print(GifName) 57 | let Gif = UIImageView(frame: CGRect(x: 0, y: 0, width: 100, height: 100)) 58 | Gif.loadGif(name: GifName) 59 | Gif.contentMode = .scaleAspectFit 60 | Gif.center = view.center 61 | self.view.addSubview(Gif) 62 | 63 | self.removeStickerView() 64 | } 65 | 66 | 67 | func EmojiTapped(EmojiName: String) { 68 | print(EmojiName) 69 | var emojiView = UIView() 70 | let emojiLabel = UILabel(frame: CGRect(x: 0, y: 0, width: 70, height: 70)) 71 | emojiLabel.text = EmojiName 72 | emojiLabel.font = UIFont.systemFont(ofSize: 50) 73 | emojiView = emojiLabel 74 | emojiView.center = view.center 75 | self.view.addSubview(emojiView) 76 | self.removeStickerView() 77 | } 78 | 79 | func StickerTapped(StickerName: String) { 80 | print(StickerName) 81 | let Sticker = UIImageView(frame: CGRect(x: 0, y: 0, width: 100, height: 100)) 82 | Sticker.image = UIImage(named: StickerName) 83 | Sticker.contentMode = .scaleAspectFit 84 | Sticker.center = view.center 85 | self.view.addSubview(Sticker) 86 | 87 | self.removeStickerView() 88 | } 89 | 90 | 91 | 92 | func showStickerView() { 93 | 94 | StickerVC.stickerDelegate = self 95 | 96 | 97 | // append gifs 98 | for gifImage in self.gifs { 99 | StickerVC.gits.append(gifImage) 100 | } 101 | 102 | // append stickers 103 | for stickersImage in self.stickers { 104 | StickerVC.stickers.append(stickersImage) 105 | } 106 | 107 | self.addChild(StickerVC) 108 | self.view.addSubview(StickerVC.view) 109 | StickerVC.didMove(toParent: self) 110 | let height = view.frame.height 111 | let width = view.frame.width 112 | StickerVC.view.frame = CGRect(x: 0, y: self.view.frame.maxY , width: width, height: height) 113 | } 114 | 115 | func removeStickerView() { 116 | UIView.animate(withDuration: 0.3, 117 | delay: 0, 118 | options: UIView.AnimationOptions.curveEaseIn, 119 | animations: { () -> Void in 120 | var frame = self.StickerVC.view.frame 121 | frame.origin.y = UIScreen.main.bounds.maxY 122 | self.StickerVC.view.frame = frame 123 | 124 | }, completion: { (finished) -> Void in 125 | self.StickerVC.view.removeFromSuperview() 126 | self.StickerVC.removeFromParent() 127 | }) 128 | } 129 | 130 | } 131 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FAStickers 2 | 3 | [![CI Status](https://img.shields.io/travis/farisalbalawi/FAStickers.svg?style=flat)](https://travis-ci.org/farisalbalawi/FAStickers) 4 | [![Version](https://img.shields.io/cocoapods/v/FAStickers.svg?style=flat)](https://cocoapods.org/pods/FAStickers) 5 | [![License](https://img.shields.io/cocoapods/l/FAStickers.svg?style=flat)](https://cocoapods.org/pods/FAStickers) 6 | [![Platform](https://img.shields.io/cocoapods/p/FAStickers.svg?style=flat)](https://cocoapods.org/pods/FAStickers) 7 | 8 | ![ColorfulTornJunco-small](https://user-images.githubusercontent.com/18473439/58902641-7faf6a00-86d1-11e9-9e9c-2535af524384.gif) 9 | 10 | 11 | 12 | ## Features 13 | 14 | - Supports Stickers 15 | - Supports Emojis 16 | - Supports Gifs 17 | - Swift 5 18 | 19 | 20 | 21 | ## Requirements 22 | 23 | - iOS 11.0 and later 24 | - swift 5 25 | 26 | ## Installation 27 | 28 | FAStickers is available through [CocoaPods](https://cocoapods.org). To install 29 | it, simply add the following line to your Podfile: 30 | 31 | ```ruby 32 | pod 'FAStickers' 33 | ``` 34 | 35 | ## Example 36 | 37 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 38 | 39 | ```swift 40 | import FAStickers 41 | import UIKit 42 | class ViewController: UIViewController{ 43 | 44 | var StickerVC: StickerViewController! 45 | public var stickers : [String] = [] 46 | public var gifs : [String] = [] 47 | 48 | 49 | 50 | override func viewDidLoad() { 51 | super.viewDidLoad() 52 | 53 | // append stickers 54 | for i in 100...110 { 55 | stickers.append(i.description) 56 | } 57 | 58 | 59 | let gifImage = ["gif1","gif2","gif3","gif4", "gif5","gif6","gif7","gif8", "gif9"] 60 | // append gitf 61 | for i in gifImage { 62 | gifs.append(i) 63 | } 64 | 65 | StickerVC = StickerViewController(nibName: nil, bundle: Bundle(for: StickerViewController.self)) 66 | 67 | 68 | } 69 | 70 | @IBAction func AddSticker(_ sender: Any) { 71 | showStickerView() 72 | } 73 | 74 | 75 | 76 | } 77 | 78 | 79 | extension ViewController: StickerEmojiDelegate { 80 | 81 | 82 | func GitTapped(GifName: String) { 83 | print(GifName) 84 | let Gif = UIImageView(frame: CGRect(x: 0, y: 0, width: 100, height: 100)) 85 | Gif.loadGif(name: GifName) 86 | Gif.contentMode = .scaleAspectFit 87 | Gif.center = view.center 88 | self.view.addSubview(Gif) 89 | 90 | self.removeStickerView() 91 | } 92 | 93 | 94 | func EmojiTapped(EmojiName: String) { 95 | print(EmojiName) 96 | var emojiView = UIView() 97 | let emojiLabel = UILabel(frame: CGRect(x: 0, y: 0, width: 70, height: 70)) 98 | emojiLabel.text = EmojiName 99 | emojiLabel.font = UIFont.systemFont(ofSize: 50) 100 | emojiView = emojiLabel 101 | emojiView.center = view.center 102 | self.view.addSubview(emojiView) 103 | self.removeStickerView() 104 | } 105 | 106 | func StickerTapped(StickerName: String) { 107 | print(StickerName) 108 | let Sticker = UIImageView(frame: CGRect(x: 0, y: 0, width: 100, height: 100)) 109 | Sticker.image = UIImage(named: StickerName) 110 | Sticker.contentMode = .scaleAspectFit 111 | Sticker.center = view.center 112 | self.view.addSubview(Sticker) 113 | 114 | self.removeStickerView() 115 | } 116 | 117 | 118 | 119 | func showStickerView() { 120 | 121 | StickerVC.stickerDelegate = self 122 | 123 | 124 | // append gifs 125 | for gifImage in self.gifs { 126 | StickerVC.gits.append(gifImage) 127 | } 128 | 129 | // append stickers 130 | for stickersImage in self.stickers { 131 | StickerVC.stickers.append(stickersImage) 132 | } 133 | 134 | self.addChild(StickerVC) 135 | self.view.addSubview(StickerVC.view) 136 | StickerVC.didMove(toParent: self) 137 | let height = view.frame.height 138 | let width = view.frame.width 139 | StickerVC.view.frame = CGRect(x: 0, y: self.view.frame.maxY , width: width, height: height) 140 | } 141 | 142 | func removeStickerView() { 143 | UIView.animate(withDuration: 0.3, 144 | delay: 0, 145 | options: UIView.AnimationOptions.curveEaseIn, 146 | animations: { () -> Void in 147 | var frame = self.StickerVC.view.frame 148 | frame.origin.y = UIScreen.main.bounds.maxY 149 | self.StickerVC.view.frame = frame 150 | 151 | }, completion: { (finished) -> Void in 152 | self.StickerVC.view.removeFromSuperview() 153 | self.StickerVC.removeFromParent() 154 | }) 155 | } 156 | 157 | } 158 | ``` 159 | 160 | ## Delegate: 161 | 162 | ```ruby 163 | StickerEmojiDelegate 164 | ``` 165 | 166 | ```swift 167 | func EmojiTapped(EmojiName: String) 168 | func StickerTapped(StickerName: String) 169 | func GitTapped(GifName: String) 170 | ``` 171 | 172 | ## Author 173 | 174 | Faris Albalawi, 175 | FA.FarisAlbalawi@gmail.com 176 | 177 | ## License 178 | 179 | FAStickers is available under the MIT license. See the LICENSE file for more info. 180 | 181 | -------------------------------------------------------------------------------- /Example/FAStickers.xcodeproj/xcshareddata/xcschemes/FAStickers-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 78 | 80 | 86 | 87 | 88 | 89 | 90 | 91 | 97 | 99 | 105 | 106 | 107 | 108 | 110 | 111 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /FAStickers/Classes/SwiftGif.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SwiftGif.swift 3 | // FAStickers 4 | // 5 | // Created by Faris Albalawi on 6/4/19. 6 | // 7 | 8 | 9 | import UIKit 10 | import ImageIO 11 | 12 | extension UIImageView { 13 | 14 | public func loadGif(name: String) { 15 | DispatchQueue.global().async { 16 | let image = UIImage.gif(name: name) 17 | DispatchQueue.main.async { 18 | self.image = image 19 | } 20 | } 21 | } 22 | 23 | @available(iOS 9.0, *) 24 | public func loadGif(asset: String) { 25 | DispatchQueue.global().async { 26 | let image = UIImage.gif(asset: asset) 27 | DispatchQueue.main.async { 28 | self.image = image 29 | } 30 | } 31 | } 32 | 33 | } 34 | 35 | extension UIImage { 36 | 37 | public class func gif(data: Data) -> UIImage? { 38 | // Create source from data 39 | guard let source = CGImageSourceCreateWithData(data as CFData, nil) else { 40 | print("SwiftGif: Source for the image does not exist") 41 | return nil 42 | } 43 | 44 | return UIImage.animatedImageWithSource(source) 45 | } 46 | 47 | public class func gif(url: String) -> UIImage? { 48 | // Validate URL 49 | guard let bundleURL = URL(string: url) else { 50 | print("SwiftGif: This image named \"\(url)\" does not exist") 51 | return nil 52 | } 53 | 54 | // Validate data 55 | guard let imageData = try? Data(contentsOf: bundleURL) else { 56 | print("SwiftGif: Cannot turn image named \"\(url)\" into NSData") 57 | return nil 58 | } 59 | 60 | return gif(data: imageData) 61 | } 62 | 63 | public class func gif(name: String) -> UIImage? { 64 | // Check for existance of gif 65 | guard let bundleURL = Bundle.main 66 | .url(forResource: name, withExtension: "gif") else { 67 | print("SwiftGif: This image named \"\(name)\" does not exist") 68 | return nil 69 | } 70 | 71 | // Validate data 72 | guard let imageData = try? Data(contentsOf: bundleURL) else { 73 | print("SwiftGif: Cannot turn image named \"\(name)\" into NSData") 74 | return nil 75 | } 76 | 77 | return gif(data: imageData) 78 | } 79 | 80 | @available(iOS 9.0, *) 81 | public class func gif(asset: String) -> UIImage? { 82 | // Create source from assets catalog 83 | guard let dataAsset = NSDataAsset(name: asset) else { 84 | print("SwiftGif: Cannot turn image named \"\(asset)\" into NSDataAsset") 85 | return nil 86 | } 87 | 88 | return gif(data: dataAsset.data) 89 | } 90 | 91 | internal class func delayForImageAtIndex(_ index: Int, source: CGImageSource!) -> Double { 92 | var delay = 0.1 93 | 94 | // Get dictionaries 95 | let cfProperties = CGImageSourceCopyPropertiesAtIndex(source, index, nil) 96 | let gifPropertiesPointer = UnsafeMutablePointer.allocate(capacity: 0) 97 | defer { 98 | gifPropertiesPointer.deallocate() 99 | } 100 | let unsafePointer = Unmanaged.passUnretained(kCGImagePropertyGIFDictionary).toOpaque() 101 | if CFDictionaryGetValueIfPresent(cfProperties, unsafePointer, gifPropertiesPointer) == false { 102 | return delay 103 | } 104 | 105 | let gifProperties: CFDictionary = unsafeBitCast(gifPropertiesPointer.pointee, to: CFDictionary.self) 106 | 107 | // Get delay time 108 | var delayObject: AnyObject = unsafeBitCast( 109 | CFDictionaryGetValue(gifProperties, 110 | Unmanaged.passUnretained(kCGImagePropertyGIFUnclampedDelayTime).toOpaque()), 111 | to: AnyObject.self) 112 | if delayObject.doubleValue == 0 { 113 | delayObject = unsafeBitCast(CFDictionaryGetValue(gifProperties, 114 | Unmanaged.passUnretained(kCGImagePropertyGIFDelayTime).toOpaque()), to: AnyObject.self) 115 | } 116 | 117 | if let delayObject = delayObject as? Double, delayObject > 0 { 118 | delay = delayObject 119 | } else { 120 | delay = 0.1 // Make sure they're not too fast 121 | } 122 | 123 | return delay 124 | } 125 | 126 | internal class func gcdForPair(_ lhs: Int?, _ rhs: Int?) -> Int { 127 | var lhs = lhs 128 | var rhs = rhs 129 | // Check if one of them is nil 130 | if rhs == nil || lhs == nil { 131 | if rhs != nil { 132 | return rhs! 133 | } else if lhs != nil { 134 | return lhs! 135 | } else { 136 | return 0 137 | } 138 | } 139 | 140 | // Swap for modulo 141 | if lhs! < rhs! { 142 | let ctp = lhs 143 | lhs = rhs 144 | rhs = ctp 145 | } 146 | 147 | // Get greatest common divisor 148 | var rest: Int 149 | while true { 150 | rest = lhs! % rhs! 151 | 152 | if rest == 0 { 153 | return rhs! // Found it 154 | } else { 155 | lhs = rhs 156 | rhs = rest 157 | } 158 | } 159 | } 160 | 161 | internal class func gcdForArray(_ array: [Int]) -> Int { 162 | if array.isEmpty { 163 | return 1 164 | } 165 | 166 | var gcd = array[0] 167 | 168 | for val in array { 169 | gcd = UIImage.gcdForPair(val, gcd) 170 | } 171 | 172 | return gcd 173 | } 174 | 175 | internal class func animatedImageWithSource(_ source: CGImageSource) -> UIImage? { 176 | let count = CGImageSourceGetCount(source) 177 | var images = [CGImage]() 178 | var delays = [Int]() 179 | 180 | // Fill arrays 181 | for index in 0..= fullView { 233 | let newMinY = y + translation.y 234 | self.view.frame = CGRect(x: 0, y: newMinY, width: view.frame.width, height: UIScreen.main.bounds.height - newMinY ) 235 | self.view.layoutIfNeeded() 236 | recognizer.setTranslation(CGPoint.zero, in: self.view) 237 | } 238 | 239 | if recognizer.state == .ended { 240 | var duration = velocity.y < 0 ? Double((y - fullView) / -velocity.y) : Double((partialView - y) / velocity.y ) 241 | duration = duration > 1.3 ? 1 : duration 242 | //velocity is direction of gesture 243 | UIView.animate(withDuration: duration, delay: 0.0, options: [.allowUserInteraction], animations: { 244 | if velocity.y >= 0 { 245 | if y + translation.y >= self.partialView { 246 | self.removeBottomSheetView() 247 | } else { 248 | self.view.frame = CGRect(x: 0, y: self.partialView, width: self.view.frame.width, height: UIScreen.main.bounds.height - self.partialView) 249 | self.view.layoutIfNeeded() 250 | } 251 | } else { 252 | if y + translation.y >= self.partialView { 253 | self.view.frame = CGRect(x: 0, y: self.partialView, width: self.view.frame.width, height: UIScreen.main.bounds.height - self.partialView) 254 | self.view.layoutIfNeeded() 255 | } else { 256 | self.view.frame = CGRect(x: 0, y: self.fullView, width: self.view.frame.width, height: UIScreen.main.bounds.height - self.fullView) 257 | self.view.layoutIfNeeded() 258 | } 259 | } 260 | 261 | }, completion: nil) 262 | } 263 | } 264 | 265 | func removeBottomSheetView() { 266 | UIView.animate(withDuration: 0.3, 267 | delay: 0, 268 | options: UIView.AnimationOptions.curveEaseIn, 269 | animations: { () -> Void in 270 | var frame = self.view.frame 271 | frame.origin.y = UIScreen.main.bounds.maxY 272 | self.view.frame = frame 273 | 274 | }, completion: { (finished) -> Void in 275 | self.view.removeFromSuperview() 276 | self.removeFromParent() 277 | }) 278 | } 279 | 280 | func prepareBackgroundView(){ 281 | let blurEffect = UIBlurEffect.init(style: .prominent) 282 | let visualEffect = UIVisualEffectView.init(effect: blurEffect) 283 | let bluredView = UIVisualEffectView.init(effect: blurEffect) 284 | bluredView.contentView.addSubview(visualEffect) 285 | visualEffect.frame = UIScreen.main.bounds 286 | bluredView.frame = UIScreen.main.bounds 287 | view.insertSubview(bluredView, at: 0) 288 | } 289 | 290 | 291 | 292 | } 293 | 294 | extension StickerViewController: UIScrollViewDelegate { 295 | 296 | public func scrollViewDidScroll(_ scrollView: UIScrollView) { 297 | let pageWidth = scrollView.bounds.width 298 | let pageFraction = scrollView.contentOffset.x / pageWidth 299 | self.pageControl.currentPage = Int(round(pageFraction)) 300 | } 301 | } 302 | 303 | // MARK: - UICollectionViewDataSource 304 | extension StickerViewController: UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout { 305 | 306 | public func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { 307 | if collectionView == stickerCollectioView { 308 | return stickers.count 309 | } else { 310 | return gits.count 311 | } 312 | 313 | } 314 | 315 | 316 | 317 | public func numberOfSections(in collectionView: UICollectionView) -> Int { 318 | return 1 319 | } 320 | 321 | public func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 322 | let identifier = "cell" 323 | if collectionView == stickerCollectioView { 324 | let cell = collectionView.dequeueReusableCell(withReuseIdentifier: identifier, for: indexPath) as! StickerCell 325 | cell.stickerImage.image = UIImage(named: stickers[indexPath.row]) 326 | 327 | 328 | 329 | return cell 330 | } else { 331 | 332 | let cell = collectionView.dequeueReusableCell(withReuseIdentifier: identifier, for: indexPath) as! GifCell 333 | cell.gifImage.loadGif(name: gits[indexPath.row]) 334 | return cell 335 | } 336 | 337 | } 338 | 339 | 340 | 341 | public func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) { 342 | if collectionView == stickerCollectioView { 343 | stickerDelegate?.StickerTapped(StickerName: stickers[indexPath.row]) 344 | } else { 345 | stickerDelegate?.GitTapped(GifName: gits[indexPath.row]) 346 | } 347 | 348 | 349 | } 350 | 351 | 352 | public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat { 353 | return 4 354 | } 355 | 356 | public func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat { 357 | return 0 358 | } 359 | 360 | } 361 | -------------------------------------------------------------------------------- /Example/FAStickers.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 023D4CBF5AED787049F941CE /* Pods_FAStickers_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BFCB26AFBD4FF3606227B416 /* Pods_FAStickers_Tests.framework */; }; 11 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 12 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 13 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 14 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 15 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 16 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 17 | 6422E5CF22A6E39600456AD1 /* gif7.gif in Resources */ = {isa = PBXBuildFile; fileRef = 6422E5C622A6E39600456AD1 /* gif7.gif */; }; 18 | 6422E5D022A6E39600456AD1 /* gif5.gif in Resources */ = {isa = PBXBuildFile; fileRef = 6422E5C722A6E39600456AD1 /* gif5.gif */; }; 19 | 6422E5D122A6E39600456AD1 /* gif9.gif in Resources */ = {isa = PBXBuildFile; fileRef = 6422E5C822A6E39600456AD1 /* gif9.gif */; }; 20 | 6422E5D222A6E39600456AD1 /* gif2.gif in Resources */ = {isa = PBXBuildFile; fileRef = 6422E5C922A6E39600456AD1 /* gif2.gif */; }; 21 | 6422E5D322A6E39600456AD1 /* gif4.gif in Resources */ = {isa = PBXBuildFile; fileRef = 6422E5CA22A6E39600456AD1 /* gif4.gif */; }; 22 | 6422E5D422A6E39600456AD1 /* gif3.gif in Resources */ = {isa = PBXBuildFile; fileRef = 6422E5CB22A6E39600456AD1 /* gif3.gif */; }; 23 | 6422E5D522A6E39600456AD1 /* gif8.gif in Resources */ = {isa = PBXBuildFile; fileRef = 6422E5CC22A6E39600456AD1 /* gif8.gif */; }; 24 | 6422E5D622A6E39600456AD1 /* gif6.gif in Resources */ = {isa = PBXBuildFile; fileRef = 6422E5CD22A6E39600456AD1 /* gif6.gif */; }; 25 | 6422E5D722A6E39600456AD1 /* gif1.gif in Resources */ = {isa = PBXBuildFile; fileRef = 6422E5CE22A6E39600456AD1 /* gif1.gif */; }; 26 | 6A5F36A9AF927DF4BC2D44B8 /* Pods_FAStickers_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E65C86D92524F0916B179A7 /* Pods_FAStickers_Example.framework */; }; 27 | /* End PBXBuildFile section */ 28 | 29 | /* Begin PBXContainerItemProxy section */ 30 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 31 | isa = PBXContainerItemProxy; 32 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 33 | proxyType = 1; 34 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 35 | remoteInfo = FAStickers; 36 | }; 37 | /* End PBXContainerItemProxy section */ 38 | 39 | /* Begin PBXFileReference section */ 40 | 1E65C86D92524F0916B179A7 /* Pods_FAStickers_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FAStickers_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 21DE83967102A0393779235C /* Pods-FAStickers_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FAStickers_Tests.release.xcconfig"; path = "Target Support Files/Pods-FAStickers_Tests/Pods-FAStickers_Tests.release.xcconfig"; sourceTree = ""; }; 42 | 3E13103A6673B59B7F97AE09 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 43 | 4831277834265D0F74E05DA3 /* Pods-FAStickers_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FAStickers_Example.release.xcconfig"; path = "Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example.release.xcconfig"; sourceTree = ""; }; 44 | 555BA0DC6C504C5C1DE85604 /* FAStickers.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = FAStickers.podspec; path = ../FAStickers.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 45 | 607FACD01AFB9204008FA782 /* FAStickers_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FAStickers_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 46 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 47 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 48 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 49 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 50 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 51 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 52 | 607FACE51AFB9204008FA782 /* FAStickers_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FAStickers_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 53 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 54 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 55 | 6422E5C622A6E39600456AD1 /* gif7.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = gif7.gif; sourceTree = ""; }; 56 | 6422E5C722A6E39600456AD1 /* gif5.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = gif5.gif; sourceTree = ""; }; 57 | 6422E5C822A6E39600456AD1 /* gif9.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = gif9.gif; sourceTree = ""; }; 58 | 6422E5C922A6E39600456AD1 /* gif2.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = gif2.gif; sourceTree = ""; }; 59 | 6422E5CA22A6E39600456AD1 /* gif4.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = gif4.gif; sourceTree = ""; }; 60 | 6422E5CB22A6E39600456AD1 /* gif3.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = gif3.gif; sourceTree = ""; }; 61 | 6422E5CC22A6E39600456AD1 /* gif8.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = gif8.gif; sourceTree = ""; }; 62 | 6422E5CD22A6E39600456AD1 /* gif6.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = gif6.gif; sourceTree = ""; }; 63 | 6422E5CE22A6E39600456AD1 /* gif1.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = gif1.gif; sourceTree = ""; }; 64 | 9E1CDF7D72174A00750F2CD8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 65 | 9E9B1B98AE1429E8F43407C5 /* Pods-FAStickers_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FAStickers_Tests.debug.xcconfig"; path = "Target Support Files/Pods-FAStickers_Tests/Pods-FAStickers_Tests.debug.xcconfig"; sourceTree = ""; }; 66 | AE2B44FA691D529A18BA4CB3 /* Pods-FAStickers_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FAStickers_Example.debug.xcconfig"; path = "Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example.debug.xcconfig"; sourceTree = ""; }; 67 | BFCB26AFBD4FF3606227B416 /* Pods_FAStickers_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FAStickers_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 68 | /* End PBXFileReference section */ 69 | 70 | /* Begin PBXFrameworksBuildPhase section */ 71 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 72 | isa = PBXFrameworksBuildPhase; 73 | buildActionMask = 2147483647; 74 | files = ( 75 | 6A5F36A9AF927DF4BC2D44B8 /* Pods_FAStickers_Example.framework in Frameworks */, 76 | ); 77 | runOnlyForDeploymentPostprocessing = 0; 78 | }; 79 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 80 | isa = PBXFrameworksBuildPhase; 81 | buildActionMask = 2147483647; 82 | files = ( 83 | 023D4CBF5AED787049F941CE /* Pods_FAStickers_Tests.framework in Frameworks */, 84 | ); 85 | runOnlyForDeploymentPostprocessing = 0; 86 | }; 87 | /* End PBXFrameworksBuildPhase section */ 88 | 89 | /* Begin PBXGroup section */ 90 | 036E4A1D347823F467F3E0F5 /* Frameworks */ = { 91 | isa = PBXGroup; 92 | children = ( 93 | 1E65C86D92524F0916B179A7 /* Pods_FAStickers_Example.framework */, 94 | BFCB26AFBD4FF3606227B416 /* Pods_FAStickers_Tests.framework */, 95 | ); 96 | name = Frameworks; 97 | sourceTree = ""; 98 | }; 99 | 607FACC71AFB9204008FA782 = { 100 | isa = PBXGroup; 101 | children = ( 102 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 103 | 607FACD21AFB9204008FA782 /* Example for FAStickers */, 104 | 607FACE81AFB9204008FA782 /* Tests */, 105 | 607FACD11AFB9204008FA782 /* Products */, 106 | 8948DD4394B4B99804CA2CDC /* Pods */, 107 | 036E4A1D347823F467F3E0F5 /* Frameworks */, 108 | ); 109 | sourceTree = ""; 110 | }; 111 | 607FACD11AFB9204008FA782 /* Products */ = { 112 | isa = PBXGroup; 113 | children = ( 114 | 607FACD01AFB9204008FA782 /* FAStickers_Example.app */, 115 | 607FACE51AFB9204008FA782 /* FAStickers_Tests.xctest */, 116 | ); 117 | name = Products; 118 | sourceTree = ""; 119 | }; 120 | 607FACD21AFB9204008FA782 /* Example for FAStickers */ = { 121 | isa = PBXGroup; 122 | children = ( 123 | 6422E5C522A6E38700456AD1 /* GifImage */, 124 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 125 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 126 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 127 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 128 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 129 | 607FACD31AFB9204008FA782 /* Supporting Files */, 130 | ); 131 | name = "Example for FAStickers"; 132 | path = FAStickers; 133 | sourceTree = ""; 134 | }; 135 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 136 | isa = PBXGroup; 137 | children = ( 138 | 607FACD41AFB9204008FA782 /* Info.plist */, 139 | ); 140 | name = "Supporting Files"; 141 | sourceTree = ""; 142 | }; 143 | 607FACE81AFB9204008FA782 /* Tests */ = { 144 | isa = PBXGroup; 145 | children = ( 146 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 147 | 607FACE91AFB9204008FA782 /* Supporting Files */, 148 | ); 149 | path = Tests; 150 | sourceTree = ""; 151 | }; 152 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 153 | isa = PBXGroup; 154 | children = ( 155 | 607FACEA1AFB9204008FA782 /* Info.plist */, 156 | ); 157 | name = "Supporting Files"; 158 | sourceTree = ""; 159 | }; 160 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 161 | isa = PBXGroup; 162 | children = ( 163 | 555BA0DC6C504C5C1DE85604 /* FAStickers.podspec */, 164 | 3E13103A6673B59B7F97AE09 /* README.md */, 165 | 9E1CDF7D72174A00750F2CD8 /* LICENSE */, 166 | ); 167 | name = "Podspec Metadata"; 168 | sourceTree = ""; 169 | }; 170 | 6422E5C522A6E38700456AD1 /* GifImage */ = { 171 | isa = PBXGroup; 172 | children = ( 173 | 6422E5CE22A6E39600456AD1 /* gif1.gif */, 174 | 6422E5C922A6E39600456AD1 /* gif2.gif */, 175 | 6422E5CB22A6E39600456AD1 /* gif3.gif */, 176 | 6422E5CA22A6E39600456AD1 /* gif4.gif */, 177 | 6422E5C722A6E39600456AD1 /* gif5.gif */, 178 | 6422E5CD22A6E39600456AD1 /* gif6.gif */, 179 | 6422E5C622A6E39600456AD1 /* gif7.gif */, 180 | 6422E5CC22A6E39600456AD1 /* gif8.gif */, 181 | 6422E5C822A6E39600456AD1 /* gif9.gif */, 182 | ); 183 | name = GifImage; 184 | sourceTree = ""; 185 | }; 186 | 8948DD4394B4B99804CA2CDC /* Pods */ = { 187 | isa = PBXGroup; 188 | children = ( 189 | AE2B44FA691D529A18BA4CB3 /* Pods-FAStickers_Example.debug.xcconfig */, 190 | 4831277834265D0F74E05DA3 /* Pods-FAStickers_Example.release.xcconfig */, 191 | 9E9B1B98AE1429E8F43407C5 /* Pods-FAStickers_Tests.debug.xcconfig */, 192 | 21DE83967102A0393779235C /* Pods-FAStickers_Tests.release.xcconfig */, 193 | ); 194 | path = Pods; 195 | sourceTree = ""; 196 | }; 197 | /* End PBXGroup section */ 198 | 199 | /* Begin PBXNativeTarget section */ 200 | 607FACCF1AFB9204008FA782 /* FAStickers_Example */ = { 201 | isa = PBXNativeTarget; 202 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "FAStickers_Example" */; 203 | buildPhases = ( 204 | C91BA230EF8E5294464135F8 /* [CP] Check Pods Manifest.lock */, 205 | 607FACCC1AFB9204008FA782 /* Sources */, 206 | 607FACCD1AFB9204008FA782 /* Frameworks */, 207 | 607FACCE1AFB9204008FA782 /* Resources */, 208 | 58E982C502EB5A76AD5C7BC5 /* [CP] Embed Pods Frameworks */, 209 | ); 210 | buildRules = ( 211 | ); 212 | dependencies = ( 213 | ); 214 | name = FAStickers_Example; 215 | productName = FAStickers; 216 | productReference = 607FACD01AFB9204008FA782 /* FAStickers_Example.app */; 217 | productType = "com.apple.product-type.application"; 218 | }; 219 | 607FACE41AFB9204008FA782 /* FAStickers_Tests */ = { 220 | isa = PBXNativeTarget; 221 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "FAStickers_Tests" */; 222 | buildPhases = ( 223 | F4FDDFE6BB77CCE807A4C248 /* [CP] Check Pods Manifest.lock */, 224 | 607FACE11AFB9204008FA782 /* Sources */, 225 | 607FACE21AFB9204008FA782 /* Frameworks */, 226 | 607FACE31AFB9204008FA782 /* Resources */, 227 | ); 228 | buildRules = ( 229 | ); 230 | dependencies = ( 231 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 232 | ); 233 | name = FAStickers_Tests; 234 | productName = Tests; 235 | productReference = 607FACE51AFB9204008FA782 /* FAStickers_Tests.xctest */; 236 | productType = "com.apple.product-type.bundle.unit-test"; 237 | }; 238 | /* End PBXNativeTarget section */ 239 | 240 | /* Begin PBXProject section */ 241 | 607FACC81AFB9204008FA782 /* Project object */ = { 242 | isa = PBXProject; 243 | attributes = { 244 | LastSwiftUpdateCheck = 0830; 245 | LastUpgradeCheck = 1020; 246 | ORGANIZATIONNAME = CocoaPods; 247 | TargetAttributes = { 248 | 607FACCF1AFB9204008FA782 = { 249 | CreatedOnToolsVersion = 6.3.1; 250 | DevelopmentTeam = 7X2KJ7S3VX; 251 | LastSwiftMigration = 0900; 252 | }; 253 | 607FACE41AFB9204008FA782 = { 254 | CreatedOnToolsVersion = 6.3.1; 255 | LastSwiftMigration = 1020; 256 | TestTargetID = 607FACCF1AFB9204008FA782; 257 | }; 258 | }; 259 | }; 260 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "FAStickers" */; 261 | compatibilityVersion = "Xcode 3.2"; 262 | developmentRegion = en; 263 | hasScannedForEncodings = 0; 264 | knownRegions = ( 265 | en, 266 | Base, 267 | ); 268 | mainGroup = 607FACC71AFB9204008FA782; 269 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 270 | projectDirPath = ""; 271 | projectRoot = ""; 272 | targets = ( 273 | 607FACCF1AFB9204008FA782 /* FAStickers_Example */, 274 | 607FACE41AFB9204008FA782 /* FAStickers_Tests */, 275 | ); 276 | }; 277 | /* End PBXProject section */ 278 | 279 | /* Begin PBXResourcesBuildPhase section */ 280 | 607FACCE1AFB9204008FA782 /* Resources */ = { 281 | isa = PBXResourcesBuildPhase; 282 | buildActionMask = 2147483647; 283 | files = ( 284 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 285 | 6422E5D122A6E39600456AD1 /* gif9.gif in Resources */, 286 | 6422E5D522A6E39600456AD1 /* gif8.gif in Resources */, 287 | 6422E5CF22A6E39600456AD1 /* gif7.gif in Resources */, 288 | 6422E5D022A6E39600456AD1 /* gif5.gif in Resources */, 289 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 290 | 6422E5D222A6E39600456AD1 /* gif2.gif in Resources */, 291 | 6422E5D722A6E39600456AD1 /* gif1.gif in Resources */, 292 | 6422E5D622A6E39600456AD1 /* gif6.gif in Resources */, 293 | 6422E5D322A6E39600456AD1 /* gif4.gif in Resources */, 294 | 6422E5D422A6E39600456AD1 /* gif3.gif in Resources */, 295 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 296 | ); 297 | runOnlyForDeploymentPostprocessing = 0; 298 | }; 299 | 607FACE31AFB9204008FA782 /* Resources */ = { 300 | isa = PBXResourcesBuildPhase; 301 | buildActionMask = 2147483647; 302 | files = ( 303 | ); 304 | runOnlyForDeploymentPostprocessing = 0; 305 | }; 306 | /* End PBXResourcesBuildPhase section */ 307 | 308 | /* Begin PBXShellScriptBuildPhase section */ 309 | 58E982C502EB5A76AD5C7BC5 /* [CP] Embed Pods Frameworks */ = { 310 | isa = PBXShellScriptBuildPhase; 311 | buildActionMask = 2147483647; 312 | files = ( 313 | ); 314 | inputFileListPaths = ( 315 | ); 316 | inputPaths = ( 317 | "${PODS_ROOT}/Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example-frameworks.sh", 318 | "${BUILT_PRODUCTS_DIR}/FAStickers/FAStickers.framework", 319 | ); 320 | name = "[CP] Embed Pods Frameworks"; 321 | outputFileListPaths = ( 322 | ); 323 | outputPaths = ( 324 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FAStickers.framework", 325 | ); 326 | runOnlyForDeploymentPostprocessing = 0; 327 | shellPath = /bin/sh; 328 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example-frameworks.sh\"\n"; 329 | showEnvVarsInLog = 0; 330 | }; 331 | C91BA230EF8E5294464135F8 /* [CP] Check Pods Manifest.lock */ = { 332 | isa = PBXShellScriptBuildPhase; 333 | buildActionMask = 2147483647; 334 | files = ( 335 | ); 336 | inputFileListPaths = ( 337 | ); 338 | inputPaths = ( 339 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 340 | "${PODS_ROOT}/Manifest.lock", 341 | ); 342 | name = "[CP] Check Pods Manifest.lock"; 343 | outputFileListPaths = ( 344 | ); 345 | outputPaths = ( 346 | "$(DERIVED_FILE_DIR)/Pods-FAStickers_Example-checkManifestLockResult.txt", 347 | ); 348 | runOnlyForDeploymentPostprocessing = 0; 349 | shellPath = /bin/sh; 350 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 351 | showEnvVarsInLog = 0; 352 | }; 353 | F4FDDFE6BB77CCE807A4C248 /* [CP] Check Pods Manifest.lock */ = { 354 | isa = PBXShellScriptBuildPhase; 355 | buildActionMask = 2147483647; 356 | files = ( 357 | ); 358 | inputFileListPaths = ( 359 | ); 360 | inputPaths = ( 361 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 362 | "${PODS_ROOT}/Manifest.lock", 363 | ); 364 | name = "[CP] Check Pods Manifest.lock"; 365 | outputFileListPaths = ( 366 | ); 367 | outputPaths = ( 368 | "$(DERIVED_FILE_DIR)/Pods-FAStickers_Tests-checkManifestLockResult.txt", 369 | ); 370 | runOnlyForDeploymentPostprocessing = 0; 371 | shellPath = /bin/sh; 372 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 373 | showEnvVarsInLog = 0; 374 | }; 375 | /* End PBXShellScriptBuildPhase section */ 376 | 377 | /* Begin PBXSourcesBuildPhase section */ 378 | 607FACCC1AFB9204008FA782 /* Sources */ = { 379 | isa = PBXSourcesBuildPhase; 380 | buildActionMask = 2147483647; 381 | files = ( 382 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 383 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 384 | ); 385 | runOnlyForDeploymentPostprocessing = 0; 386 | }; 387 | 607FACE11AFB9204008FA782 /* Sources */ = { 388 | isa = PBXSourcesBuildPhase; 389 | buildActionMask = 2147483647; 390 | files = ( 391 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 392 | ); 393 | runOnlyForDeploymentPostprocessing = 0; 394 | }; 395 | /* End PBXSourcesBuildPhase section */ 396 | 397 | /* Begin PBXTargetDependency section */ 398 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 399 | isa = PBXTargetDependency; 400 | target = 607FACCF1AFB9204008FA782 /* FAStickers_Example */; 401 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 402 | }; 403 | /* End PBXTargetDependency section */ 404 | 405 | /* Begin PBXVariantGroup section */ 406 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 407 | isa = PBXVariantGroup; 408 | children = ( 409 | 607FACDA1AFB9204008FA782 /* Base */, 410 | ); 411 | name = Main.storyboard; 412 | sourceTree = ""; 413 | }; 414 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 415 | isa = PBXVariantGroup; 416 | children = ( 417 | 607FACDF1AFB9204008FA782 /* Base */, 418 | ); 419 | name = LaunchScreen.xib; 420 | sourceTree = ""; 421 | }; 422 | /* End PBXVariantGroup section */ 423 | 424 | /* Begin XCBuildConfiguration section */ 425 | 607FACED1AFB9204008FA782 /* Debug */ = { 426 | isa = XCBuildConfiguration; 427 | buildSettings = { 428 | ALWAYS_SEARCH_USER_PATHS = NO; 429 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 430 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 431 | CLANG_CXX_LIBRARY = "libc++"; 432 | CLANG_ENABLE_MODULES = YES; 433 | CLANG_ENABLE_OBJC_ARC = YES; 434 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 435 | CLANG_WARN_BOOL_CONVERSION = YES; 436 | CLANG_WARN_COMMA = YES; 437 | CLANG_WARN_CONSTANT_CONVERSION = YES; 438 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 439 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 440 | CLANG_WARN_EMPTY_BODY = YES; 441 | CLANG_WARN_ENUM_CONVERSION = YES; 442 | CLANG_WARN_INFINITE_RECURSION = YES; 443 | CLANG_WARN_INT_CONVERSION = YES; 444 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 445 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 446 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 447 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 448 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 449 | CLANG_WARN_STRICT_PROTOTYPES = YES; 450 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 451 | CLANG_WARN_UNREACHABLE_CODE = YES; 452 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 453 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 454 | COPY_PHASE_STRIP = NO; 455 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 456 | ENABLE_STRICT_OBJC_MSGSEND = YES; 457 | ENABLE_TESTABILITY = YES; 458 | GCC_C_LANGUAGE_STANDARD = gnu99; 459 | GCC_DYNAMIC_NO_PIC = NO; 460 | GCC_NO_COMMON_BLOCKS = YES; 461 | GCC_OPTIMIZATION_LEVEL = 0; 462 | GCC_PREPROCESSOR_DEFINITIONS = ( 463 | "DEBUG=1", 464 | "$(inherited)", 465 | ); 466 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 467 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 468 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 469 | GCC_WARN_UNDECLARED_SELECTOR = YES; 470 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 471 | GCC_WARN_UNUSED_FUNCTION = YES; 472 | GCC_WARN_UNUSED_VARIABLE = YES; 473 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 474 | MTL_ENABLE_DEBUG_INFO = YES; 475 | ONLY_ACTIVE_ARCH = YES; 476 | SDKROOT = iphoneos; 477 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 478 | }; 479 | name = Debug; 480 | }; 481 | 607FACEE1AFB9204008FA782 /* Release */ = { 482 | isa = XCBuildConfiguration; 483 | buildSettings = { 484 | ALWAYS_SEARCH_USER_PATHS = NO; 485 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 486 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 487 | CLANG_CXX_LIBRARY = "libc++"; 488 | CLANG_ENABLE_MODULES = YES; 489 | CLANG_ENABLE_OBJC_ARC = YES; 490 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 491 | CLANG_WARN_BOOL_CONVERSION = YES; 492 | CLANG_WARN_COMMA = YES; 493 | CLANG_WARN_CONSTANT_CONVERSION = YES; 494 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 495 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 496 | CLANG_WARN_EMPTY_BODY = YES; 497 | CLANG_WARN_ENUM_CONVERSION = YES; 498 | CLANG_WARN_INFINITE_RECURSION = YES; 499 | CLANG_WARN_INT_CONVERSION = YES; 500 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 501 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 502 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 503 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 504 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 505 | CLANG_WARN_STRICT_PROTOTYPES = YES; 506 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 507 | CLANG_WARN_UNREACHABLE_CODE = YES; 508 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 509 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 510 | COPY_PHASE_STRIP = NO; 511 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 512 | ENABLE_NS_ASSERTIONS = NO; 513 | ENABLE_STRICT_OBJC_MSGSEND = YES; 514 | GCC_C_LANGUAGE_STANDARD = gnu99; 515 | GCC_NO_COMMON_BLOCKS = YES; 516 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 517 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 518 | GCC_WARN_UNDECLARED_SELECTOR = YES; 519 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 520 | GCC_WARN_UNUSED_FUNCTION = YES; 521 | GCC_WARN_UNUSED_VARIABLE = YES; 522 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 523 | MTL_ENABLE_DEBUG_INFO = NO; 524 | SDKROOT = iphoneos; 525 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 526 | VALIDATE_PRODUCT = YES; 527 | }; 528 | name = Release; 529 | }; 530 | 607FACF01AFB9204008FA782 /* Debug */ = { 531 | isa = XCBuildConfiguration; 532 | baseConfigurationReference = AE2B44FA691D529A18BA4CB3 /* Pods-FAStickers_Example.debug.xcconfig */; 533 | buildSettings = { 534 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 535 | DEVELOPMENT_TEAM = 7X2KJ7S3VX; 536 | INFOPLIST_FILE = FAStickers/Info.plist; 537 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 538 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 539 | MODULE_NAME = ExampleApp; 540 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 541 | PRODUCT_NAME = "$(TARGET_NAME)"; 542 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 543 | SWIFT_VERSION = 5.0; 544 | }; 545 | name = Debug; 546 | }; 547 | 607FACF11AFB9204008FA782 /* Release */ = { 548 | isa = XCBuildConfiguration; 549 | baseConfigurationReference = 4831277834265D0F74E05DA3 /* Pods-FAStickers_Example.release.xcconfig */; 550 | buildSettings = { 551 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 552 | DEVELOPMENT_TEAM = 7X2KJ7S3VX; 553 | INFOPLIST_FILE = FAStickers/Info.plist; 554 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 555 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 556 | MODULE_NAME = ExampleApp; 557 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 558 | PRODUCT_NAME = "$(TARGET_NAME)"; 559 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 560 | SWIFT_VERSION = 5.0; 561 | }; 562 | name = Release; 563 | }; 564 | 607FACF31AFB9204008FA782 /* Debug */ = { 565 | isa = XCBuildConfiguration; 566 | baseConfigurationReference = 9E9B1B98AE1429E8F43407C5 /* Pods-FAStickers_Tests.debug.xcconfig */; 567 | buildSettings = { 568 | FRAMEWORK_SEARCH_PATHS = ( 569 | "$(SDKROOT)/Developer/Library/Frameworks", 570 | "$(inherited)", 571 | ); 572 | GCC_PREPROCESSOR_DEFINITIONS = ( 573 | "DEBUG=1", 574 | "$(inherited)", 575 | ); 576 | INFOPLIST_FILE = Tests/Info.plist; 577 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 578 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 579 | PRODUCT_NAME = "$(TARGET_NAME)"; 580 | SWIFT_VERSION = 5.0; 581 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FAStickers_Example.app/FAStickers_Example"; 582 | }; 583 | name = Debug; 584 | }; 585 | 607FACF41AFB9204008FA782 /* Release */ = { 586 | isa = XCBuildConfiguration; 587 | baseConfigurationReference = 21DE83967102A0393779235C /* Pods-FAStickers_Tests.release.xcconfig */; 588 | buildSettings = { 589 | FRAMEWORK_SEARCH_PATHS = ( 590 | "$(SDKROOT)/Developer/Library/Frameworks", 591 | "$(inherited)", 592 | ); 593 | INFOPLIST_FILE = Tests/Info.plist; 594 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 595 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 596 | PRODUCT_NAME = "$(TARGET_NAME)"; 597 | SWIFT_VERSION = 5.0; 598 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FAStickers_Example.app/FAStickers_Example"; 599 | }; 600 | name = Release; 601 | }; 602 | /* End XCBuildConfiguration section */ 603 | 604 | /* Begin XCConfigurationList section */ 605 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "FAStickers" */ = { 606 | isa = XCConfigurationList; 607 | buildConfigurations = ( 608 | 607FACED1AFB9204008FA782 /* Debug */, 609 | 607FACEE1AFB9204008FA782 /* Release */, 610 | ); 611 | defaultConfigurationIsVisible = 0; 612 | defaultConfigurationName = Release; 613 | }; 614 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "FAStickers_Example" */ = { 615 | isa = XCConfigurationList; 616 | buildConfigurations = ( 617 | 607FACF01AFB9204008FA782 /* Debug */, 618 | 607FACF11AFB9204008FA782 /* Release */, 619 | ); 620 | defaultConfigurationIsVisible = 0; 621 | defaultConfigurationName = Release; 622 | }; 623 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "FAStickers_Tests" */ = { 624 | isa = XCConfigurationList; 625 | buildConfigurations = ( 626 | 607FACF31AFB9204008FA782 /* Debug */, 627 | 607FACF41AFB9204008FA782 /* Release */, 628 | ); 629 | defaultConfigurationIsVisible = 0; 630 | defaultConfigurationName = Release; 631 | }; 632 | /* End XCConfigurationList section */ 633 | }; 634 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 635 | } 636 | -------------------------------------------------------------------------------- /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 | 017D97FC3296A113F519D904B5128C04 /* ReplaceMe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E0709732ED8349A12B250FA628D9AAA /* ReplaceMe.swift */; }; 11 | 24EF528EB1C39F945BEFAA7766F6B054 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 12 | 31DF2BD2757F5B1C4511EFDF7AF91FEB /* FAStickers-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FD759D7F1B40FC8D2D1B5F6B0E3A552E /* FAStickers-dummy.m */; }; 13 | 3C2C1EC59AD2CDCDCE2C9FE8C34967A6 /* Pods-FAStickers_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9983AAB50F03F4382027BD93683FA273 /* Pods-FAStickers_Tests-dummy.m */; }; 14 | 43653E7AD808A91629D9478B8331C8D5 /* FAStickers-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 05371B9C207AFBF38A5413708B9E745B /* FAStickers-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 | 6422E5B922A6DFE200456AD1 /* StickerCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6422E5B822A6DFE200456AD1 /* StickerCell.swift */; }; 16 | 6422E5BB22A6E04B00456AD1 /* EmojiCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6422E5BA22A6E04B00456AD1 /* EmojiCell.swift */; }; 17 | 6422E5BD22A6E06A00456AD1 /* GifCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6422E5BC22A6E06A00456AD1 /* GifCell.swift */; }; 18 | 6422E5BF22A6E08800456AD1 /* EmojisCVDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6422E5BE22A6E08800456AD1 /* EmojisCVDelegate.swift */; }; 19 | 6422E5F822A6FA5E00456AD1 /* StickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6422E5F722A6FA5E00456AD1 /* StickerViewController.swift */; }; 20 | 6422E5FA22A6FACC00456AD1 /* SwiftGif.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6422E5F922A6FACC00456AD1 /* SwiftGif.swift */; }; 21 | 8A87045BB4D695CA528D9AA3FC6DC813 /* Pods-FAStickers_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AFB1309A2261DE87BFECECAA906B358D /* Pods-FAStickers_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 22 | A274158A9EFE6498AA4C19F95ED618ED /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 23 | DEDBBE3EB96E758DC946C31DFF9BBA5F /* Pods-FAStickers_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 770CA0947257433FC3692F11DB4112F8 /* Pods-FAStickers_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 24 | ECA050EA1B397C8085F448FF003D44AF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 25 | EE13F4FABE8E03C8B2EB01B5E6FA3C34 /* Pods-FAStickers_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F5936E9AE8AF3B047F4031B44AB82B6 /* Pods-FAStickers_Example-dummy.m */; }; 26 | /* End PBXBuildFile section */ 27 | 28 | /* Begin PBXContainerItemProxy section */ 29 | 5E9BF33D792780AE4C0949DF8BFC4CA9 /* PBXContainerItemProxy */ = { 30 | isa = PBXContainerItemProxy; 31 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 32 | proxyType = 1; 33 | remoteGlobalIDString = 3CF99E679121F77C1E375597596F78E8; 34 | remoteInfo = FAStickers; 35 | }; 36 | 73F0D30BBEEED4BED1D6CD4851FB7B79 /* PBXContainerItemProxy */ = { 37 | isa = PBXContainerItemProxy; 38 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 39 | proxyType = 1; 40 | remoteGlobalIDString = CBFEF27208EC8A450ECDC9870D84FF6E; 41 | remoteInfo = "Pods-FAStickers_Example"; 42 | }; 43 | /* End PBXContainerItemProxy section */ 44 | 45 | /* Begin PBXFileReference section */ 46 | 05371B9C207AFBF38A5413708B9E745B /* FAStickers-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FAStickers-umbrella.h"; sourceTree = ""; }; 47 | 09A2885A827ECD694C6A63490B71B200 /* Pods-FAStickers_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-FAStickers_Tests.modulemap"; sourceTree = ""; }; 48 | 1786523321C485AD0E62A5A456A34694 /* Pods-FAStickers_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FAStickers_Example.release.xcconfig"; sourceTree = ""; }; 49 | 1A039FD5ECEA021F7527C72C4D5B337E /* Pods-FAStickers_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FAStickers_Example.debug.xcconfig"; sourceTree = ""; }; 50 | 1F5936E9AE8AF3B047F4031B44AB82B6 /* Pods-FAStickers_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-FAStickers_Example-dummy.m"; sourceTree = ""; }; 51 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 52 | 3E0709732ED8349A12B250FA628D9AAA /* ReplaceMe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplaceMe.swift; path = FAStickers/Classes/ReplaceMe.swift; sourceTree = ""; }; 53 | 577D8B2E153DC324432F713285932019 /* Pods-FAStickers_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-FAStickers_Example-frameworks.sh"; sourceTree = ""; }; 54 | 5C7046A0F6C934F2C25817EFE71AF20D /* Pods-FAStickers_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FAStickers_Tests.release.xcconfig"; sourceTree = ""; }; 55 | 5E517DE7C25C04725E6268F596A6683B /* FAStickers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FAStickers.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 56 | 6422E5B822A6DFE200456AD1 /* StickerCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = StickerCell.swift; path = FAStickers/Classes/StickerCell.swift; sourceTree = ""; }; 57 | 6422E5BA22A6E04B00456AD1 /* EmojiCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = EmojiCell.swift; path = FAStickers/Classes/EmojiCell.swift; sourceTree = ""; }; 58 | 6422E5BC22A6E06A00456AD1 /* GifCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = GifCell.swift; path = FAStickers/Classes/GifCell.swift; sourceTree = ""; }; 59 | 6422E5BE22A6E08800456AD1 /* EmojisCVDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = EmojisCVDelegate.swift; path = FAStickers/Classes/EmojisCVDelegate.swift; sourceTree = ""; }; 60 | 6422E5F722A6FA5E00456AD1 /* StickerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = StickerViewController.swift; path = FAStickers/Classes/StickerViewController.swift; sourceTree = ""; }; 61 | 6422E5F922A6FACC00456AD1 /* SwiftGif.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = SwiftGif.swift; path = FAStickers/Classes/SwiftGif.swift; sourceTree = ""; }; 62 | 7144A9C0424ABEF61818629A90EEF2FE /* FAStickers.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FAStickers.xcconfig; sourceTree = ""; }; 63 | 757E5D29D75DFAC6738E77012EC0C7CF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 64 | 770759C55054B71EDC150B9DDD20A695 /* Pods-FAStickers_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-FAStickers_Example-acknowledgements.plist"; sourceTree = ""; }; 65 | 770CA0947257433FC3692F11DB4112F8 /* Pods-FAStickers_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-FAStickers_Example-umbrella.h"; sourceTree = ""; }; 66 | 8C08137C614E37B102947FE444DD3867 /* Pods-FAStickers_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-FAStickers_Example-acknowledgements.markdown"; sourceTree = ""; }; 67 | 92686D966CD26E321514ED9A1D366A63 /* Pods-FAStickers_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-FAStickers_Example-Info.plist"; sourceTree = ""; }; 68 | 9983AAB50F03F4382027BD93683FA273 /* Pods-FAStickers_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-FAStickers_Tests-dummy.m"; sourceTree = ""; }; 69 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 70 | AACAE5AF07C36EACD92B898B329EF5C8 /* Pods-FAStickers_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FAStickers_Tests.debug.xcconfig"; sourceTree = ""; }; 71 | AFB1309A2261DE87BFECECAA906B358D /* Pods-FAStickers_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-FAStickers_Tests-umbrella.h"; sourceTree = ""; }; 72 | B1D5A8A5F170C132B3E5091FAF84159D /* Pods_FAStickers_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FAStickers_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 73 | B2A651F9A3B82C20D90A78C4E802CCD2 /* Pods-FAStickers_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-FAStickers_Tests-acknowledgements.plist"; sourceTree = ""; }; 74 | B4D51A337E572F94210077A8C4A4C7E9 /* FAStickers.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FAStickers.modulemap; sourceTree = ""; }; 75 | B522388F92167E79C053DBEAA8EDC16E /* Pods-FAStickers_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-FAStickers_Example.modulemap"; sourceTree = ""; }; 76 | BB7C726CC39B2C63049E259991B14B63 /* Pods-FAStickers_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-FAStickers_Tests-Info.plist"; sourceTree = ""; }; 77 | BDC817A0EF6C66EA572106A79F523822 /* FAStickers-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FAStickers-Info.plist"; sourceTree = ""; }; 78 | C529A009D73C35037D853C989AEB1693 /* FAStickers.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = FAStickers.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 79 | CABF2586BB031EBC7E4DEAD727C4DC4F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 80 | EE231A76B30B42F7E388D0243A000D3A /* Pods_FAStickers_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FAStickers_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 81 | F447060E4D3514B7CFF6DF63F6E95155 /* Pods-FAStickers_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-FAStickers_Tests-acknowledgements.markdown"; sourceTree = ""; }; 82 | F64F385B92DCD477B2586495926D4854 /* FAStickers-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FAStickers-prefix.pch"; sourceTree = ""; }; 83 | FD759D7F1B40FC8D2D1B5F6B0E3A552E /* FAStickers-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FAStickers-dummy.m"; sourceTree = ""; }; 84 | /* End PBXFileReference section */ 85 | 86 | /* Begin PBXFrameworksBuildPhase section */ 87 | 38E82E5662DBF3AA375BDEADBBA0A79C /* Frameworks */ = { 88 | isa = PBXFrameworksBuildPhase; 89 | buildActionMask = 2147483647; 90 | files = ( 91 | ECA050EA1B397C8085F448FF003D44AF /* Foundation.framework in Frameworks */, 92 | ); 93 | runOnlyForDeploymentPostprocessing = 0; 94 | }; 95 | 67FE788D3363C81D580DD1E847AE93B2 /* Frameworks */ = { 96 | isa = PBXFrameworksBuildPhase; 97 | buildActionMask = 2147483647; 98 | files = ( 99 | A274158A9EFE6498AA4C19F95ED618ED /* Foundation.framework in Frameworks */, 100 | ); 101 | runOnlyForDeploymentPostprocessing = 0; 102 | }; 103 | F88F2C62E377D2DC3868A3E30A490480 /* Frameworks */ = { 104 | isa = PBXFrameworksBuildPhase; 105 | buildActionMask = 2147483647; 106 | files = ( 107 | 24EF528EB1C39F945BEFAA7766F6B054 /* Foundation.framework in Frameworks */, 108 | ); 109 | runOnlyForDeploymentPostprocessing = 0; 110 | }; 111 | /* End PBXFrameworksBuildPhase section */ 112 | 113 | /* Begin PBXGroup section */ 114 | 21A93468DC220F9756837AFA26A2714C /* Pods-FAStickers_Example */ = { 115 | isa = PBXGroup; 116 | children = ( 117 | B522388F92167E79C053DBEAA8EDC16E /* Pods-FAStickers_Example.modulemap */, 118 | 8C08137C614E37B102947FE444DD3867 /* Pods-FAStickers_Example-acknowledgements.markdown */, 119 | 770759C55054B71EDC150B9DDD20A695 /* Pods-FAStickers_Example-acknowledgements.plist */, 120 | 1F5936E9AE8AF3B047F4031B44AB82B6 /* Pods-FAStickers_Example-dummy.m */, 121 | 577D8B2E153DC324432F713285932019 /* Pods-FAStickers_Example-frameworks.sh */, 122 | 92686D966CD26E321514ED9A1D366A63 /* Pods-FAStickers_Example-Info.plist */, 123 | 770CA0947257433FC3692F11DB4112F8 /* Pods-FAStickers_Example-umbrella.h */, 124 | 1A039FD5ECEA021F7527C72C4D5B337E /* Pods-FAStickers_Example.debug.xcconfig */, 125 | 1786523321C485AD0E62A5A456A34694 /* Pods-FAStickers_Example.release.xcconfig */, 126 | ); 127 | name = "Pods-FAStickers_Example"; 128 | path = "Target Support Files/Pods-FAStickers_Example"; 129 | sourceTree = ""; 130 | }; 131 | 28CDDD8682D8ECB7578B6BFB51830309 /* FAStickers */ = { 132 | isa = PBXGroup; 133 | children = ( 134 | 3E0709732ED8349A12B250FA628D9AAA /* ReplaceMe.swift */, 135 | D729C327B1E7DD73E828B2B2240240A8 /* Pod */, 136 | 8E17DF0EC09C00275DD49055FC69D4BB /* Support Files */, 137 | 6422E5B822A6DFE200456AD1 /* StickerCell.swift */, 138 | 6422E5F922A6FACC00456AD1 /* SwiftGif.swift */, 139 | 6422E5BA22A6E04B00456AD1 /* EmojiCell.swift */, 140 | 6422E5BC22A6E06A00456AD1 /* GifCell.swift */, 141 | 6422E5BE22A6E08800456AD1 /* EmojisCVDelegate.swift */, 142 | 6422E5F722A6FA5E00456AD1 /* StickerViewController.swift */, 143 | ); 144 | name = FAStickers; 145 | path = ../..; 146 | sourceTree = ""; 147 | }; 148 | 4CB5137956AF1912543B7E252F1BD6F0 /* Products */ = { 149 | isa = PBXGroup; 150 | children = ( 151 | 5E517DE7C25C04725E6268F596A6683B /* FAStickers.framework */, 152 | B1D5A8A5F170C132B3E5091FAF84159D /* Pods_FAStickers_Example.framework */, 153 | EE231A76B30B42F7E388D0243A000D3A /* Pods_FAStickers_Tests.framework */, 154 | ); 155 | name = Products; 156 | sourceTree = ""; 157 | }; 158 | 8E17DF0EC09C00275DD49055FC69D4BB /* Support Files */ = { 159 | isa = PBXGroup; 160 | children = ( 161 | B4D51A337E572F94210077A8C4A4C7E9 /* FAStickers.modulemap */, 162 | 7144A9C0424ABEF61818629A90EEF2FE /* FAStickers.xcconfig */, 163 | FD759D7F1B40FC8D2D1B5F6B0E3A552E /* FAStickers-dummy.m */, 164 | BDC817A0EF6C66EA572106A79F523822 /* FAStickers-Info.plist */, 165 | F64F385B92DCD477B2586495926D4854 /* FAStickers-prefix.pch */, 166 | 05371B9C207AFBF38A5413708B9E745B /* FAStickers-umbrella.h */, 167 | ); 168 | name = "Support Files"; 169 | path = "Example/Pods/Target Support Files/FAStickers"; 170 | sourceTree = ""; 171 | }; 172 | A08A566DF981767C9A165B05C05E99A7 /* Targets Support Files */ = { 173 | isa = PBXGroup; 174 | children = ( 175 | 21A93468DC220F9756837AFA26A2714C /* Pods-FAStickers_Example */, 176 | F32B7F6F7410775859BB5B8AA268209C /* Pods-FAStickers_Tests */, 177 | ); 178 | name = "Targets Support Files"; 179 | sourceTree = ""; 180 | }; 181 | C0834CEBB1379A84116EF29F93051C60 /* iOS */ = { 182 | isa = PBXGroup; 183 | children = ( 184 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */, 185 | ); 186 | name = iOS; 187 | sourceTree = ""; 188 | }; 189 | CF1408CF629C7361332E53B88F7BD30C = { 190 | isa = PBXGroup; 191 | children = ( 192 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 193 | E468390324C7352FD892F2FAA0FAB0F9 /* Development Pods */, 194 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 195 | 4CB5137956AF1912543B7E252F1BD6F0 /* Products */, 196 | A08A566DF981767C9A165B05C05E99A7 /* Targets Support Files */, 197 | ); 198 | sourceTree = ""; 199 | }; 200 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { 201 | isa = PBXGroup; 202 | children = ( 203 | C0834CEBB1379A84116EF29F93051C60 /* iOS */, 204 | ); 205 | name = Frameworks; 206 | sourceTree = ""; 207 | }; 208 | D729C327B1E7DD73E828B2B2240240A8 /* Pod */ = { 209 | isa = PBXGroup; 210 | children = ( 211 | C529A009D73C35037D853C989AEB1693 /* FAStickers.podspec */, 212 | CABF2586BB031EBC7E4DEAD727C4DC4F /* LICENSE */, 213 | 757E5D29D75DFAC6738E77012EC0C7CF /* README.md */, 214 | ); 215 | name = Pod; 216 | sourceTree = ""; 217 | }; 218 | E468390324C7352FD892F2FAA0FAB0F9 /* Development Pods */ = { 219 | isa = PBXGroup; 220 | children = ( 221 | 28CDDD8682D8ECB7578B6BFB51830309 /* FAStickers */, 222 | ); 223 | name = "Development Pods"; 224 | sourceTree = ""; 225 | }; 226 | F32B7F6F7410775859BB5B8AA268209C /* Pods-FAStickers_Tests */ = { 227 | isa = PBXGroup; 228 | children = ( 229 | 09A2885A827ECD694C6A63490B71B200 /* Pods-FAStickers_Tests.modulemap */, 230 | F447060E4D3514B7CFF6DF63F6E95155 /* Pods-FAStickers_Tests-acknowledgements.markdown */, 231 | B2A651F9A3B82C20D90A78C4E802CCD2 /* Pods-FAStickers_Tests-acknowledgements.plist */, 232 | 9983AAB50F03F4382027BD93683FA273 /* Pods-FAStickers_Tests-dummy.m */, 233 | BB7C726CC39B2C63049E259991B14B63 /* Pods-FAStickers_Tests-Info.plist */, 234 | AFB1309A2261DE87BFECECAA906B358D /* Pods-FAStickers_Tests-umbrella.h */, 235 | AACAE5AF07C36EACD92B898B329EF5C8 /* Pods-FAStickers_Tests.debug.xcconfig */, 236 | 5C7046A0F6C934F2C25817EFE71AF20D /* Pods-FAStickers_Tests.release.xcconfig */, 237 | ); 238 | name = "Pods-FAStickers_Tests"; 239 | path = "Target Support Files/Pods-FAStickers_Tests"; 240 | sourceTree = ""; 241 | }; 242 | /* End PBXGroup section */ 243 | 244 | /* Begin PBXHeadersBuildPhase section */ 245 | AA46842224C0276FACFFC629ABF74E8C /* Headers */ = { 246 | isa = PBXHeadersBuildPhase; 247 | buildActionMask = 2147483647; 248 | files = ( 249 | DEDBBE3EB96E758DC946C31DFF9BBA5F /* Pods-FAStickers_Example-umbrella.h in Headers */, 250 | ); 251 | runOnlyForDeploymentPostprocessing = 0; 252 | }; 253 | E55D3FF541F762620577C14FD4ED7492 /* Headers */ = { 254 | isa = PBXHeadersBuildPhase; 255 | buildActionMask = 2147483647; 256 | files = ( 257 | 43653E7AD808A91629D9478B8331C8D5 /* FAStickers-umbrella.h in Headers */, 258 | ); 259 | runOnlyForDeploymentPostprocessing = 0; 260 | }; 261 | FA8A83AA921E3900E4C6D80D269B8988 /* Headers */ = { 262 | isa = PBXHeadersBuildPhase; 263 | buildActionMask = 2147483647; 264 | files = ( 265 | 8A87045BB4D695CA528D9AA3FC6DC813 /* Pods-FAStickers_Tests-umbrella.h in Headers */, 266 | ); 267 | runOnlyForDeploymentPostprocessing = 0; 268 | }; 269 | /* End PBXHeadersBuildPhase section */ 270 | 271 | /* Begin PBXNativeTarget section */ 272 | 3CF99E679121F77C1E375597596F78E8 /* FAStickers */ = { 273 | isa = PBXNativeTarget; 274 | buildConfigurationList = 32ABB83D2A16FCC46798227CECC05A58 /* Build configuration list for PBXNativeTarget "FAStickers" */; 275 | buildPhases = ( 276 | E55D3FF541F762620577C14FD4ED7492 /* Headers */, 277 | 1FA7FFA6E286CD7C99C619453BA3D7AB /* Sources */, 278 | 67FE788D3363C81D580DD1E847AE93B2 /* Frameworks */, 279 | F70F6B19F48031E75547181CB3134780 /* Resources */, 280 | ); 281 | buildRules = ( 282 | ); 283 | dependencies = ( 284 | ); 285 | name = FAStickers; 286 | productName = FAStickers; 287 | productReference = 5E517DE7C25C04725E6268F596A6683B /* FAStickers.framework */; 288 | productType = "com.apple.product-type.framework"; 289 | }; 290 | 7F61FA84AE6205BE125B16F988779408 /* Pods-FAStickers_Tests */ = { 291 | isa = PBXNativeTarget; 292 | buildConfigurationList = 0051C4838D1C8EBBF8A12A3F6543FBC0 /* Build configuration list for PBXNativeTarget "Pods-FAStickers_Tests" */; 293 | buildPhases = ( 294 | FA8A83AA921E3900E4C6D80D269B8988 /* Headers */, 295 | 2F780BCEAA40828327BA22617F8B516F /* Sources */, 296 | 38E82E5662DBF3AA375BDEADBBA0A79C /* Frameworks */, 297 | FEA8D45624D57026DFAAF7ADA3B3B35D /* Resources */, 298 | ); 299 | buildRules = ( 300 | ); 301 | dependencies = ( 302 | 058F3DE744BA582B26D866BBCAC53256 /* PBXTargetDependency */, 303 | ); 304 | name = "Pods-FAStickers_Tests"; 305 | productName = "Pods-FAStickers_Tests"; 306 | productReference = EE231A76B30B42F7E388D0243A000D3A /* Pods_FAStickers_Tests.framework */; 307 | productType = "com.apple.product-type.framework"; 308 | }; 309 | CBFEF27208EC8A450ECDC9870D84FF6E /* Pods-FAStickers_Example */ = { 310 | isa = PBXNativeTarget; 311 | buildConfigurationList = 332B5C1E00DB5D328DBF2C0192D7179B /* Build configuration list for PBXNativeTarget "Pods-FAStickers_Example" */; 312 | buildPhases = ( 313 | AA46842224C0276FACFFC629ABF74E8C /* Headers */, 314 | 4B9AA6C1BBC55E8225AD359FD828E539 /* Sources */, 315 | F88F2C62E377D2DC3868A3E30A490480 /* Frameworks */, 316 | B6F53FCD1876A5DFC09342FCDBE3500B /* Resources */, 317 | ); 318 | buildRules = ( 319 | ); 320 | dependencies = ( 321 | 4CFEEB0171C7A13FC0E60EE4931539B5 /* PBXTargetDependency */, 322 | ); 323 | name = "Pods-FAStickers_Example"; 324 | productName = "Pods-FAStickers_Example"; 325 | productReference = B1D5A8A5F170C132B3E5091FAF84159D /* Pods_FAStickers_Example.framework */; 326 | productType = "com.apple.product-type.framework"; 327 | }; 328 | /* End PBXNativeTarget section */ 329 | 330 | /* Begin PBXProject section */ 331 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 332 | isa = PBXProject; 333 | attributes = { 334 | LastSwiftUpdateCheck = 1020; 335 | LastUpgradeCheck = 1020; 336 | }; 337 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 338 | compatibilityVersion = "Xcode 3.2"; 339 | developmentRegion = en; 340 | hasScannedForEncodings = 0; 341 | knownRegions = ( 342 | en, 343 | Base, 344 | ); 345 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 346 | productRefGroup = 4CB5137956AF1912543B7E252F1BD6F0 /* Products */; 347 | projectDirPath = ""; 348 | projectRoot = ""; 349 | targets = ( 350 | 3CF99E679121F77C1E375597596F78E8 /* FAStickers */, 351 | CBFEF27208EC8A450ECDC9870D84FF6E /* Pods-FAStickers_Example */, 352 | 7F61FA84AE6205BE125B16F988779408 /* Pods-FAStickers_Tests */, 353 | ); 354 | }; 355 | /* End PBXProject section */ 356 | 357 | /* Begin PBXResourcesBuildPhase section */ 358 | B6F53FCD1876A5DFC09342FCDBE3500B /* Resources */ = { 359 | isa = PBXResourcesBuildPhase; 360 | buildActionMask = 2147483647; 361 | files = ( 362 | ); 363 | runOnlyForDeploymentPostprocessing = 0; 364 | }; 365 | F70F6B19F48031E75547181CB3134780 /* Resources */ = { 366 | isa = PBXResourcesBuildPhase; 367 | buildActionMask = 2147483647; 368 | files = ( 369 | ); 370 | runOnlyForDeploymentPostprocessing = 0; 371 | }; 372 | FEA8D45624D57026DFAAF7ADA3B3B35D /* Resources */ = { 373 | isa = PBXResourcesBuildPhase; 374 | buildActionMask = 2147483647; 375 | files = ( 376 | ); 377 | runOnlyForDeploymentPostprocessing = 0; 378 | }; 379 | /* End PBXResourcesBuildPhase section */ 380 | 381 | /* Begin PBXSourcesBuildPhase section */ 382 | 1FA7FFA6E286CD7C99C619453BA3D7AB /* Sources */ = { 383 | isa = PBXSourcesBuildPhase; 384 | buildActionMask = 2147483647; 385 | files = ( 386 | 6422E5F822A6FA5E00456AD1 /* StickerViewController.swift in Sources */, 387 | 31DF2BD2757F5B1C4511EFDF7AF91FEB /* FAStickers-dummy.m in Sources */, 388 | 6422E5B922A6DFE200456AD1 /* StickerCell.swift in Sources */, 389 | 6422E5FA22A6FACC00456AD1 /* SwiftGif.swift in Sources */, 390 | 6422E5BF22A6E08800456AD1 /* EmojisCVDelegate.swift in Sources */, 391 | 6422E5BD22A6E06A00456AD1 /* GifCell.swift in Sources */, 392 | 6422E5BB22A6E04B00456AD1 /* EmojiCell.swift in Sources */, 393 | 017D97FC3296A113F519D904B5128C04 /* ReplaceMe.swift in Sources */, 394 | ); 395 | runOnlyForDeploymentPostprocessing = 0; 396 | }; 397 | 2F780BCEAA40828327BA22617F8B516F /* Sources */ = { 398 | isa = PBXSourcesBuildPhase; 399 | buildActionMask = 2147483647; 400 | files = ( 401 | 3C2C1EC59AD2CDCDCE2C9FE8C34967A6 /* Pods-FAStickers_Tests-dummy.m in Sources */, 402 | ); 403 | runOnlyForDeploymentPostprocessing = 0; 404 | }; 405 | 4B9AA6C1BBC55E8225AD359FD828E539 /* Sources */ = { 406 | isa = PBXSourcesBuildPhase; 407 | buildActionMask = 2147483647; 408 | files = ( 409 | EE13F4FABE8E03C8B2EB01B5E6FA3C34 /* Pods-FAStickers_Example-dummy.m in Sources */, 410 | ); 411 | runOnlyForDeploymentPostprocessing = 0; 412 | }; 413 | /* End PBXSourcesBuildPhase section */ 414 | 415 | /* Begin PBXTargetDependency section */ 416 | 058F3DE744BA582B26D866BBCAC53256 /* PBXTargetDependency */ = { 417 | isa = PBXTargetDependency; 418 | name = "Pods-FAStickers_Example"; 419 | target = CBFEF27208EC8A450ECDC9870D84FF6E /* Pods-FAStickers_Example */; 420 | targetProxy = 73F0D30BBEEED4BED1D6CD4851FB7B79 /* PBXContainerItemProxy */; 421 | }; 422 | 4CFEEB0171C7A13FC0E60EE4931539B5 /* PBXTargetDependency */ = { 423 | isa = PBXTargetDependency; 424 | name = FAStickers; 425 | target = 3CF99E679121F77C1E375597596F78E8 /* FAStickers */; 426 | targetProxy = 5E9BF33D792780AE4C0949DF8BFC4CA9 /* PBXContainerItemProxy */; 427 | }; 428 | /* End PBXTargetDependency section */ 429 | 430 | /* Begin XCBuildConfiguration section */ 431 | 0B7249D7FB7CA25928D4BB7E51EF833B /* Debug */ = { 432 | isa = XCBuildConfiguration; 433 | baseConfigurationReference = AACAE5AF07C36EACD92B898B329EF5C8 /* Pods-FAStickers_Tests.debug.xcconfig */; 434 | buildSettings = { 435 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 436 | CODE_SIGN_IDENTITY = ""; 437 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 438 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 439 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 440 | CURRENT_PROJECT_VERSION = 1; 441 | DEFINES_MODULE = YES; 442 | DYLIB_COMPATIBILITY_VERSION = 1; 443 | DYLIB_CURRENT_VERSION = 1; 444 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 445 | INFOPLIST_FILE = "Target Support Files/Pods-FAStickers_Tests/Pods-FAStickers_Tests-Info.plist"; 446 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 447 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 448 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 449 | MACH_O_TYPE = staticlib; 450 | MODULEMAP_FILE = "Target Support Files/Pods-FAStickers_Tests/Pods-FAStickers_Tests.modulemap"; 451 | OTHER_LDFLAGS = ""; 452 | OTHER_LIBTOOLFLAGS = ""; 453 | PODS_ROOT = "$(SRCROOT)"; 454 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 455 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 456 | SDKROOT = iphoneos; 457 | SKIP_INSTALL = YES; 458 | TARGETED_DEVICE_FAMILY = "1,2"; 459 | VERSIONING_SYSTEM = "apple-generic"; 460 | VERSION_INFO_PREFIX = ""; 461 | }; 462 | name = Debug; 463 | }; 464 | 0E4CC36DA06991CD6612B65CAB22B89F /* Release */ = { 465 | isa = XCBuildConfiguration; 466 | baseConfigurationReference = 7144A9C0424ABEF61818629A90EEF2FE /* FAStickers.xcconfig */; 467 | buildSettings = { 468 | CODE_SIGN_IDENTITY = ""; 469 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 470 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 471 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 472 | CURRENT_PROJECT_VERSION = 1; 473 | DEFINES_MODULE = YES; 474 | DYLIB_COMPATIBILITY_VERSION = 1; 475 | DYLIB_CURRENT_VERSION = 1; 476 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 477 | GCC_PREFIX_HEADER = "Target Support Files/FAStickers/FAStickers-prefix.pch"; 478 | INFOPLIST_FILE = "Target Support Files/FAStickers/FAStickers-Info.plist"; 479 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 480 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 481 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 482 | MODULEMAP_FILE = "Target Support Files/FAStickers/FAStickers.modulemap"; 483 | PRODUCT_MODULE_NAME = FAStickers; 484 | PRODUCT_NAME = FAStickers; 485 | SDKROOT = iphoneos; 486 | SKIP_INSTALL = YES; 487 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 488 | SWIFT_VERSION = 5.0; 489 | TARGETED_DEVICE_FAMILY = "1,2"; 490 | VALIDATE_PRODUCT = YES; 491 | VERSIONING_SYSTEM = "apple-generic"; 492 | VERSION_INFO_PREFIX = ""; 493 | }; 494 | name = Release; 495 | }; 496 | 689EE08F5D817B35BD33768615C7DE37 /* Release */ = { 497 | isa = XCBuildConfiguration; 498 | baseConfigurationReference = 5C7046A0F6C934F2C25817EFE71AF20D /* Pods-FAStickers_Tests.release.xcconfig */; 499 | buildSettings = { 500 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 501 | CODE_SIGN_IDENTITY = ""; 502 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 503 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 504 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 505 | CURRENT_PROJECT_VERSION = 1; 506 | DEFINES_MODULE = YES; 507 | DYLIB_COMPATIBILITY_VERSION = 1; 508 | DYLIB_CURRENT_VERSION = 1; 509 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 510 | INFOPLIST_FILE = "Target Support Files/Pods-FAStickers_Tests/Pods-FAStickers_Tests-Info.plist"; 511 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 512 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 513 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 514 | MACH_O_TYPE = staticlib; 515 | MODULEMAP_FILE = "Target Support Files/Pods-FAStickers_Tests/Pods-FAStickers_Tests.modulemap"; 516 | OTHER_LDFLAGS = ""; 517 | OTHER_LIBTOOLFLAGS = ""; 518 | PODS_ROOT = "$(SRCROOT)"; 519 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 520 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 521 | SDKROOT = iphoneos; 522 | SKIP_INSTALL = YES; 523 | TARGETED_DEVICE_FAMILY = "1,2"; 524 | VALIDATE_PRODUCT = YES; 525 | VERSIONING_SYSTEM = "apple-generic"; 526 | VERSION_INFO_PREFIX = ""; 527 | }; 528 | name = Release; 529 | }; 530 | 7369FEA1A813527DE1BE6C5EB4F8EF4E /* Debug */ = { 531 | isa = XCBuildConfiguration; 532 | baseConfigurationReference = 7144A9C0424ABEF61818629A90EEF2FE /* FAStickers.xcconfig */; 533 | buildSettings = { 534 | CODE_SIGN_IDENTITY = ""; 535 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 536 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 537 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 538 | CURRENT_PROJECT_VERSION = 1; 539 | DEFINES_MODULE = YES; 540 | DYLIB_COMPATIBILITY_VERSION = 1; 541 | DYLIB_CURRENT_VERSION = 1; 542 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 543 | GCC_PREFIX_HEADER = "Target Support Files/FAStickers/FAStickers-prefix.pch"; 544 | INFOPLIST_FILE = "Target Support Files/FAStickers/FAStickers-Info.plist"; 545 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 546 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 547 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 548 | MODULEMAP_FILE = "Target Support Files/FAStickers/FAStickers.modulemap"; 549 | PRODUCT_MODULE_NAME = FAStickers; 550 | PRODUCT_NAME = FAStickers; 551 | SDKROOT = iphoneos; 552 | SKIP_INSTALL = YES; 553 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 554 | SWIFT_VERSION = 5.0; 555 | TARGETED_DEVICE_FAMILY = "1,2"; 556 | VERSIONING_SYSTEM = "apple-generic"; 557 | VERSION_INFO_PREFIX = ""; 558 | }; 559 | name = Debug; 560 | }; 561 | AD34100049D55325C6221AB2640FEAFE /* Release */ = { 562 | isa = XCBuildConfiguration; 563 | baseConfigurationReference = 1786523321C485AD0E62A5A456A34694 /* Pods-FAStickers_Example.release.xcconfig */; 564 | buildSettings = { 565 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 566 | CODE_SIGN_IDENTITY = ""; 567 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 568 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 569 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 570 | CURRENT_PROJECT_VERSION = 1; 571 | DEFINES_MODULE = YES; 572 | DYLIB_COMPATIBILITY_VERSION = 1; 573 | DYLIB_CURRENT_VERSION = 1; 574 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 575 | INFOPLIST_FILE = "Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example-Info.plist"; 576 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 577 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 578 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 579 | MACH_O_TYPE = staticlib; 580 | MODULEMAP_FILE = "Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example.modulemap"; 581 | OTHER_LDFLAGS = ""; 582 | OTHER_LIBTOOLFLAGS = ""; 583 | PODS_ROOT = "$(SRCROOT)"; 584 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 585 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 586 | SDKROOT = iphoneos; 587 | SKIP_INSTALL = YES; 588 | TARGETED_DEVICE_FAMILY = "1,2"; 589 | VALIDATE_PRODUCT = YES; 590 | VERSIONING_SYSTEM = "apple-generic"; 591 | VERSION_INFO_PREFIX = ""; 592 | }; 593 | name = Release; 594 | }; 595 | B0087CB4594321EF41619F3181FE120E /* Release */ = { 596 | isa = XCBuildConfiguration; 597 | buildSettings = { 598 | ALWAYS_SEARCH_USER_PATHS = NO; 599 | CLANG_ANALYZER_NONNULL = YES; 600 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 601 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 602 | CLANG_CXX_LIBRARY = "libc++"; 603 | CLANG_ENABLE_MODULES = YES; 604 | CLANG_ENABLE_OBJC_ARC = YES; 605 | CLANG_ENABLE_OBJC_WEAK = YES; 606 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 607 | CLANG_WARN_BOOL_CONVERSION = YES; 608 | CLANG_WARN_COMMA = YES; 609 | CLANG_WARN_CONSTANT_CONVERSION = YES; 610 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 611 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 612 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 613 | CLANG_WARN_EMPTY_BODY = YES; 614 | CLANG_WARN_ENUM_CONVERSION = YES; 615 | CLANG_WARN_INFINITE_RECURSION = YES; 616 | CLANG_WARN_INT_CONVERSION = YES; 617 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 618 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 619 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 620 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 621 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 622 | CLANG_WARN_STRICT_PROTOTYPES = YES; 623 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 624 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 625 | CLANG_WARN_UNREACHABLE_CODE = YES; 626 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 627 | COPY_PHASE_STRIP = NO; 628 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 629 | ENABLE_NS_ASSERTIONS = NO; 630 | ENABLE_STRICT_OBJC_MSGSEND = YES; 631 | GCC_C_LANGUAGE_STANDARD = gnu11; 632 | GCC_NO_COMMON_BLOCKS = YES; 633 | GCC_PREPROCESSOR_DEFINITIONS = ( 634 | "POD_CONFIGURATION_RELEASE=1", 635 | "$(inherited)", 636 | ); 637 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 638 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 639 | GCC_WARN_UNDECLARED_SELECTOR = YES; 640 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 641 | GCC_WARN_UNUSED_FUNCTION = YES; 642 | GCC_WARN_UNUSED_VARIABLE = YES; 643 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 644 | MTL_ENABLE_DEBUG_INFO = NO; 645 | MTL_FAST_MATH = YES; 646 | PRODUCT_NAME = "$(TARGET_NAME)"; 647 | STRIP_INSTALLED_PRODUCT = NO; 648 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 649 | SWIFT_VERSION = 5.0; 650 | SYMROOT = "${SRCROOT}/../build"; 651 | }; 652 | name = Release; 653 | }; 654 | B8BCBD0110C2658BB5DAADB9B7D97B92 /* Debug */ = { 655 | isa = XCBuildConfiguration; 656 | buildSettings = { 657 | ALWAYS_SEARCH_USER_PATHS = NO; 658 | CLANG_ANALYZER_NONNULL = YES; 659 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 660 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 661 | CLANG_CXX_LIBRARY = "libc++"; 662 | CLANG_ENABLE_MODULES = YES; 663 | CLANG_ENABLE_OBJC_ARC = YES; 664 | CLANG_ENABLE_OBJC_WEAK = YES; 665 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 666 | CLANG_WARN_BOOL_CONVERSION = YES; 667 | CLANG_WARN_COMMA = YES; 668 | CLANG_WARN_CONSTANT_CONVERSION = YES; 669 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 670 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 671 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 672 | CLANG_WARN_EMPTY_BODY = YES; 673 | CLANG_WARN_ENUM_CONVERSION = YES; 674 | CLANG_WARN_INFINITE_RECURSION = YES; 675 | CLANG_WARN_INT_CONVERSION = YES; 676 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 677 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 678 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 679 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 680 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 681 | CLANG_WARN_STRICT_PROTOTYPES = YES; 682 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 683 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 684 | CLANG_WARN_UNREACHABLE_CODE = YES; 685 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 686 | COPY_PHASE_STRIP = NO; 687 | DEBUG_INFORMATION_FORMAT = dwarf; 688 | ENABLE_STRICT_OBJC_MSGSEND = YES; 689 | ENABLE_TESTABILITY = YES; 690 | GCC_C_LANGUAGE_STANDARD = gnu11; 691 | GCC_DYNAMIC_NO_PIC = NO; 692 | GCC_NO_COMMON_BLOCKS = YES; 693 | GCC_OPTIMIZATION_LEVEL = 0; 694 | GCC_PREPROCESSOR_DEFINITIONS = ( 695 | "POD_CONFIGURATION_DEBUG=1", 696 | "DEBUG=1", 697 | "$(inherited)", 698 | ); 699 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 700 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 701 | GCC_WARN_UNDECLARED_SELECTOR = YES; 702 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 703 | GCC_WARN_UNUSED_FUNCTION = YES; 704 | GCC_WARN_UNUSED_VARIABLE = YES; 705 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 706 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 707 | MTL_FAST_MATH = YES; 708 | ONLY_ACTIVE_ARCH = YES; 709 | PRODUCT_NAME = "$(TARGET_NAME)"; 710 | STRIP_INSTALLED_PRODUCT = NO; 711 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 712 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 713 | SWIFT_VERSION = 5.0; 714 | SYMROOT = "${SRCROOT}/../build"; 715 | }; 716 | name = Debug; 717 | }; 718 | CB09A51547881F80B4FD612FBA40476C /* Debug */ = { 719 | isa = XCBuildConfiguration; 720 | baseConfigurationReference = 1A039FD5ECEA021F7527C72C4D5B337E /* Pods-FAStickers_Example.debug.xcconfig */; 721 | buildSettings = { 722 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 723 | CODE_SIGN_IDENTITY = ""; 724 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 725 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 726 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 727 | CURRENT_PROJECT_VERSION = 1; 728 | DEFINES_MODULE = YES; 729 | DYLIB_COMPATIBILITY_VERSION = 1; 730 | DYLIB_CURRENT_VERSION = 1; 731 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 732 | INFOPLIST_FILE = "Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example-Info.plist"; 733 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 734 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 735 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 736 | MACH_O_TYPE = staticlib; 737 | MODULEMAP_FILE = "Target Support Files/Pods-FAStickers_Example/Pods-FAStickers_Example.modulemap"; 738 | OTHER_LDFLAGS = ""; 739 | OTHER_LIBTOOLFLAGS = ""; 740 | PODS_ROOT = "$(SRCROOT)"; 741 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 742 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 743 | SDKROOT = iphoneos; 744 | SKIP_INSTALL = YES; 745 | TARGETED_DEVICE_FAMILY = "1,2"; 746 | VERSIONING_SYSTEM = "apple-generic"; 747 | VERSION_INFO_PREFIX = ""; 748 | }; 749 | name = Debug; 750 | }; 751 | /* End XCBuildConfiguration section */ 752 | 753 | /* Begin XCConfigurationList section */ 754 | 0051C4838D1C8EBBF8A12A3F6543FBC0 /* Build configuration list for PBXNativeTarget "Pods-FAStickers_Tests" */ = { 755 | isa = XCConfigurationList; 756 | buildConfigurations = ( 757 | 0B7249D7FB7CA25928D4BB7E51EF833B /* Debug */, 758 | 689EE08F5D817B35BD33768615C7DE37 /* Release */, 759 | ); 760 | defaultConfigurationIsVisible = 0; 761 | defaultConfigurationName = Release; 762 | }; 763 | 32ABB83D2A16FCC46798227CECC05A58 /* Build configuration list for PBXNativeTarget "FAStickers" */ = { 764 | isa = XCConfigurationList; 765 | buildConfigurations = ( 766 | 7369FEA1A813527DE1BE6C5EB4F8EF4E /* Debug */, 767 | 0E4CC36DA06991CD6612B65CAB22B89F /* Release */, 768 | ); 769 | defaultConfigurationIsVisible = 0; 770 | defaultConfigurationName = Release; 771 | }; 772 | 332B5C1E00DB5D328DBF2C0192D7179B /* Build configuration list for PBXNativeTarget "Pods-FAStickers_Example" */ = { 773 | isa = XCConfigurationList; 774 | buildConfigurations = ( 775 | CB09A51547881F80B4FD612FBA40476C /* Debug */, 776 | AD34100049D55325C6221AB2640FEAFE /* Release */, 777 | ); 778 | defaultConfigurationIsVisible = 0; 779 | defaultConfigurationName = Release; 780 | }; 781 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 782 | isa = XCConfigurationList; 783 | buildConfigurations = ( 784 | B8BCBD0110C2658BB5DAADB9B7D97B92 /* Debug */, 785 | B0087CB4594321EF41619F3181FE120E /* Release */, 786 | ); 787 | defaultConfigurationIsVisible = 0; 788 | defaultConfigurationName = Release; 789 | }; 790 | /* End XCConfigurationList section */ 791 | }; 792 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 793 | } 794 | --------------------------------------------------------------------------------