├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── EMEmojiableInformationView.h │ ├── EMEmojiableOption.h │ ├── EMEmojiableOption.m │ ├── EMEmojiableBtn.h │ ├── EMEmojiableBtnConfig.m │ ├── EMEmojiableInformationView.m │ ├── EMEmojiableBtnConfig.h │ └── EMEmojiableBtn.m ├── _Pods.xcodeproj ├── Example ├── Pods │ ├── resources-to-copy-EMEmojiableBtn_Example.txt │ ├── Headers │ │ ├── Private │ │ │ └── EMEmojiableBtn │ │ │ │ ├── EMEmojiableBtn.h │ │ │ │ ├── EMEmojiableOption.h │ │ │ │ ├── EMEmojiableBtnConfig.h │ │ │ │ └── EMEmojiableInformationView.h │ │ └── Public │ │ │ └── EMEmojiableBtn │ │ │ ├── EMEmojiableBtn.h │ │ │ ├── EMEmojiableOption.h │ │ │ ├── EMEmojiableBtnConfig.h │ │ │ └── EMEmojiableInformationView.h │ ├── Target Support Files │ │ ├── EMEmojiableBtn-iOS7.1 │ │ │ ├── EMEmojiableBtn-iOS7.1-prefix.pch │ │ │ ├── EMEmojiableBtn-iOS7.1-dummy.m │ │ │ ├── EMEmojiableBtn-iOS7.1.xcconfig │ │ │ └── ResourceBundle-EMEmojiableBtn-Info.plist │ │ ├── EMEmojiableBtn-iOS8.4 │ │ │ ├── EMEmojiableBtn-iOS8.4-prefix.pch │ │ │ ├── EMEmojiableBtn-iOS8.4-dummy.m │ │ │ ├── EMEmojiableBtn-iOS8.4.xcconfig │ │ │ └── ResourceBundle-EMEmojiableBtn-Info.plist │ │ ├── Pods-EMEmojiableBtn_Tests │ │ │ ├── Pods-EMEmojiableBtn_Tests-dummy.m │ │ │ ├── Pods-EMEmojiableBtn_Tests.debug.xcconfig │ │ │ ├── Pods-EMEmojiableBtn_Tests.release.xcconfig │ │ │ ├── Pods-EMEmojiableBtn_Tests-acknowledgements.markdown │ │ │ ├── Pods-EMEmojiableBtn_Tests-acknowledgements.plist │ │ │ ├── Pods-EMEmojiableBtn_Tests-frameworks.sh │ │ │ └── Pods-EMEmojiableBtn_Tests-resources.sh │ │ └── Pods-EMEmojiableBtn_Example │ │ │ ├── Pods-EMEmojiableBtn_Example-dummy.m │ │ │ ├── Pods-EMEmojiableBtn_Example.debug.xcconfig │ │ │ ├── Pods-EMEmojiableBtn_Example.release.xcconfig │ │ │ ├── Pods-EMEmojiableBtn_Example-acknowledgements.markdown │ │ │ ├── Pods-EMEmojiableBtn_Example-acknowledgements.plist │ │ │ ├── Pods-EMEmojiableBtn_Example-frameworks.sh │ │ │ └── Pods-EMEmojiableBtn_Example-resources.sh │ ├── EMEmojiableBtn │ │ ├── Pod │ │ │ └── Classes │ │ │ │ ├── EMEmojiableInformationView.h │ │ │ │ ├── EMEmojiableOption.h │ │ │ │ ├── EMEmojiableOption.m │ │ │ │ ├── EMEmojiableBtnConfig.h │ │ │ │ ├── EMEmojiableBtnConfig.m │ │ │ │ ├── EMEmojiableBtn.h │ │ │ │ ├── EMEmojiableInformationView.m │ │ │ │ └── EMEmojiableBtn.m │ │ ├── README.md │ │ └── LICENSE │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── EMEmojiableBtn.podspec.json │ └── Pods.xcodeproj │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── EMEmojiableBtn-iOS7.1.xcscheme │ │ │ ├── EMEmojiableBtn-iOS8.4.xcscheme │ │ │ └── EMEmojiableBtn.xcscheme │ │ └── project.pbxproj ├── Tests │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── Tests-Prefix.pch │ ├── Tests-Info.plist │ └── Tests.m ├── EMEmojiableBtn │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── Assets │ │ ├── img_1.png │ │ ├── img_2.png │ │ ├── img_3.png │ │ ├── img_4.png │ │ ├── img_5.png │ │ ├── img_6.png │ │ ├── img_1@2x.png │ │ ├── img_1@3x.png │ │ ├── img_2@2x.png │ │ ├── img_2@3x.png │ │ ├── img_3@2x.png │ │ ├── img_3@3x.png │ │ ├── img_4@2x.png │ │ ├── img_4@3x.png │ │ ├── img_5@2x.png │ │ ├── img_5@3x.png │ │ ├── img_6@2x.png │ │ └── img_6@3x.png │ ├── EMViewController.h │ ├── EMAppDelegate.h │ ├── main.m │ ├── EMEmojiableBtn-Prefix.pch │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Main.storyboard │ ├── EMEmojiableBtn-Info.plist │ ├── EMAppDelegate.m │ ├── EMViewController.m │ └── Launch Screen.storyboard ├── EMEmojiableBtn.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── project.pbxproj ├── Podfile ├── EMEmojiableBtn.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── EMEmojiableBtn-Example.xcscheme └── Podfile.lock ├── .gitignore ├── .travis.yml ├── LICENSE ├── EMEmojiableBtn.podspec └── README.md /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /Example/Pods/resources-to-copy-EMEmojiableBtn_Example.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/EMEmojiableBtn/EMEmojiableBtn.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/EMEmojiableBtn.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/EMEmojiableBtn/EMEmojiableBtn.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/EMEmojiableBtn.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/EMEmojiableBtn/EMEmojiableOption.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/EMEmojiableOption.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/EMEmojiableBtn/EMEmojiableOption.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/EMEmojiableOption.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/EMEmojiableBtn/EMEmojiableBtnConfig.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/EMEmojiableBtnConfig.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/EMEmojiableBtn/EMEmojiableBtnConfig.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/EMEmojiableBtnConfig.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/EMEmojiableBtn/EMEmojiableInformationView.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/EMEmojiableInformationView.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/EMEmojiableBtn/EMEmojiableInformationView.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/EMEmojiableInformationView.h -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_1.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_2.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_3.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_4.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_5.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_6.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_1@2x.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_1@3x.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_2@2x.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_2@3x.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_3@2x.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_3@3x.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_4@2x.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_4@3x.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_5@2x.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_5@3x.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_6@2x.png -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Assets/img_6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eke/EMEmojiableBtn/HEAD/Example/EMEmojiableBtn/Assets/img_6@3x.png -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/EMEmojiableBtn-iOS7.1/EMEmojiableBtn-iOS7.1-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/EMEmojiableBtn-iOS8.4/EMEmojiableBtn-iOS8.4-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // The contents of this file are implicitly included at the beginning of every test case source file. 2 | 3 | #ifdef __OBJC__ 4 | 5 | 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/EMEmojiableBtn-iOS7.1/EMEmojiableBtn-iOS7.1-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_EMEmojiableBtn_iOS7_1 : NSObject 3 | @end 4 | @implementation PodsDummy_EMEmojiableBtn_iOS7_1 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/EMEmojiableBtn-iOS8.4/EMEmojiableBtn-iOS8.4-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_EMEmojiableBtn_iOS8_4 : NSObject 3 | @end 4 | @implementation PodsDummy_EMEmojiableBtn_iOS8_4 5 | @end 6 | -------------------------------------------------------------------------------- /Example/EMEmojiableBtn.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EMEmojiableBtn_Tests/Pods-EMEmojiableBtn_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_EMEmojiableBtn_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_EMEmojiableBtn_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EMEmojiableBtn_Example/Pods-EMEmojiableBtn_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_EMEmojiableBtn_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_EMEmojiableBtn_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | #use_frameworks! 3 | 4 | target 'EMEmojiableBtn_Example' do 5 | pod 'EMEmojiableBtn', :path => '../' 6 | end 7 | 8 | target 'EMEmojiableBtn_Tests' do 9 | pod 'EMEmojiableBtn', :path => '../' 10 | 11 | 12 | end 13 | -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/EMViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // EMViewController.h 3 | // EMEmojiableBtn 4 | // 5 | // Created by Erekle on 04/01/2016. 6 | // Copyright (c) 2016 Erekle. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface EMViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Example/Pods/EMEmojiableBtn/Pod/Classes/EMEmojiableInformationView.h: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableInformationView.h 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface EMEmojiableInformationView : UIView 12 | - (void)activateInfo:(BOOL)active; 13 | @end 14 | -------------------------------------------------------------------------------- /Example/EMEmojiableBtn.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/EMAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // EMAppDelegate.h 3 | // EMEmojiableBtn 4 | // 5 | // Created by Erekle on 04/01/2016. 6 | // Copyright (c) 2016 Erekle. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface EMAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - EMEmojiableBtn (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - EMEmojiableBtn (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | EMEmojiableBtn: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | EMEmojiableBtn: 11d640a8df4aba504fa9d54183ff152db5fa225f 13 | 14 | PODFILE CHECKSUM: 5be6d0301c2593f05b3e7547879a0d494e7a2739 15 | 16 | COCOAPODS: 1.0.0.beta.6 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - EMEmojiableBtn (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - EMEmojiableBtn (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | EMEmojiableBtn: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | EMEmojiableBtn: 11d640a8df4aba504fa9d54183ff152db5fa225f 13 | 14 | PODFILE CHECKSUM: 5be6d0301c2593f05b3e7547879a0d494e7a2739 15 | 16 | COCOAPODS: 1.0.0.beta.6 17 | -------------------------------------------------------------------------------- /Pod/Classes/EMEmojiableInformationView.h: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableInformationView.h 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import 10 | #import "EMEmojiableBtnConfig.h" 11 | 12 | @interface EMEmojiableInformationView : UIView 13 | - (instancetype)initWithFrame:(CGRect)frame withConfig:(EMEmojiableBtnConfig*)config; 14 | - (void)activateInfo:(BOOL)active; 15 | @end 16 | -------------------------------------------------------------------------------- /Pod/Classes/EMEmojiableOption.h: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableOption.h 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface EMEmojiableOption : NSObject 12 | @property (strong,nonatomic) NSString *imageName; 13 | @property (strong,nonatomic) NSString *name; 14 | 15 | -(instancetype)initWithImage:(NSString*)imageName withName:(NSString*)name; 16 | @end 17 | -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // EMEmojiableBtn 4 | // 5 | // Created by Erekle on 04/01/2016. 6 | // Copyright (c) 2016 Erekle. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | #import "EMAppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) 13 | { 14 | @autoreleasepool { 15 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([EMAppDelegate class])); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/EMEmojiableBtn-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | @import UIKit; 15 | @import Foundation; 16 | #endif 17 | -------------------------------------------------------------------------------- /Example/Pods/EMEmojiableBtn/Pod/Classes/EMEmojiableOption.h: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableOption.h 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface EMEmojiableOption : NSObject 12 | @property (strong,nonatomic) NSString *imageName; 13 | @property (strong,nonatomic) NSString *name; 14 | 15 | -(instancetype)initWithImage:(NSString*)imageName withName:(NSString*)name; 16 | @end 17 | -------------------------------------------------------------------------------- /Pod/Classes/EMEmojiableOption.m: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableOption.m 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import "EMEmojiableOption.h" 10 | 11 | @implementation EMEmojiableOption 12 | -(instancetype)initWithImage:(NSString*)imageName withName:(NSString*)name{ 13 | if(self = [super init]){ 14 | self.imageName = imageName; 15 | self.name = name; 16 | } 17 | return self; 18 | } 19 | @end 20 | -------------------------------------------------------------------------------- /Example/Pods/EMEmojiableBtn/Pod/Classes/EMEmojiableOption.m: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableOption.m 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import "EMEmojiableOption.h" 10 | 11 | @implementation EMEmojiableOption 12 | -(instancetype)initWithImage:(NSString*)imageName withName:(NSString*)name{ 13 | if(self = [super init]){ 14 | self.imageName = imageName; 15 | self.name = name; 16 | } 17 | return self; 18 | } 19 | @end 20 | -------------------------------------------------------------------------------- /Example/Pods/EMEmojiableBtn/Pod/Classes/EMEmojiableBtnConfig.h: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableBtnConfig.h 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface EMEmojiableBtnConfig : NSObject 12 | @property (assign,nonatomic) CGFloat size; 13 | @property (assign,nonatomic) CGFloat maxSize; 14 | @property (assign,nonatomic) CGFloat minSize; 15 | @property (assign,nonatomic) CGFloat spacing; 16 | @property (assign,nonatomic) CGFloat s_options_selector; 17 | @end 18 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EMEmojiableBtn_Tests/Pods-EMEmojiableBtn_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/EMEmojiableBtn" 3 | LIBRARY_SEARCH_PATHS = $(inherited) "$CONFIGURATION_BUILD_DIR/EMEmojiableBtn-iOS7.1" 4 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/EMEmojiableBtn" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -l"EMEmojiableBtn-iOS7.1" 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EMEmojiableBtn_Tests/Pods-EMEmojiableBtn_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/EMEmojiableBtn" 3 | LIBRARY_SEARCH_PATHS = $(inherited) "$CONFIGURATION_BUILD_DIR/EMEmojiableBtn-iOS7.1" 4 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/EMEmojiableBtn" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -l"EMEmojiableBtn-iOS7.1" 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EMEmojiableBtn_Example/Pods-EMEmojiableBtn_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/EMEmojiableBtn" 3 | LIBRARY_SEARCH_PATHS = $(inherited) "$CONFIGURATION_BUILD_DIR/EMEmojiableBtn-iOS8.4" 4 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/EMEmojiableBtn" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -l"EMEmojiableBtn-iOS8.4" 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EMEmojiableBtn_Example/Pods-EMEmojiableBtn_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/EMEmojiableBtn" 3 | LIBRARY_SEARCH_PATHS = $(inherited) "$CONFIGURATION_BUILD_DIR/EMEmojiableBtn-iOS8.4" 4 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/EMEmojiableBtn" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -l"EMEmojiableBtn-iOS8.4" 6 | PODS_ROOT = ${SRCROOT}/Pods 7 | -------------------------------------------------------------------------------- /Example/Pods/EMEmojiableBtn/Pod/Classes/EMEmojiableBtnConfig.m: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableBtnConfig.m 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import "EMEmojiableBtnConfig.h" 10 | 11 | @implementation EMEmojiableBtnConfig 12 | - (instancetype)init{ 13 | self = [super init]; 14 | if(self){ 15 | self.spacing = 6; 16 | self.size = 40; 17 | self.minSize = 34; 18 | self.maxSize = 80; 19 | self.s_options_selector = 30; 20 | } 21 | return self; 22 | } 23 | @end 24 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/EMEmojiableBtn-iOS7.1/EMEmojiableBtn-iOS7.1.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_SHARED_BUILD_DIR/EMEmojiableBtn-iOS7.1 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/EMEmojiableBtn" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/EMEmojiableBtn" 4 | PODS_ROOT = ${SRCROOT} 5 | PODS_SHARED_BUILD_DIR = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 7 | SKIP_INSTALL = YES 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/EMEmojiableBtn-iOS8.4/EMEmojiableBtn-iOS8.4.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_SHARED_BUILD_DIR/EMEmojiableBtn-iOS8.4 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/EMEmojiableBtn" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/EMEmojiableBtn" 4 | PODS_ROOT = ${SRCROOT} 5 | PODS_SHARED_BUILD_DIR = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 7 | SKIP_INSTALL = YES 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | Carthage 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | # Note: if you ignore the Pods directory, make sure to uncomment 31 | # `pod install` in .travis.yml 32 | # 33 | Pods/ 34 | -------------------------------------------------------------------------------- /Example/Tests/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 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableBtnTests.m 3 | // EMEmojiableBtnTests 4 | // 5 | // Created by Erekle on 04/01/2016. 6 | // Copyright (c) 2016 Erekle. All rights reserved. 7 | // 8 | 9 | @import XCTest; 10 | 11 | @interface Tests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation Tests 16 | 17 | - (void)setUp 18 | { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown 24 | { 25 | // Put teardown code here. This method is called after the invocation of each test method in the class. 26 | [super tearDown]; 27 | } 28 | 29 | - (void)testExample 30 | { 31 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); 32 | } 33 | 34 | @end 35 | 36 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/EMEmojiableBtn.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "EMEmojiableBtn", 3 | "version": "0.1.0", 4 | "summary": "EMEmojiableBtn is awsome UIView", 5 | "description": "EMEmojiableBtn is awsome UIViewEMEmojiableBtn is awsome UIViewEMEmojiableBtn is awsome UIViewEMEmojiableBtn is awsome UIView", 6 | "homepage": "https://github.com/Eke/EMEmojiableBtn", 7 | "license": "MIT", 8 | "authors": { 9 | "Erekle": "erekle@itdc.ge" 10 | }, 11 | "source": { 12 | "git": "https://github.com/Eke/EMEmojiableBtn.git", 13 | "tag": "0.1.0" 14 | }, 15 | "platforms": { 16 | "ios": "7.0" 17 | }, 18 | "requires_arc": true, 19 | "source_files": "Pod/Classes/**/*", 20 | "resource_bundles": { 21 | "EMEmojiableBtn": [ 22 | "Pod/Assets/*.png" 23 | ] 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Example/Pods/EMEmojiableBtn/Pod/Classes/EMEmojiableBtn.h: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableBtn.h 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import 10 | #import "EMEmojiableOption.h" 11 | #import "EMEmojiableBtnConfig.h" 12 | 13 | @protocol EMEmojiableBtnDelegate; 14 | @interface EMEmojiableBtn : UIButton 15 | @property (strong,nonatomic) NSArray *dataset; 16 | @property (weak,readwrite) id delegate; 17 | 18 | - (instancetype)initWithFrame:(CGRect)frame withConfig:(EMEmojiableBtnConfig*)conf; 19 | @end 20 | 21 | @protocol EMEmojiableBtnDelegate 22 | @optional 23 | - (void)EMEmojiableBtn:(EMEmojiableBtn*)button selectedOption:(NSUInteger)index; 24 | - (void)EMEmojiableBtnCanceledAction:(EMEmojiableBtn*)button; 25 | @end 26 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: objective-c 2 | osx_image: xcode7.3 3 | 4 | # cache: 5 | # directories: 6 | # - vendor/bundle 7 | # install: 8 | # - brew update && (brew upgrade xctool || true) && (brew install xcproj || true) && xctool --version 9 | # - bundle install --path=vendor/bundle --binstubs=vendor/bin 10 | # - cd Example && bundle exec pod install && cd - 11 | 12 | 13 | podfile: Example/Podfile 14 | # cache: cocoapods 15 | # podfile: Example/Podfile 16 | #before_install: 17 | # - gem install cocoapods # Since Travis is not always on latest version 18 | # - pod install --project-directory=Example 19 | install: 20 | - cd Example/ 21 | - pod update 22 | - cd ../ 23 | script: 24 | - xctool -workspace Example/EMEmojiableBtn.xcworkspace -scheme EMEmojiableBtn-Example -sdk iphoneos9.3 build CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="" -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/EMEmojiableBtn-iOS7.1/ResourceBundle-EMEmojiableBtn-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleIdentifier 8 | ${PRODUCT_BUNDLE_IDENTIFIER} 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | ${PRODUCT_NAME} 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 0.1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | ${CURRENT_PROJECT_VERSION} 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/EMEmojiableBtn-iOS8.4/ResourceBundle-EMEmojiableBtn-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleIdentifier 8 | ${PRODUCT_BUNDLE_IDENTIFIER} 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | ${PRODUCT_NAME} 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 0.1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | ${CURRENT_PROJECT_VERSION} 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Pod/Classes/EMEmojiableBtn.h: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableBtn.h 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import 10 | #import "EMEmojiableOption.h" 11 | #import "EMEmojiableBtnConfig.h" 12 | 13 | typedef NS_ENUM(NSInteger, MenuDirection) { 14 | MenuDirectionUpRight, 15 | MenuDirectionUpLeft, 16 | MenuDirectionDownRight, 17 | MenuDirectionDownLeft, 18 | }; 19 | 20 | @protocol EMEmojiableBtnDelegate; 21 | @interface EMEmojiableBtn : UIButton 22 | @property (strong,nonatomic) NSArray * _Nonnull dataset; 23 | @property (weak,readwrite) id _Nullable delegate; 24 | 25 | - (instancetype _Nonnull)initWithFrame:(CGRect)frame withConfig:(EMEmojiableBtnConfig* _Nonnull)conf; 26 | @end 27 | 28 | @protocol EMEmojiableBtnDelegate 29 | @optional 30 | - (void)EMEmojiableBtn:( EMEmojiableBtn* _Nonnull)button selectedOption:(NSUInteger)index; 31 | - (void)EMEmojiableBtnCanceledAction:(EMEmojiableBtn* _Nonnull)button; 32 | - (void)EMEmojiableBtnSingleTap:(EMEmojiableBtn* _Nonnull)button; 33 | @end 34 | -------------------------------------------------------------------------------- /Example/Pods/EMEmojiableBtn/README.md: -------------------------------------------------------------------------------- 1 | # EMEmojiableBtn 2 | 3 | [![CI Status](http://img.shields.io/travis/Erekle/EMEmojiableBtn.svg?style=flat)](https://travis-ci.org/Erekle/EMEmojiableBtn) 4 | [![Version](https://img.shields.io/cocoapods/v/EMEmojiableBtn.svg?style=flat)](http://cocoapods.org/pods/EMEmojiableBtn) 5 | [![License](https://img.shields.io/cocoapods/l/EMEmojiableBtn.svg?style=flat)](http://cocoapods.org/pods/EMEmojiableBtn) 6 | [![Platform](https://img.shields.io/cocoapods/p/EMEmojiableBtn.svg?style=flat)](http://cocoapods.org/pods/EMEmojiableBtn) 7 | 8 | ## Usage 9 | 10 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 11 | 12 | ## Requirements 13 | 14 | ## Installation 15 | 16 | EMEmojiableBtn is available through [CocoaPods](http://cocoapods.org). To install 17 | it, simply add the following line to your Podfile: 18 | 19 | ```ruby 20 | pod "EMEmojiableBtn" 21 | ``` 22 | 23 | ## Author 24 | 25 | Erekle, erekle@itdc.ge 26 | 27 | ## License 28 | 29 | EMEmojiableBtn is available under the MIT license. See the LICENSE file for more info. 30 | -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "40x40", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "60x60", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "ipad", 20 | "size" : "29x29", 21 | "scale" : "1x" 22 | }, 23 | { 24 | "idiom" : "ipad", 25 | "size" : "29x29", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "ipad", 30 | "size" : "40x40", 31 | "scale" : "1x" 32 | }, 33 | { 34 | "idiom" : "ipad", 35 | "size" : "40x40", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "76x76", 41 | "scale" : "1x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "76x76", 46 | "scale" : "2x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2016 Erekle 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Example/Pods/EMEmojiableBtn/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2016 Erekle 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "subtype" : "retina4", 14 | "extent" : "full-screen", 15 | "minimum-system-version" : "7.0", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "orientation" : "portrait", 20 | "idiom" : "ipad", 21 | "extent" : "full-screen", 22 | "minimum-system-version" : "7.0", 23 | "scale" : "1x" 24 | }, 25 | { 26 | "orientation" : "landscape", 27 | "idiom" : "ipad", 28 | "extent" : "full-screen", 29 | "minimum-system-version" : "7.0", 30 | "scale" : "1x" 31 | }, 32 | { 33 | "orientation" : "portrait", 34 | "idiom" : "ipad", 35 | "extent" : "full-screen", 36 | "minimum-system-version" : "7.0", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "orientation" : "landscape", 41 | "idiom" : "ipad", 42 | "extent" : "full-screen", 43 | "minimum-system-version" : "7.0", 44 | "scale" : "2x" 45 | } 46 | ], 47 | "info" : { 48 | "version" : 1, 49 | "author" : "xcode" 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EMEmojiableBtn_Tests/Pods-EMEmojiableBtn_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## EMEmojiableBtn 5 | 6 | Copyright (c) 2016 Erekle 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 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EMEmojiableBtn_Example/Pods-EMEmojiableBtn_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## EMEmojiableBtn 5 | 6 | Copyright (c) 2016 Erekle 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 | -------------------------------------------------------------------------------- /Pod/Classes/EMEmojiableBtnConfig.m: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableBtnConfig.m 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import "EMEmojiableBtnConfig.h" 10 | 11 | @implementation EMEmojiableBtnConfig 12 | - (instancetype)init{ 13 | self = [super init]; 14 | if(self){ 15 | self.spacing = 6; 16 | self.size = 40; 17 | self.minSize = 34; 18 | self.maxSize = 80; 19 | self.s_options_selector = 30; 20 | 21 | self.backgroundColor = [UIColor clearColor]; 22 | 23 | self.optionsViewBackgroundColor = [UIColor whiteColor]; 24 | self.optionsViewShadowColor = [UIColor lightGrayColor]; 25 | self.optionsViewShadowOffset = CGSizeMake(0.0, 0.0); 26 | self.optionsViewShadowOpacity = .5; 27 | self.optionsViewInitialAlpha = .3; 28 | 29 | self.informationViewBackgroundColor = [UIColor whiteColor]; 30 | self.informationViewFont = [UIFont boldSystemFontOfSize:12.0]; 31 | self.informationViewTextColor = [UIColor colorWithRed:0.57 green:0.59 blue:0.64 alpha:1]; 32 | self.informationViewText = @"Release to cancel"; 33 | 34 | self.informationViewDotsColor = [UIColor colorWithRed:0.8 green:0.81 blue:0.82 alpha:1.0]; 35 | self.informationViewBorderColor = [UIColor colorWithRed:0.8 green:0.81 blue:0.82 alpha:1.0]; 36 | } 37 | return self; 38 | } 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /EMEmojiableBtn.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint EMEmojiableBtn.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = "EMEmojiableBtn" 11 | s.version = "0.1.0" 12 | s.summary = "Option selector that works similar to Reactions by fb. Objective-c version" 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | s.description = <<-DESC 20 | Totally customizable Options (Emoji) Selector based on Reactions. Objective-c version 21 | DESC 22 | 23 | s.homepage = "https://github.com/Eke/EMEmojiableBtn" 24 | # s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2" 25 | s.license = 'MIT' 26 | s.author = { "Erekle Meskhi" => "ereklemesxi@gmail.com" } 27 | s.source = { :git => "https://github.com/Eke/EMEmojiableBtn.git", :tag => s.version.to_s } 28 | 29 | s.platform = :ios, '8.0' 30 | s.requires_arc = true 31 | 32 | s.source_files = 'Pod/Classes/**/*' 33 | s.resource_bundles = { 34 | 'EMEmojiableBtn' => ['Pod/Assets/*.png'] 35 | } 36 | 37 | # s.public_header_files = 'Pod/Classes/**/*.h' 38 | # s.frameworks = 'UIKit', 'MapKit' 39 | # s.dependency 'AFNetworking', '~> 2.3' 40 | end 41 | -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/EMEmojiableBtn-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | Launch Screen 29 | UIMainStoryboardFile 30 | Main 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UISupportedInterfaceOrientations~ipad 42 | 43 | UIInterfaceOrientationPortrait 44 | UIInterfaceOrientationPortraitUpsideDown 45 | UIInterfaceOrientationLandscapeLeft 46 | UIInterfaceOrientationLandscapeRight 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/EMAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // EMAppDelegate.m 3 | // EMEmojiableBtn 4 | // 5 | // Created by Erekle on 04/01/2016. 6 | // Copyright (c) 2016 Erekle. All rights reserved. 7 | // 8 | 9 | #import "EMAppDelegate.h" 10 | 11 | @implementation EMAppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | // Override point for customization after application launch. 16 | return YES; 17 | } 18 | 19 | - (void)applicationWillResignActive:(UIApplication *)application 20 | { 21 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 22 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 23 | } 24 | 25 | - (void)applicationDidEnterBackground:(UIApplication *)application 26 | { 27 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 29 | } 30 | 31 | - (void)applicationWillEnterForeground:(UIApplication *)application 32 | { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | - (void)applicationDidBecomeActive:(UIApplication *)application 37 | { 38 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application 42 | { 43 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 44 | } 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /Example/Pods/EMEmojiableBtn/Pod/Classes/EMEmojiableInformationView.m: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableInformationView.m 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import "EMEmojiableInformationView.h" 10 | 11 | @implementation EMEmojiableInformationView{ 12 | UILabel *textInformation; 13 | } 14 | 15 | - (void)drawRect:(CGRect)rect { 16 | UIBezierPath *dots = [UIBezierPath bezierPath]; 17 | [dots moveToPoint:CGPointMake(18.5, (rect.size.height/2.0))]; 18 | [dots addLineToPoint:CGPointMake(rect.size.width, (rect.size.height/2.0))]; 19 | dots.lineCapStyle = kCGLineCapRound; 20 | dots.lineWidth = 3.0; 21 | CGFloat dashes [] = {dots.lineWidth * 0, 37}; 22 | NSInteger count = sizeof(dashes)/sizeof(dashes[0]); 23 | [dots setLineDash:dashes count:count phase:0]; 24 | [[UIColor colorWithRed:0.8 green:0.81 blue:0.82 alpha:1.0] setStroke]; 25 | [dots stroke]; 26 | 27 | UIBezierPath *lineSuperior = [UIBezierPath bezierPath]; 28 | [lineSuperior moveToPoint:CGPointMake(0,0)]; 29 | [lineSuperior addLineToPoint:CGPointMake(rect.size.width,0)]; 30 | lineSuperior.lineWidth = 1.0; 31 | [[UIColor colorWithRed:0.8 green:0.81 blue:0.82 alpha:1.0] setStroke]; 32 | [lineSuperior stroke]; 33 | 34 | UIBezierPath *lineInferior = [UIBezierPath bezierPath]; 35 | [lineInferior moveToPoint:CGPointMake(0,rect.size.height)]; 36 | [lineInferior addLineToPoint:CGPointMake(rect.size.width,rect.size.height)]; 37 | lineInferior.lineWidth = 1.0; 38 | [[UIColor colorWithRed:0.8 green:0.81 blue:0.82 alpha:1.0] setStroke]; 39 | [lineInferior stroke]; 40 | 41 | textInformation = [[UILabel alloc] initWithFrame:CGRectMake(0,1,rect.size.width,rect.size.height-2)]; 42 | textInformation.backgroundColor = [UIColor whiteColor]; 43 | textInformation.textColor = [UIColor colorWithRed:0.57 green:0.59 blue:0.64 alpha:1]; 44 | textInformation.text = @"Release to Cancel"; 45 | textInformation.textAlignment = NSTextAlignmentCenter; 46 | textInformation.font = [UIFont boldSystemFontOfSize:12.0]; 47 | textInformation.alpha = 0; 48 | 49 | [self addSubview:textInformation]; 50 | 51 | } 52 | 53 | - (void)activateInfo:(BOOL)active{ 54 | textInformation.alpha = active ? 1 : 0; 55 | } 56 | 57 | @end 58 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EMEmojiableBtn_Tests/Pods-EMEmojiableBtn_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2016 Erekle <erekle@itdc.ge> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | EMEmojiableBtn 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - https://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EMEmojiableBtn_Example/Pods-EMEmojiableBtn_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) 2016 Erekle <erekle@itdc.ge> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | Title 38 | EMEmojiableBtn 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - https://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/EMEmojiableBtn-iOS7.1.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 44 | 45 | 46 | 52 | 53 | 55 | 56 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/EMEmojiableBtn-iOS8.4.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 44 | 45 | 46 | 52 | 53 | 55 | 56 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /Pod/Classes/EMEmojiableInformationView.m: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableInformationView.m 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import "EMEmojiableInformationView.h" 10 | #import "EMEmojiableBtnConfig.h" 11 | 12 | @implementation EMEmojiableInformationView{ 13 | UILabel *textInformation; 14 | EMEmojiableBtnConfig *_config; 15 | } 16 | 17 | - (instancetype)initWithFrame:(CGRect)frame withConfig:(EMEmojiableBtnConfig*)config{ 18 | self = [super initWithFrame:frame]; 19 | if(self){ 20 | _config = config; 21 | } 22 | return self; 23 | } 24 | 25 | - (void)drawRect:(CGRect)rect { 26 | UIBezierPath *dots = [UIBezierPath bezierPath]; 27 | [dots moveToPoint:CGPointMake(18.5, (rect.size.height/2.0))]; 28 | [dots addLineToPoint:CGPointMake(rect.size.width, (rect.size.height/2.0))]; 29 | dots.lineCapStyle = kCGLineCapRound; 30 | dots.lineWidth = 3.0; 31 | CGFloat dashes [] = {dots.lineWidth * 0, 37}; 32 | NSInteger count = sizeof(dashes)/sizeof(dashes[0]); 33 | [dots setLineDash:dashes count:count phase:0]; 34 | [_config.informationViewDotsColor setStroke]; 35 | [dots stroke]; 36 | 37 | UIBezierPath *lineSuperior = [UIBezierPath bezierPath]; 38 | [lineSuperior moveToPoint:CGPointMake(0,0)]; 39 | [lineSuperior addLineToPoint:CGPointMake(rect.size.width,0)]; 40 | lineSuperior.lineWidth = 1.0; 41 | [_config.informationViewBorderColor setStroke]; 42 | [lineSuperior stroke]; 43 | 44 | UIBezierPath *lineInferior = [UIBezierPath bezierPath]; 45 | [lineInferior moveToPoint:CGPointMake(0,rect.size.height)]; 46 | [lineInferior addLineToPoint:CGPointMake(rect.size.width,rect.size.height)]; 47 | lineInferior.lineWidth = 1.0; 48 | [_config.informationViewBorderColor setStroke]; 49 | [lineInferior stroke]; 50 | 51 | textInformation = [[UILabel alloc] initWithFrame:CGRectMake(0,1,rect.size.width,rect.size.height-2)]; 52 | textInformation.backgroundColor = self.backgroundColor; 53 | textInformation.textColor = _config.informationViewTextColor; 54 | textInformation.text = _config.informationViewText; 55 | textInformation.textAlignment = NSTextAlignmentCenter; 56 | textInformation.font = _config.informationViewFont; 57 | textInformation.alpha = 0; 58 | 59 | [self addSubview:textInformation]; 60 | 61 | } 62 | 63 | - (void)activateInfo:(BOOL)active{ 64 | textInformation.alpha = active ? 1 : 0; 65 | } 66 | 67 | @end 68 | -------------------------------------------------------------------------------- /Pod/Classes/EMEmojiableBtnConfig.h: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableBtnConfig.h 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface EMEmojiableBtnConfig : NSObject 12 | /** 13 | Size of each option 14 | */ 15 | @property (assign,nonatomic) CGFloat size; 16 | 17 | /** 18 | Size of option when it is hilighted 19 | */ 20 | @property (assign,nonatomic) CGFloat maxSize; 21 | 22 | /** 23 | Size of options when one option is hilighted. 24 | When option is hilighted other options are smaller. 25 | */ 26 | @property (assign,nonatomic) CGFloat minSize; 27 | 28 | /** 29 | Spacing between options 30 | */ 31 | @property (assign,nonatomic) CGFloat spacing; 32 | 33 | /** 34 | Bottom space of option selector view to button and information view 35 | */ 36 | @property (assign,nonatomic) CGFloat s_options_selector; 37 | 38 | /** 39 | Background color of screen when options selector is active after UILongPressGestureRecognizer 40 | */ 41 | @property (strong,nonatomic) UIColor* backgroundColor; 42 | 43 | /** 44 | Initial opacity of options listing view 45 | */ 46 | @property (assign,nonatomic) CGFloat optionsViewInitialAlpha; 47 | 48 | /** 49 | Background color of options listing view 50 | */ 51 | @property (strong,nonatomic) UIColor* optionsViewBackgroundColor; 52 | 53 | /** 54 | Shadow color of options listing view 55 | */ 56 | @property (strong,nonatomic) UIColor* optionsViewShadowColor; 57 | 58 | /** 59 | Opacity of options listing shadow 60 | */ 61 | @property (assign,nonatomic) CGFloat optionsViewShadowOpacity; 62 | 63 | /** 64 | Offset of options listing shadow 65 | */ 66 | @property (assign,nonatomic) CGSize optionsViewShadowOffset; 67 | 68 | /** 69 | Background color of information view 70 | */ 71 | @property (strong,nonatomic) UIColor* informationViewBackgroundColor; 72 | 73 | /** 74 | Dots color of information view 75 | */ 76 | @property (strong,nonatomic) UIColor* informationViewDotsColor; 77 | 78 | /** 79 | Border color of information view 80 | */ 81 | @property (strong,nonatomic) UIColor* informationViewBorderColor; 82 | 83 | /** 84 | Font of information view 85 | */ 86 | @property (strong,nonatomic) UIFont* informationViewFont; 87 | 88 | /** 89 | Text color of information view 90 | */ 91 | @property (strong,nonatomic) UIColor* informationViewTextColor; 92 | 93 | /** 94 | Text for information view. Default : Release to cancel 95 | */ 96 | @property (strong,nonatomic) NSString* informationViewText; 97 | @end 98 | -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/EMViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // EMViewController.m 3 | // EMEmojiableBtn 4 | // 5 | // Created by Erekle on 04/01/2016. 6 | // Copyright (c) 2016 Erekle. All rights reserved. 7 | // 8 | 9 | #import "EMViewController.h" 10 | #import "EMEmojiableBtn.h" 11 | 12 | @interface EMViewController () 13 | @property (strong,nonatomic) NSArray *dataSetArray; 14 | @property (strong,nonatomic) EMEmojiableBtn *theButton; 15 | @end 16 | 17 | @implementation EMViewController 18 | @synthesize theButton; 19 | @synthesize dataSetArray; 20 | - (void)viewDidLoad 21 | { 22 | [super viewDidLoad]; 23 | BOOL withConfig = YES; 24 | 25 | dataSetArray = @[ 26 | [[EMEmojiableOption alloc] initWithImage:@"img_1" withName:@"dislike"], 27 | [[EMEmojiableOption alloc] initWithImage:@"img_2" withName:@"dislike"], 28 | [[EMEmojiableOption alloc] initWithImage:@"img_3" withName:@"dislike"], 29 | [[EMEmojiableOption alloc] initWithImage:@"img_4" withName:@"dislike"], 30 | [[EMEmojiableOption alloc] initWithImage:@"img_5" withName:@"dislike"], 31 | [[EMEmojiableOption alloc] initWithImage:@"img_6" withName:@"dislike"] 32 | ]; 33 | 34 | if(withConfig){ 35 | EMEmojiableBtnConfig *config = [[EMEmojiableBtnConfig alloc] init]; 36 | theButton = [[EMEmojiableBtn alloc] initWithFrame:CGRectMake(20, 150, 52.0, 52.0) withConfig:config]; 37 | }else{ 38 | theButton = [[EMEmojiableBtn alloc] initWithFrame:CGRectMake(20, 150, 52.0, 52.0)]; 39 | } 40 | 41 | theButton.delegate = self; 42 | theButton.dataset = dataSetArray; 43 | [theButton setImage:[UIImage imageNamed:@"img_1"] forState:UIControlStateNormal]; 44 | [self.view addSubview:theButton]; 45 | } 46 | 47 | - (void)viewDidLayoutSubviews{ 48 | [super viewDidLayoutSubviews]; 49 | theButton.layer.cornerRadius = theButton.frame.size.width / 2.0; 50 | } 51 | 52 | - (void)didReceiveMemoryWarning 53 | { 54 | [super didReceiveMemoryWarning]; 55 | // Dispose of any resources that can be recreated. 56 | } 57 | 58 | #pragma mark - EMEmojiableBtnDelegate 59 | - (void)EMEmojiableBtnCanceledAction:(EMEmojiableBtn *)button{ 60 | NSLog(@"Canceled"); 61 | } 62 | 63 | - (void)EMEmojiableBtnSingleTap:(EMEmojiableBtn *)button{ 64 | NSLog(@"Single Tap"); 65 | } 66 | 67 | - (void)EMEmojiableBtn:(EMEmojiableBtn *)button selectedOption:(NSUInteger)index{ 68 | EMEmojiableOption *buttonOption = [dataSetArray objectAtIndex:index]; 69 | [button setImage:[UIImage imageNamed:buttonOption.imageName] forState:UIControlStateNormal]; 70 | } 71 | 72 | @end 73 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/EMEmojiableBtn.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 34 | 35 | 45 | 46 | 52 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 66 | 67 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EMEmojiableBtn_Example/Pods-EMEmojiableBtn_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EMEmojiableBtn_Tests/Pods-EMEmojiableBtn_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements \"$1\"" 63 | /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --preserve-metadata=identifier,entitlements "$1" 64 | fi 65 | } 66 | 67 | # Strip invalid architectures 68 | strip_invalid_archs() { 69 | binary="$1" 70 | # Get architectures for current file 71 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 72 | stripped="" 73 | for arch in $archs; do 74 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 75 | # Strip non-valid architectures in-place 76 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 77 | stripped="$stripped $arch" 78 | fi 79 | done 80 | if [[ "$stripped" ]]; then 81 | echo "Stripped $binary of architectures:$stripped" 82 | fi 83 | } 84 | 85 | -------------------------------------------------------------------------------- /Example/EMEmojiableBtn.xcworkspace/xcshareddata/xcschemes/EMEmojiableBtn-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 53 | 54 | 64 | 66 | 72 | 73 | 74 | 75 | 76 | 77 | 83 | 85 | 91 | 92 | 93 | 94 | 96 | 97 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /Example/EMEmojiableBtn/Launch Screen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 27 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # EMEmojiableBtn 2 | 3 | [![CI Status](http://img.shields.io/travis/Eke/EMEmojiableBtn.svg?style=flat)](https://travis-ci.org/Erekle/EMEmojiableBtn) 4 | [![Version](https://img.shields.io/cocoapods/v/EMEmojiableBtn.svg?style=flat)](http://cocoapods.org/pods/EMEmojiableBtn) 5 | [![License](https://img.shields.io/cocoapods/l/EMEmojiableBtn.svg?style=flat)](http://cocoapods.org/pods/EMEmojiableBtn) 6 | [![Platform](https://img.shields.io/cocoapods/p/EMEmojiableBtn.svg?style=flat)](http://cocoapods.org/pods/EMEmojiableBtn) 7 | 8 | ## Usage 9 | 10 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 11 | 12 | There's also an [Swift implementation](https://github.com/lojals/JOEmojiableBtn) developed by [lojals](https://github.com/lojals). 13 | 14 | 15 | ## Installation 16 | 17 | EMEmojiableBtn is available through [CocoaPods](http://cocoapods.org). To install 18 | it, simply add the following line to your Podfile: 19 | 20 | ```ruby 21 | pod "EMEmojiableBtn" 22 | ``` 23 | 24 | ## Examples 25 | 26 | ### 1. Basic Instance 27 | 28 | #### Example Code 29 | 30 | ```objc 31 | EMEmojiableBtn *button = [[EMEmojiableBtn alloc] initWithFrame:CGRectMake(20, 150, 52.0, 52.0)]; 32 | button.delegate = self; 33 | button.dataset = @[ 34 | [[EMEmojiableOption alloc] initWithImage:@"img_1" withName:@"dislike"], 35 | [[EMEmojiableOption alloc] initWithImage:@"img_2" withName:@"broken"], 36 | [[EMEmojiableOption alloc] initWithImage:@"img_3" withName:@"he he"], 37 | [[EMEmojiableOption alloc] initWithImage:@"img_4" withName:@"ooh"], 38 | [[EMEmojiableOption alloc] initWithImage:@"img_5" withName:@"meh !"], 39 | [[EMEmojiableOption alloc] initWithImage:@"img_6" withName:@"ahh !"] 40 | ]; 41 | [button setImage:[UIImage imageNamed:@"img_1"] forState:UIControlStateNormal]; 42 | [self.view addSubview:button]; 43 | ``` 44 | 45 | ![image](http://i.imgur.com/A6Z1oTI.gif) 46 | 47 | ### 2. Custom styled instance 48 | #### Example Code 49 | 50 | With this instance you can fully custom your component. Following the **EMEmojiableBtnConfig** variables. 51 | 52 | You can custom your selector with the following variables, used in the 53 | 54 | ![image](http://i.imgur.com/e4zaaye.png?1) 55 | 56 | 57 | ![image](http://i.imgur.com/yNfyP3c.png?1) 58 | 59 | ```objc 60 | EMEmojiableBtnConfig *config = [[EMEmojiableBtnConfig alloc] init]; 61 | config.spacing = 6.0; 62 | config.size = 30.0; 63 | config.minSize = 34.0; 64 | config.maxSize = 45.0; 65 | config.s_options_selector = 30.0; 66 | 67 | EMEmojiableBtn *button = [[EMEmojiableBtn alloc] initWithFrame:CGRectMake(20, 150, 52.0, 52.0) withConfig:config]; 68 | button.delegate = self; 69 | button.dataset = @[ 70 | [[EMEmojiableOption alloc] initWithImage:@"img_1" withName:@"dislike"], 71 | [[EMEmojiableOption alloc] initWithImage:@"img_2" withName:@"broken"], 72 | [[EMEmojiableOption alloc] initWithImage:@"img_3" withName:@"he he"], 73 | [[EMEmojiableOption alloc] initWithImage:@"img_4" withName:@"ooh"], 74 | [[EMEmojiableOption alloc] initWithImage:@"img_5" withName:@"meh !"], 75 | [[EMEmojiableOption alloc] initWithImage:@"img_6" withName:@"ahh !"] 76 | ]; 77 | [button setImage:[UIImage imageNamed:@"img_1"] forState:UIControlStateNormal]; 78 | [self.view addSubview:button]; 79 | ``` 80 | 81 | ![image](http://i.imgur.com/G6PmoDE.gif) 82 | 83 | #### Available customization options using **EMEmojiableBtnConfig** 84 | * `size` - Size of each available option 85 | * `maxSize` - Size of option when it is hilighted 86 | * `minSize` - Size of options when one option is hilighted. When option is hilighted other options are smaller 87 | * `spacing` - Spacing between options 88 | * `s_options_selector` - Bottom space of option selector view to button and information view 89 | * `backgroundColor` - Background color of screen when options selector is active after UILongPressGestureRecognizer 90 | * `optionsViewInitialAlpha` - Initial opacity of options listing view 91 | * `optionsViewBackgroundColor` - Background color of options listing view 92 | * `optionsViewShadowColor` - Shadow color of options listing view 93 | * `optionsViewShadowOpacity` - Opacity of options listing shadow 94 | * `optionsViewShadowOffset` - Offset of options listing shadow 95 | * `informationViewBackgroundColor` - Background color of information view 96 | * `informationViewDotsColor` - Dots color of information view 97 | * `informationViewBorderColor` - Border color of information view 98 | * `informationViewFont` - Font of information view 99 | * `informationViewTextColor` - Text color of information view 100 | * `informationViewText` - Text for information view. Default : Release to cancel 101 | 102 | ## Author 103 | 104 | Erekle, ereklemesxi@gmail.com 105 | 106 | ## License 107 | 108 | EMEmojiableBtn is available under the MIT license. See the LICENSE file for more info. 109 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EMEmojiableBtn_Example/Pods-EMEmojiableBtn_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | *) 22 | TARGET_DEVICE_ARGS="--target-device mac" 23 | ;; 24 | esac 25 | 26 | realpath() { 27 | DIRECTORY="$(cd "${1%/*}" && pwd)" 28 | FILENAME="${1##*/}" 29 | echo "$DIRECTORY/$FILENAME" 30 | } 31 | 32 | install_resource() 33 | { 34 | if [[ "$1" = /* ]] ; then 35 | RESOURCE_PATH="$1" 36 | else 37 | RESOURCE_PATH="${PODS_ROOT}/$1" 38 | fi 39 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 40 | cat << EOM 41 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 42 | EOM 43 | exit 1 44 | fi 45 | case $RESOURCE_PATH in 46 | *.storyboard) 47 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 48 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 49 | ;; 50 | *.xib) 51 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT}" 52 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" 53 | ;; 54 | *.framework) 55 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 57 | echo "rsync -av $RESOURCE_PATH ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 58 | rsync -av "$RESOURCE_PATH" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 59 | ;; 60 | *.xcdatamodel) 61 | echo "xcrun momc \"$RESOURCE_PATH\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 62 | xcrun momc "$RESOURCE_PATH" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 63 | ;; 64 | *.xcdatamodeld) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 66 | xcrun momc "$RESOURCE_PATH" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 67 | ;; 68 | *.xcmappingmodel) 69 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 70 | xcrun mapc "$RESOURCE_PATH" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 71 | ;; 72 | *.xcassets) 73 | ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH") 74 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 75 | ;; 76 | *) 77 | echo "$RESOURCE_PATH" 78 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 79 | ;; 80 | esac 81 | } 82 | if [[ "$CONFIGURATION" == "Debug" ]]; then 83 | install_resource "$CONFIGURATION_BUILD_DIR/EMEmojiableBtn-iOS8.4/EMEmojiableBtn.bundle" 84 | fi 85 | if [[ "$CONFIGURATION" == "Release" ]]; then 86 | install_resource "$CONFIGURATION_BUILD_DIR/EMEmojiableBtn-iOS8.4/EMEmojiableBtn.bundle" 87 | fi 88 | 89 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 90 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 91 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 92 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 93 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 94 | fi 95 | rm -f "$RESOURCES_TO_COPY" 96 | 97 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 98 | then 99 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 100 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 101 | while read line; do 102 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 103 | XCASSET_FILES+=("$line") 104 | fi 105 | done <<<"$OTHER_XCASSETS" 106 | 107 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 108 | fi 109 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-EMEmojiableBtn_Tests/Pods-EMEmojiableBtn_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | *) 22 | TARGET_DEVICE_ARGS="--target-device mac" 23 | ;; 24 | esac 25 | 26 | realpath() { 27 | DIRECTORY="$(cd "${1%/*}" && pwd)" 28 | FILENAME="${1##*/}" 29 | echo "$DIRECTORY/$FILENAME" 30 | } 31 | 32 | install_resource() 33 | { 34 | if [[ "$1" = /* ]] ; then 35 | RESOURCE_PATH="$1" 36 | else 37 | RESOURCE_PATH="${PODS_ROOT}/$1" 38 | fi 39 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 40 | cat << EOM 41 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 42 | EOM 43 | exit 1 44 | fi 45 | case $RESOURCE_PATH in 46 | *.storyboard) 47 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 48 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 49 | ;; 50 | *.xib) 51 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT}" 52 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" 53 | ;; 54 | *.framework) 55 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 57 | echo "rsync -av $RESOURCE_PATH ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 58 | rsync -av "$RESOURCE_PATH" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 59 | ;; 60 | *.xcdatamodel) 61 | echo "xcrun momc \"$RESOURCE_PATH\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 62 | xcrun momc "$RESOURCE_PATH" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 63 | ;; 64 | *.xcdatamodeld) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 66 | xcrun momc "$RESOURCE_PATH" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 67 | ;; 68 | *.xcmappingmodel) 69 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 70 | xcrun mapc "$RESOURCE_PATH" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 71 | ;; 72 | *.xcassets) 73 | ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH") 74 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 75 | ;; 76 | *) 77 | echo "$RESOURCE_PATH" 78 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 79 | ;; 80 | esac 81 | } 82 | if [[ "$CONFIGURATION" == "Debug" ]]; then 83 | install_resource "$CONFIGURATION_BUILD_DIR/EMEmojiableBtn-iOS7.1/EMEmojiableBtn.bundle" 84 | fi 85 | if [[ "$CONFIGURATION" == "Release" ]]; then 86 | install_resource "$CONFIGURATION_BUILD_DIR/EMEmojiableBtn-iOS7.1/EMEmojiableBtn.bundle" 87 | fi 88 | 89 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 90 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 91 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 92 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 93 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 94 | fi 95 | rm -f "$RESOURCES_TO_COPY" 96 | 97 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 98 | then 99 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 100 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 101 | while read line; do 102 | if [[ $line != "`realpath $PODS_ROOT`*" ]]; then 103 | XCASSET_FILES+=("$line") 104 | fi 105 | done <<<"$OTHER_XCASSETS" 106 | 107 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 108 | fi 109 | -------------------------------------------------------------------------------- /Example/Pods/EMEmojiableBtn/Pod/Classes/EMEmojiableBtn.m: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableBtn.m 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import "EMEmojiableBtn.h" 10 | #import "EMEmojiableInformationView.h" 11 | 12 | @interface EMEmojiableBtn() 13 | @property (nonatomic,strong) EMEmojiableBtnConfig *config; 14 | @property (strong,nonatomic) UIView *selectorBgView; 15 | @property (strong,nonatomic) UIView *optionsView; 16 | @property (strong,nonatomic) EMEmojiableInformationView *informationView; 17 | @property (strong,nonatomic) UITapGestureRecognizer *singleTapGesture; 18 | @property (strong,nonatomic) UILongPressGestureRecognizer *longPressGesture; 19 | @property (assign,nonatomic) BOOL active; 20 | @property (assign,nonatomic) CGPoint origin; 21 | @property (assign,nonatomic) CGRect optionsViewOriginalRect; 22 | @property (assign,nonatomic) int selectedItem; 23 | @end 24 | 25 | @implementation EMEmojiableBtn 26 | @synthesize selectorBgView; 27 | @synthesize optionsView; 28 | @synthesize longPressGesture; 29 | @synthesize singleTapGesture; 30 | @synthesize active; 31 | @synthesize origin; 32 | @synthesize informationView; 33 | @synthesize selectedItem; 34 | @synthesize optionsViewOriginalRect; 35 | #pragma mark - Init 36 | 37 | - (instancetype)initWithFrame:(CGRect)frame{ 38 | if(self = [super initWithFrame:frame]){ 39 | [self privateInit]; 40 | } 41 | return self; 42 | } 43 | 44 | - (instancetype)initWithFrame:(CGRect)frame withConfig:(EMEmojiableBtnConfig*)conf{ 45 | if(self = [super initWithFrame:frame]){ 46 | self.config = conf; 47 | [self privateInit]; 48 | } 49 | return self; 50 | } 51 | 52 | - (void)dealloc{ 53 | self.delegate = nil; 54 | [self removeGestureRecognizer:singleTapGesture]; 55 | [self removeGestureRecognizer:longPressGesture]; 56 | } 57 | 58 | - (void)privateInit{ 59 | active = NO; 60 | singleTapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(singleTap)]; 61 | longPressGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longTap:)]; 62 | //longPressGesture.cancelsTouchesInView = NO; 63 | singleTapGesture.cancelsTouchesInView = NO; 64 | [self addGestureRecognizer:singleTapGesture]; 65 | [self addGestureRecognizer:longPressGesture]; 66 | 67 | self.layer.masksToBounds = NO; 68 | } 69 | 70 | 71 | - (EMEmojiableBtnConfig*)config{ 72 | if(_config == nil){ 73 | NSLog(@"Init Config"); 74 | return self.config = [[EMEmojiableBtnConfig alloc] init]; 75 | } 76 | return _config; 77 | } 78 | 79 | #pragma mark - UI 80 | - (void)activate{ 81 | if(active){ 82 | return; 83 | } 84 | if(self.dataset == nil){ 85 | return; 86 | } 87 | selectedItem = -1; 88 | active = YES; 89 | 90 | 91 | CGRect selectorViewFrame = [UIScreen mainScreen].bounds; 92 | origin = [self.superview convertPoint:self.frame.origin toView:nil]; 93 | 94 | if (!CGPointEqualToPoint(origin,self.frame.origin)) { 95 | selectorViewFrame.origin.x -= origin.x; 96 | selectorViewFrame.origin.y -= origin.y; 97 | } 98 | 99 | selectorBgView = [[UIView alloc] initWithFrame:selectorViewFrame]; 100 | selectorBgView.backgroundColor = [UIColor clearColor]; 101 | [self.superview addSubview:selectorBgView]; 102 | 103 | CGFloat buttonWidth = ((CGFloat)(self.dataset.count + 1) * self.config.spacing) +(self.config.size*(CGFloat)self.dataset.count); 104 | CGFloat buttonHeight = self.config.size+(2*self.config.spacing); 105 | CGSize sizeBtn = CGSizeMake(buttonWidth,buttonHeight); 106 | 107 | CGRect optionsViewFrame = CGRectMake(origin.x, origin.y - sizeBtn.height, sizeBtn.width, sizeBtn.height); 108 | 109 | optionsView = [[UIView alloc] initWithFrame:optionsViewFrame]; 110 | optionsView.layer.cornerRadius = optionsView.frame.size.height/2.0; 111 | optionsView.backgroundColor = [UIColor whiteColor]; 112 | optionsView.layer.shadowColor = [UIColor lightGrayColor].CGColor; 113 | optionsView.layer.shadowOffset = CGSizeMake(0.0, 0.0); 114 | optionsView.layer.shadowOpacity = 0.5; 115 | optionsView.alpha = 0.3; 116 | 117 | [selectorBgView addSubview:optionsView]; 118 | 119 | [UIView animateWithDuration:0.2 animations:^{ 120 | CGRect frame = self.optionsView.frame; 121 | frame.origin.y = self.origin.y - (self.config.s_options_selector + sizeBtn.height); 122 | self.optionsView.frame = optionsViewOriginalRect = frame; 123 | self.optionsView.alpha = 1.0; 124 | }]; 125 | 126 | for (int i = 0; i self.dataset.count){ 191 | return; 192 | } 193 | 194 | selectedItem = index; 195 | [informationView activateInfo:NO]; 196 | 197 | [UIView animateWithDuration:0.3 animations:^{ 198 | CGFloat buttonWidth = (((CGFloat)self.dataset.count-1*self.config.spacing)+(self.config.minSize*(CGFloat)self.dataset.count-1)+self.config.maxSize); 199 | CGFloat buttonHeight = self.config.minSize+(2*self.config.spacing); 200 | CGSize sizeBtn = CGSizeMake(buttonWidth,buttonHeight); 201 | 202 | optionsView.frame = CGRectMake(self.origin.x, self.origin.y - (self.config.s_options_selector+sizeBtn.height), sizeBtn.width, sizeBtn.height); 203 | optionsView.layer.cornerRadius = sizeBtn.height/2; 204 | 205 | __block CGFloat last = index != 0 ? self.config.spacing : 0; 206 | 207 | [optionsView.subviews enumerateObjectsUsingBlock:^(UIView *view, NSUInteger idx, BOOL *stop) { 208 | if(idx == index-1){ 209 | view.frame = CGRectMake(last,self.config.spacing,self.config.minSize,self.config.minSize); 210 | view.center = CGPointMake(view.center.x, (self.config.minSize/2) + self.config.spacing); 211 | last += self.config.minSize; 212 | }else if(idx == index){ 213 | view.frame = CGRectMake(last, -(self.config.maxSize/2), self.config.maxSize, self.config.maxSize); 214 | last += self.config.maxSize; 215 | }else{ 216 | view.frame = CGRectMake(last,self.config.spacing,self.config.minSize,self.config.minSize); 217 | view.center = CGPointMake(view.center.x, (self.config.minSize/2) + self.config.spacing); 218 | last += self.config.minSize + self.config.spacing; 219 | } 220 | 221 | }]; 222 | }]; 223 | } 224 | 225 | - (void)looseFocus{ 226 | selectedItem = -1; 227 | [informationView activateInfo:YES]; 228 | [UIView animateWithDuration:0.3 animations:^{ 229 | CGFloat buttonWidth = (((CGFloat)self.dataset.count+1*self.config.spacing)+(self.config.size*(CGFloat)self.dataset.count)); 230 | CGFloat buttonHeight = self.config.size+(2.0*self.config.spacing); 231 | CGSize sizeBtn = CGSizeMake(buttonWidth,buttonHeight); 232 | optionsView.frame = optionsViewOriginalRect; 233 | optionsView.layer.cornerRadius = sizeBtn.height/2.0; 234 | 235 | [optionsView.subviews enumerateObjectsUsingBlock:^(UIView *view, NSUInteger idx, BOOL *stop) { 236 | view.frame = CGRectMake(((CGFloat)(idx+1)*self.config.spacing)+(self.config.size*(CGFloat)idx),self.config.spacing,self.config.size,self.config.size); 237 | }]; 238 | }]; 239 | } 240 | 241 | #pragma mark - Gestures 242 | - (void)singleTap{ 243 | [self activate]; 244 | } 245 | 246 | - (void)longTap:(UIGestureRecognizer*)gesture{ 247 | if (gesture.state == UIGestureRecognizerStateBegan){ 248 | [self activate]; 249 | } else if (gesture.state == UIGestureRecognizerStateChanged){ 250 | CGPoint point = [gesture locationInView:selectorBgView]; 251 | 252 | CGFloat t = optionsView.frame.size.width/(CGFloat)self.dataset.count; 253 | if (point.y < (CGRectGetMinY(optionsView.frame) - 50) || point.y > (CGRectGetMaxY(informationView.frame) + 30)){ 254 | [self looseFocus]; 255 | }else{ 256 | if (point.x-origin.x > 0 && point.x < CGRectGetMaxX(optionsView.frame)){ 257 | int selected = round((point.x-origin.x)/t); 258 | [self selectIndex:selected]; 259 | }else{ 260 | [self looseFocus]; 261 | } 262 | } 263 | 264 | } 265 | else if (gesture.state == UIGestureRecognizerStateEnded){ 266 | CGPoint point = [gesture locationInView:selectorBgView]; 267 | if (point.x > 0 && point.x < CGRectGetMaxX(optionsView.frame)){ 268 | [self deActivate:selectedItem]; 269 | }else{ 270 | [self deActivate:-1]; 271 | } 272 | } 273 | } 274 | 275 | @end -------------------------------------------------------------------------------- /Pod/Classes/EMEmojiableBtn.m: -------------------------------------------------------------------------------- 1 | // 2 | // EMEmojiableBtn.m 3 | // Pods 4 | // 5 | // Created by Erekle on 4/2/16. 6 | // 7 | // 8 | 9 | #import "EMEmojiableBtn.h" 10 | #import "EMEmojiableInformationView.h" 11 | 12 | @interface EMEmojiableBtn() 13 | @property (nonatomic,strong) EMEmojiableBtnConfig *config; 14 | @property (strong,nonatomic) UIView *selectorBgView; 15 | @property (strong,nonatomic) UIView *optionsView; 16 | @property (strong,nonatomic) EMEmojiableInformationView *informationView; 17 | @property (strong,nonatomic) UITapGestureRecognizer *singleTapGesture; 18 | @property (strong,nonatomic) UILongPressGestureRecognizer *longPressGesture; 19 | @property (assign,nonatomic) BOOL active; 20 | @property (assign,nonatomic) MenuDirection menuDirection; 21 | @property (assign,nonatomic) CGPoint origin; 22 | @property (assign,nonatomic) CGRect optionsViewOriginalRect; 23 | @property (assign,nonatomic) int selectedItem; 24 | @end 25 | 26 | @implementation EMEmojiableBtn{ 27 | NSArray *_dataset; 28 | } 29 | @synthesize selectorBgView; 30 | @synthesize optionsView; 31 | @synthesize longPressGesture; 32 | @synthesize singleTapGesture; 33 | @synthesize active; 34 | @synthesize menuDirection; 35 | @synthesize origin; 36 | @synthesize informationView; 37 | @synthesize selectedItem; 38 | @synthesize optionsViewOriginalRect; 39 | #pragma mark - Init 40 | 41 | - (instancetype)initWithFrame:(CGRect)frame{ 42 | if(self = [super initWithFrame:frame]){ 43 | [self privateInit]; 44 | } 45 | return self; 46 | } 47 | 48 | - (instancetype)initWithFrame:(CGRect)frame withConfig:(EMEmojiableBtnConfig*)conf{ 49 | if(self = [super initWithFrame:frame]){ 50 | self.config = conf; 51 | [self privateInit]; 52 | } 53 | return self; 54 | } 55 | 56 | - (void)dealloc{ 57 | self.delegate = nil; 58 | [self removeGestureRecognizer:singleTapGesture]; 59 | [self removeGestureRecognizer:longPressGesture]; 60 | } 61 | 62 | - (void)privateInit{ 63 | active = NO; 64 | singleTapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(singleTap)]; 65 | longPressGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longTap:)]; 66 | //longPressGesture.cancelsTouchesInView = NO; 67 | singleTapGesture.cancelsTouchesInView = NO; 68 | [self addGestureRecognizer:singleTapGesture]; 69 | [self addGestureRecognizer:longPressGesture]; 70 | 71 | self.layer.masksToBounds = NO; 72 | } 73 | 74 | 75 | - (EMEmojiableBtnConfig*)config{ 76 | if(_config == nil){ 77 | return self.config = [[EMEmojiableBtnConfig alloc] init]; 78 | } 79 | return _config; 80 | } 81 | 82 | #pragma mark - UI 83 | - (void)activate{ 84 | if(active){ 85 | return; 86 | } 87 | if(_dataset == nil){ 88 | [NSException raise:@"Invalid _dataset value" format:@"_dataset can't be nil"]; 89 | return; 90 | } 91 | 92 | selectedItem = -1; 93 | active = YES; 94 | 95 | 96 | CGRect selectorViewFrame = [UIScreen mainScreen].bounds; 97 | origin = [self.superview convertPoint:self.frame.origin toView:nil]; 98 | menuDirection = [self getMenuDirection]; 99 | 100 | if (!CGPointEqualToPoint(origin,self.frame.origin)) { 101 | selectorViewFrame.origin.x -= origin.x; 102 | selectorViewFrame.origin.y -= origin.y; 103 | } 104 | 105 | selectorBgView = [[UIView alloc] initWithFrame:selectorViewFrame]; 106 | selectorBgView.backgroundColor = self.config.backgroundColor; 107 | [self.superview addSubview:selectorBgView]; 108 | 109 | CGFloat buttonWidth = ((CGFloat)(_dataset.count + 1) * self.config.spacing) +(self.config.size*(CGFloat)_dataset.count); 110 | CGFloat buttonHeight = self.config.size+(2*self.config.spacing); 111 | CGSize sizeBtn = CGSizeMake(buttonWidth,buttonHeight); 112 | 113 | 114 | CGRect optionsViewFrame = [self adjustFrameIfNeeded:CGRectMake(origin.x, origin.y - sizeBtn.height, sizeBtn.width, sizeBtn.height) leftMenuXOrigin:(origin.x + self.frame.size.width - sizeBtn.width) downMenuYOrigin:0.0]; 115 | 116 | optionsView = [[UIView alloc] initWithFrame:optionsViewFrame]; 117 | optionsView.alpha = self.config.optionsViewInitialAlpha; 118 | optionsView.layer.cornerRadius = optionsView.frame.size.height/2.0; 119 | optionsView.backgroundColor = self.config.optionsViewBackgroundColor; 120 | optionsView.layer.shadowColor = self.config.optionsViewShadowColor.CGColor; 121 | optionsView.layer.shadowOffset = self.config.optionsViewShadowOffset; 122 | optionsView.layer.shadowOpacity = self.config.optionsViewShadowOpacity; 123 | 124 | [selectorBgView addSubview:optionsView]; 125 | 126 | [UIView animateWithDuration:0.2 animations:^{ 127 | CGRect frame = self.optionsView.frame; 128 | frame.origin.y = self.origin.y - (self.config.s_options_selector + sizeBtn.height); 129 | self.optionsView.frame = optionsViewOriginalRect = frame; 130 | self.optionsView.alpha = 1.0; 131 | }]; 132 | 133 | for (int i = 0; i<_dataset.count;++i){ 134 | EMEmojiableOption *option = [_dataset objectAtIndex:i]; 135 | CGRect frame = CGRectMake(((CGFloat)(i+1)*self.config.spacing)+(self.config.size*(CGFloat)i),sizeBtn.height*1.2,10,10); 136 | CGPoint center = CGPointMake(((CGFloat)(i+1)*self.config.spacing)+(self.config.size*(CGFloat)i)+self.config.size/2.0,self.config.spacing+self.config.size/2.0); 137 | 138 | 139 | UIImageView *optionImageView = [[UIImageView alloc] initWithFrame: [self adjustFrameIfNeeded:frame leftMenuXOrigin:(optionsView.frame.size.width - frame.origin.x) downMenuYOrigin:0.0]]; 140 | CGPoint centerPoint = [self adjustPointIfNeeded:center leftMenuX:(optionsView.frame.size.width - center.x) downMenuY:0.0]; 141 | 142 | 143 | optionImageView.image = [UIImage imageNamed:option.imageName]; 144 | optionImageView.alpha = 0.6; 145 | [optionsView addSubview:optionImageView]; 146 | 147 | 148 | 149 | [UIView animateWithDuration:0.2 delay:0.05*(double)i options:UIViewAnimationOptionCurveEaseInOut animations:^{ 150 | CGRect optionImageViewFrame = optionImageView.frame; 151 | optionImageViewFrame.origin.y = self.config.spacing; 152 | optionImageViewFrame.size = CGSizeMake(self.config.size, self.config.size); 153 | optionImageView.frame = optionImageViewFrame; 154 | optionImageView.center = centerPoint; 155 | optionImageView.alpha = 1.0; 156 | } completion:nil]; 157 | } 158 | 159 | informationView = [[EMEmojiableInformationView alloc] initWithFrame:CGRectMake(0, origin.y, selectorViewFrame.size.width, self.frame.size.height) withConfig:self.config]; 160 | informationView.backgroundColor = self.config.informationViewBackgroundColor; 161 | [selectorBgView addSubview:informationView]; 162 | } 163 | 164 | - (void)deActivate:(int)optionIndex{ 165 | if (optionIndex < 0){ 166 | if(self.delegate && [self.delegate respondsToSelector:@selector(EMEmojiableBtnCanceledAction:)]){ 167 | [self.delegate EMEmojiableBtnCanceledAction:self]; 168 | } 169 | }else{ 170 | if(self.delegate && [self.delegate respondsToSelector:@selector(EMEmojiableBtn:selectedOption:)]){ 171 | [self.delegate EMEmojiableBtn:self selectedOption:selectedItem]; 172 | } 173 | } 174 | 175 | [optionsView.subviews enumerateObjectsUsingBlock:^(UIView *option, NSUInteger idx, BOOL *stop) { 176 | [UIView animateWithDuration:0.2 delay:0.05*(double)idx options:UIViewAnimationOptionCurveEaseInOut animations:^{ 177 | CGPoint center; 178 | CGRect optionFrame = option.frame; 179 | optionFrame.size = CGSizeMake(10.0,10.0); 180 | informationView.alpha = 0; 181 | option.alpha = 0.3; 182 | option.frame = optionFrame; 183 | if(optionIndex == idx){ 184 | center = CGPointMake(((CGFloat)idx+1.0*self.config.spacing)+(self.config.size*idx)+self.config.size/2,-self.optionsView.frame.size.height+self.config.size/2.0); 185 | option.center = [self adjustPointIfNeeded:center leftMenuX:(optionsView.frame.size.width - center.x) downMenuY:0.0]; 186 | 187 | }else{ 188 | center = CGPointMake(((CGFloat)idx+1.0*self.config.spacing)+(self.config.size*(CGFloat)idx)+self.config.size/2.0, self.optionsView.frame.size.height+self.config.size/2.0); 189 | option.center = [self adjustPointIfNeeded:center leftMenuX:(optionsView.frame.size.width - center.x) downMenuY:0.0]; 190 | } 191 | 192 | } completion:^(BOOL finished) { 193 | if (finished && idx == (_dataset.count/2)){ 194 | [UIView animateWithDuration:0.1 animations:^{ 195 | CGRect optionsViewFrame = optionsView.frame; 196 | optionsViewFrame.origin.y = origin.y - (self.config.size+(2*self.config.spacing)); 197 | optionsView.alpha = 0; 198 | optionsView.frame = optionsViewFrame; 199 | } completion:^(BOOL finished) { 200 | active = false; 201 | [selectorBgView removeFromSuperview]; 202 | }]; 203 | } 204 | }]; 205 | }]; 206 | } 207 | 208 | - (void)selectIndex:(int)index{ 209 | if (index < 0 || index > _dataset.count){ 210 | return; 211 | } 212 | 213 | selectedItem = index; 214 | [informationView activateInfo:NO]; 215 | 216 | [UIView animateWithDuration:0.3 animations:^{ 217 | CGFloat buttonWidth = (((CGFloat)_dataset.count-1*self.config.spacing)+(self.config.minSize*(CGFloat)_dataset.count-1)+self.config.maxSize); 218 | CGFloat buttonHeight = self.config.minSize+(2*self.config.spacing); 219 | CGSize sizeBtn = CGSizeMake(buttonWidth,buttonHeight); 220 | 221 | optionsView.frame = [self adjustFrameIfNeeded:CGRectMake(self.origin.x, self.origin.y - (self.config.s_options_selector+sizeBtn.height), sizeBtn.width, sizeBtn.height) leftMenuXOrigin:(self.origin.x + self.frame.size.width - sizeBtn.width) downMenuYOrigin:0.0]; 222 | optionsView.layer.cornerRadius = sizeBtn.height/2; 223 | 224 | __block CGFloat last = index != 0 ? self.config.spacing : 0; 225 | 226 | [optionsView.subviews enumerateObjectsUsingBlock:^(UIView *view, NSUInteger idx, BOOL *stop) { 227 | CGRect frame; 228 | CGPoint center; 229 | if(idx == index-1){ 230 | frame = CGRectMake(last,self.config.spacing,self.config.minSize,self.config.minSize); 231 | view.frame = [self adjustFrameIfNeeded:frame leftMenuXOrigin:(optionsView.frame.size.width - self.config.minSize - last) downMenuYOrigin:0.0]; 232 | center = CGPointMake(view.center.x, (self.config.minSize/2) + self.config.spacing); 233 | view.center = [self adjustPointIfNeeded:center leftMenuX:view.center.x downMenuY:0.0]; 234 | last += self.config.minSize; 235 | 236 | }else if(idx == index){ 237 | frame = CGRectMake(last, -(self.config.maxSize/2), self.config.maxSize, self.config.maxSize); 238 | view.frame = [self adjustFrameIfNeeded:frame leftMenuXOrigin:(optionsView.frame.size.width - self.config.maxSize - last) downMenuYOrigin:0.0]; 239 | last += self.config.maxSize; 240 | }else { 241 | frame = CGRectMake(last,self.config.spacing,self.config.minSize,self.config.minSize); 242 | view.frame = [self adjustFrameIfNeeded:frame leftMenuXOrigin:(optionsView.frame.size.width - self.config.minSize - last) downMenuYOrigin:0.0]; 243 | center = CGPointMake(view.center.x, (self.config.minSize/2) + self.config.spacing); 244 | view.center = [self adjustPointIfNeeded:center leftMenuX:view.center.x downMenuY:0.0]; 245 | last += self.config.minSize + self.config.spacing; 246 | } 247 | 248 | }]; 249 | }]; 250 | } 251 | 252 | - (CGRect)adjustFrameIfNeeded: (CGRect)frame leftMenuXOrigin:(CGFloat)x downMenuYOrigin:(CGFloat)y{ 253 | CGRect adjustedFrame; 254 | if (menuDirection == MenuDirectionUpRight){ 255 | adjustedFrame = frame; 256 | } else if (menuDirection == MenuDirectionUpLeft) { 257 | adjustedFrame = CGRectMake(x, frame.origin.y, frame.size.width, frame.size.height); 258 | } else if (menuDirection == MenuDirectionDownRight) { 259 | adjustedFrame = CGRectMake(frame.origin.x, y, frame.size.width, frame.size.height); 260 | } else if (menuDirection == MenuDirectionDownLeft) { 261 | adjustedFrame = CGRectMake(x, y, frame.size.width, frame.size.height); 262 | } 263 | 264 | return adjustedFrame; 265 | } 266 | 267 | - (CGPoint)adjustPointIfNeeded: (CGPoint)point leftMenuX:(CGFloat)x downMenuY:(CGFloat)y{ 268 | CGPoint adjustedPoint; 269 | if (menuDirection == MenuDirectionUpRight){ 270 | adjustedPoint = point; 271 | } else if (menuDirection == MenuDirectionUpLeft) { 272 | adjustedPoint = CGPointMake(x, point.y); 273 | } else if (menuDirection == MenuDirectionDownRight) { 274 | adjustedPoint = CGPointMake(point.x, y); 275 | } else if (menuDirection == MenuDirectionDownLeft) { 276 | adjustedPoint = CGPointMake(x, y); 277 | } 278 | 279 | return adjustedPoint; 280 | } 281 | 282 | - (MenuDirection)getMenuDirection{ 283 | CGFloat center = self.superview.center.x; 284 | CGFloat top = 0; 285 | 286 | if (origin.x <= center && origin.y > top) { 287 | return MenuDirectionUpRight; 288 | } 289 | else if (origin.x > center && origin.y > top) { 290 | return MenuDirectionUpLeft; 291 | } 292 | else if (origin.x <= center && origin.y <= top) { 293 | return MenuDirectionDownRight; 294 | } 295 | else { 296 | return MenuDirectionDownLeft; 297 | } 298 | } 299 | 300 | - (void)looseFocus{ 301 | selectedItem = -1; 302 | [informationView activateInfo:YES]; 303 | [UIView animateWithDuration:0.3 animations:^{ 304 | CGFloat buttonWidth = (((CGFloat)_dataset.count+1*self.config.spacing)+(self.config.size*(CGFloat)_dataset.count)); 305 | CGFloat buttonHeight = self.config.size+(2.0*self.config.spacing); 306 | CGSize sizeBtn = CGSizeMake(buttonWidth,buttonHeight); 307 | optionsView.frame = optionsViewOriginalRect; 308 | optionsView.layer.cornerRadius = sizeBtn.height/2.0; 309 | 310 | [optionsView.subviews enumerateObjectsUsingBlock:^(UIView *view, NSUInteger idx, BOOL *stop) { 311 | CGRect frame = CGRectMake(((CGFloat)(idx+1)*self.config.spacing)+(self.config.size*(CGFloat)idx),self.config.spacing,self.config.size,self.config.size); 312 | view.frame = [self adjustFrameIfNeeded:frame leftMenuXOrigin:(optionsView.frame.size.width - self.config.size - frame.origin.x) downMenuYOrigin:0.0]; 313 | }]; 314 | }]; 315 | } 316 | 317 | #pragma mark - Gestures 318 | - (void)singleTap{ 319 | if(self.delegate && [self.delegate respondsToSelector:@selector(EMEmojiableBtnSingleTap:)]){ 320 | [self.delegate EMEmojiableBtnSingleTap:self]; 321 | } 322 | } 323 | 324 | - (void)longTap:(UIGestureRecognizer*)gesture{ 325 | if (gesture.state == UIGestureRecognizerStateBegan){ 326 | [self activate]; 327 | } else if (gesture.state == UIGestureRecognizerStateChanged){ 328 | CGPoint point = [gesture locationInView:selectorBgView]; 329 | 330 | CGFloat t = optionsView.frame.size.width/(CGFloat)_dataset.count; 331 | if (point.y < (CGRectGetMinY(optionsView.frame) - 50) || point.y > (CGRectGetMaxY(informationView.frame) + 30)){ 332 | [self looseFocus]; 333 | }else{ 334 | if ((menuDirection == MenuDirectionUpRight) && ((point.x-origin.x) > 0 && point.x < (CGRectGetMaxX(optionsView.frame)-30))) { 335 | int selected = round((point.x-origin.x)/t); 336 | [self selectIndex:selected]; 337 | }else if ((menuDirection == MenuDirectionUpLeft) && ((origin.x + self.frame.size.width - point.x) > 0 && point.x > (CGRectGetMinX(optionsView.frame) + 30))) { 338 | int selected = round((origin.x + self.frame.size.width - point.x)/t); 339 | [self selectIndex:selected]; 340 | }else{ 341 | [self looseFocus]; 342 | } 343 | } 344 | } 345 | else if (gesture.state == UIGestureRecognizerStateEnded){ 346 | CGPoint point = [gesture locationInView:selectorBgView]; 347 | if (((menuDirection == MenuDirectionUpRight) && (point.x > 0 && point.x < CGRectGetMaxX(optionsView.frame))) || 348 | ((menuDirection == MenuDirectionUpLeft) && (point.x < selectorBgView.frame.size.width && point.x > CGRectGetMinX(optionsView.frame)))) { 349 | [self deActivate:selectedItem]; 350 | }else{ 351 | [self deActivate:-1]; 352 | } 353 | } 354 | } 355 | 356 | @end -------------------------------------------------------------------------------- /Example/EMEmojiableBtn.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00E9454BC3F38DD34B591CFF /* libPods-EMEmojiableBtn_Example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = E25E2D80F1D8623BC646E602 /* libPods-EMEmojiableBtn_Example.a */; }; 11 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 12 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 13 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 14 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; 15 | 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 16 | 6003F59E195388D20070C39A /* EMAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* EMAppDelegate.m */; }; 17 | 6003F5A7195388D20070C39A /* EMViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* EMViewController.m */; }; 18 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; 19 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; }; 20 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 21 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 22 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; }; 23 | 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; }; 24 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; }; 25 | 8BBB7D451CAFD92D00AAB1BF /* img_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D331CAFD92D00AAB1BF /* img_1.png */; }; 26 | 8BBB7D461CAFD92D00AAB1BF /* img_1@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D341CAFD92D00AAB1BF /* img_1@2x.png */; }; 27 | 8BBB7D471CAFD92D00AAB1BF /* img_1@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D351CAFD92D00AAB1BF /* img_1@3x.png */; }; 28 | 8BBB7D481CAFD92D00AAB1BF /* img_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D361CAFD92D00AAB1BF /* img_2.png */; }; 29 | 8BBB7D491CAFD92D00AAB1BF /* img_2@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D371CAFD92D00AAB1BF /* img_2@2x.png */; }; 30 | 8BBB7D4A1CAFD92D00AAB1BF /* img_2@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D381CAFD92D00AAB1BF /* img_2@3x.png */; }; 31 | 8BBB7D4B1CAFD92D00AAB1BF /* img_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D391CAFD92D00AAB1BF /* img_3.png */; }; 32 | 8BBB7D4C1CAFD92D00AAB1BF /* img_3@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D3A1CAFD92D00AAB1BF /* img_3@2x.png */; }; 33 | 8BBB7D4D1CAFD92D00AAB1BF /* img_3@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D3B1CAFD92D00AAB1BF /* img_3@3x.png */; }; 34 | 8BBB7D4E1CAFD92D00AAB1BF /* img_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D3C1CAFD92D00AAB1BF /* img_4.png */; }; 35 | 8BBB7D4F1CAFD92D00AAB1BF /* img_4@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D3D1CAFD92D00AAB1BF /* img_4@2x.png */; }; 36 | 8BBB7D501CAFD92D00AAB1BF /* img_4@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D3E1CAFD92D00AAB1BF /* img_4@3x.png */; }; 37 | 8BBB7D511CAFD92D00AAB1BF /* img_5.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D3F1CAFD92D00AAB1BF /* img_5.png */; }; 38 | 8BBB7D521CAFD92D00AAB1BF /* img_5@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D401CAFD92D00AAB1BF /* img_5@2x.png */; }; 39 | 8BBB7D531CAFD92D00AAB1BF /* img_5@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D411CAFD92D00AAB1BF /* img_5@3x.png */; }; 40 | 8BBB7D541CAFD92D00AAB1BF /* img_6.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D421CAFD92D00AAB1BF /* img_6.png */; }; 41 | 8BBB7D551CAFD92D00AAB1BF /* img_6@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D431CAFD92D00AAB1BF /* img_6@2x.png */; }; 42 | 8BBB7D561CAFD92D00AAB1BF /* img_6@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8BBB7D441CAFD92D00AAB1BF /* img_6@3x.png */; }; 43 | 8BEA5AD41CAF098100529E8A /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 8BEA5AD31CAF098100529E8A /* Launch Screen.storyboard */; }; 44 | FC07069A44B4E9E4093530AA /* libPods-EMEmojiableBtn_Tests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F6028B2675C3E80979A4486A /* libPods-EMEmojiableBtn_Tests.a */; }; 45 | /* End PBXBuildFile section */ 46 | 47 | /* Begin PBXContainerItemProxy section */ 48 | 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { 49 | isa = PBXContainerItemProxy; 50 | containerPortal = 6003F582195388D10070C39A /* Project object */; 51 | proxyType = 1; 52 | remoteGlobalIDString = 6003F589195388D20070C39A; 53 | remoteInfo = EMEmojiableBtn; 54 | }; 55 | /* End PBXContainerItemProxy section */ 56 | 57 | /* Begin PBXFileReference section */ 58 | 300630C3619F156BEF5ED2A5 /* Pods-EMEmojiableBtn_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-EMEmojiableBtn_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-EMEmojiableBtn_Example/Pods-EMEmojiableBtn_Example.debug.xcconfig"; sourceTree = ""; }; 59 | 6003F58A195388D20070C39A /* EMEmojiableBtn_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = EMEmojiableBtn_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 60 | 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 61 | 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 62 | 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 63 | 6003F595195388D20070C39A /* EMEmojiableBtn-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "EMEmojiableBtn-Info.plist"; sourceTree = ""; }; 64 | 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 65 | 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 66 | 6003F59B195388D20070C39A /* EMEmojiableBtn-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "EMEmojiableBtn-Prefix.pch"; sourceTree = ""; }; 67 | 6003F59C195388D20070C39A /* EMAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EMAppDelegate.h; sourceTree = ""; }; 68 | 6003F59D195388D20070C39A /* EMAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EMAppDelegate.m; sourceTree = ""; }; 69 | 6003F5A5195388D20070C39A /* EMViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EMViewController.h; sourceTree = ""; }; 70 | 6003F5A6195388D20070C39A /* EMViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EMViewController.m; sourceTree = ""; }; 71 | 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 72 | 6003F5AE195388D20070C39A /* EMEmojiableBtn_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = EMEmojiableBtn_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 73 | 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 74 | 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; 75 | 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 76 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; 77 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; 78 | 68D1AF52A5273131EDCEBA7B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 79 | 8127D5214F4A5D37B62B83A1 /* Pods-EMEmojiableBtn_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-EMEmojiableBtn_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-EMEmojiableBtn_Tests/Pods-EMEmojiableBtn_Tests.debug.xcconfig"; sourceTree = ""; }; 80 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = ""; }; 81 | 8BBB7D331CAFD92D00AAB1BF /* img_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = img_1.png; sourceTree = ""; }; 82 | 8BBB7D341CAFD92D00AAB1BF /* img_1@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "img_1@2x.png"; sourceTree = ""; }; 83 | 8BBB7D351CAFD92D00AAB1BF /* img_1@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "img_1@3x.png"; sourceTree = ""; }; 84 | 8BBB7D361CAFD92D00AAB1BF /* img_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = img_2.png; sourceTree = ""; }; 85 | 8BBB7D371CAFD92D00AAB1BF /* img_2@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "img_2@2x.png"; sourceTree = ""; }; 86 | 8BBB7D381CAFD92D00AAB1BF /* img_2@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "img_2@3x.png"; sourceTree = ""; }; 87 | 8BBB7D391CAFD92D00AAB1BF /* img_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = img_3.png; sourceTree = ""; }; 88 | 8BBB7D3A1CAFD92D00AAB1BF /* img_3@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "img_3@2x.png"; sourceTree = ""; }; 89 | 8BBB7D3B1CAFD92D00AAB1BF /* img_3@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "img_3@3x.png"; sourceTree = ""; }; 90 | 8BBB7D3C1CAFD92D00AAB1BF /* img_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = img_4.png; sourceTree = ""; }; 91 | 8BBB7D3D1CAFD92D00AAB1BF /* img_4@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "img_4@2x.png"; sourceTree = ""; }; 92 | 8BBB7D3E1CAFD92D00AAB1BF /* img_4@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "img_4@3x.png"; sourceTree = ""; }; 93 | 8BBB7D3F1CAFD92D00AAB1BF /* img_5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = img_5.png; sourceTree = ""; }; 94 | 8BBB7D401CAFD92D00AAB1BF /* img_5@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "img_5@2x.png"; sourceTree = ""; }; 95 | 8BBB7D411CAFD92D00AAB1BF /* img_5@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "img_5@3x.png"; sourceTree = ""; }; 96 | 8BBB7D421CAFD92D00AAB1BF /* img_6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = img_6.png; sourceTree = ""; }; 97 | 8BBB7D431CAFD92D00AAB1BF /* img_6@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "img_6@2x.png"; sourceTree = ""; }; 98 | 8BBB7D441CAFD92D00AAB1BF /* img_6@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "img_6@3x.png"; sourceTree = ""; }; 99 | 8BEA5AD31CAF098100529E8A /* Launch Screen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = "Launch Screen.storyboard"; sourceTree = ""; }; 100 | 8F831A2D6582B6F5DEDD4752 /* Pods-EMEmojiableBtn_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-EMEmojiableBtn_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-EMEmojiableBtn_Tests/Pods-EMEmojiableBtn_Tests.release.xcconfig"; sourceTree = ""; }; 101 | BD941E969616ECBE8FBE77F9 /* EMEmojiableBtn.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = EMEmojiableBtn.podspec; path = ../EMEmojiableBtn.podspec; sourceTree = ""; }; 102 | CD35F3497614D6C0A46A92EB /* Pods-EMEmojiableBtn_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-EMEmojiableBtn_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-EMEmojiableBtn_Example/Pods-EMEmojiableBtn_Example.release.xcconfig"; sourceTree = ""; }; 103 | E25E2D80F1D8623BC646E602 /* libPods-EMEmojiableBtn_Example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-EMEmojiableBtn_Example.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 104 | F6028B2675C3E80979A4486A /* libPods-EMEmojiableBtn_Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-EMEmojiableBtn_Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 105 | FAFE8FEE2ECCA197CD25130A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 106 | /* End PBXFileReference section */ 107 | 108 | /* Begin PBXFrameworksBuildPhase section */ 109 | 6003F587195388D20070C39A /* Frameworks */ = { 110 | isa = PBXFrameworksBuildPhase; 111 | buildActionMask = 2147483647; 112 | files = ( 113 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 114 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 115 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 116 | 00E9454BC3F38DD34B591CFF /* libPods-EMEmojiableBtn_Example.a in Frameworks */, 117 | ); 118 | runOnlyForDeploymentPostprocessing = 0; 119 | }; 120 | 6003F5AB195388D20070C39A /* Frameworks */ = { 121 | isa = PBXFrameworksBuildPhase; 122 | buildActionMask = 2147483647; 123 | files = ( 124 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, 125 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, 126 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, 127 | FC07069A44B4E9E4093530AA /* libPods-EMEmojiableBtn_Tests.a in Frameworks */, 128 | ); 129 | runOnlyForDeploymentPostprocessing = 0; 130 | }; 131 | /* End PBXFrameworksBuildPhase section */ 132 | 133 | /* Begin PBXGroup section */ 134 | 6003F581195388D10070C39A = { 135 | isa = PBXGroup; 136 | children = ( 137 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, 138 | 6003F593195388D20070C39A /* Example for EMEmojiableBtn */, 139 | 6003F5B5195388D20070C39A /* Tests */, 140 | 6003F58C195388D20070C39A /* Frameworks */, 141 | 6003F58B195388D20070C39A /* Products */, 142 | DB5FA0C751838C70B72D179D /* Pods */, 143 | ); 144 | sourceTree = ""; 145 | }; 146 | 6003F58B195388D20070C39A /* Products */ = { 147 | isa = PBXGroup; 148 | children = ( 149 | 6003F58A195388D20070C39A /* EMEmojiableBtn_Example.app */, 150 | 6003F5AE195388D20070C39A /* EMEmojiableBtn_Tests.xctest */, 151 | ); 152 | name = Products; 153 | sourceTree = ""; 154 | }; 155 | 6003F58C195388D20070C39A /* Frameworks */ = { 156 | isa = PBXGroup; 157 | children = ( 158 | 6003F58D195388D20070C39A /* Foundation.framework */, 159 | 6003F58F195388D20070C39A /* CoreGraphics.framework */, 160 | 6003F591195388D20070C39A /* UIKit.framework */, 161 | 6003F5AF195388D20070C39A /* XCTest.framework */, 162 | E25E2D80F1D8623BC646E602 /* libPods-EMEmojiableBtn_Example.a */, 163 | F6028B2675C3E80979A4486A /* libPods-EMEmojiableBtn_Tests.a */, 164 | ); 165 | name = Frameworks; 166 | sourceTree = ""; 167 | }; 168 | 6003F593195388D20070C39A /* Example for EMEmojiableBtn */ = { 169 | isa = PBXGroup; 170 | children = ( 171 | 8BBB7D321CAFD91D00AAB1BF /* Assets */, 172 | 6003F59C195388D20070C39A /* EMAppDelegate.h */, 173 | 6003F59D195388D20070C39A /* EMAppDelegate.m */, 174 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */, 175 | 6003F5A5195388D20070C39A /* EMViewController.h */, 176 | 6003F5A6195388D20070C39A /* EMViewController.m */, 177 | 6003F5A8195388D20070C39A /* Images.xcassets */, 178 | 6003F594195388D20070C39A /* Supporting Files */, 179 | 8BEA5AD31CAF098100529E8A /* Launch Screen.storyboard */, 180 | ); 181 | name = "Example for EMEmojiableBtn"; 182 | path = EMEmojiableBtn; 183 | sourceTree = ""; 184 | }; 185 | 6003F594195388D20070C39A /* Supporting Files */ = { 186 | isa = PBXGroup; 187 | children = ( 188 | 6003F595195388D20070C39A /* EMEmojiableBtn-Info.plist */, 189 | 6003F596195388D20070C39A /* InfoPlist.strings */, 190 | 6003F599195388D20070C39A /* main.m */, 191 | 6003F59B195388D20070C39A /* EMEmojiableBtn-Prefix.pch */, 192 | ); 193 | name = "Supporting Files"; 194 | sourceTree = ""; 195 | }; 196 | 6003F5B5195388D20070C39A /* Tests */ = { 197 | isa = PBXGroup; 198 | children = ( 199 | 6003F5BB195388D20070C39A /* Tests.m */, 200 | 6003F5B6195388D20070C39A /* Supporting Files */, 201 | ); 202 | path = Tests; 203 | sourceTree = ""; 204 | }; 205 | 6003F5B6195388D20070C39A /* Supporting Files */ = { 206 | isa = PBXGroup; 207 | children = ( 208 | 6003F5B7195388D20070C39A /* Tests-Info.plist */, 209 | 6003F5B8195388D20070C39A /* InfoPlist.strings */, 210 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, 211 | ); 212 | name = "Supporting Files"; 213 | sourceTree = ""; 214 | }; 215 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { 216 | isa = PBXGroup; 217 | children = ( 218 | BD941E969616ECBE8FBE77F9 /* EMEmojiableBtn.podspec */, 219 | 68D1AF52A5273131EDCEBA7B /* README.md */, 220 | FAFE8FEE2ECCA197CD25130A /* LICENSE */, 221 | ); 222 | name = "Podspec Metadata"; 223 | sourceTree = ""; 224 | }; 225 | 8BBB7D321CAFD91D00AAB1BF /* Assets */ = { 226 | isa = PBXGroup; 227 | children = ( 228 | 8BBB7D331CAFD92D00AAB1BF /* img_1.png */, 229 | 8BBB7D341CAFD92D00AAB1BF /* img_1@2x.png */, 230 | 8BBB7D351CAFD92D00AAB1BF /* img_1@3x.png */, 231 | 8BBB7D361CAFD92D00AAB1BF /* img_2.png */, 232 | 8BBB7D371CAFD92D00AAB1BF /* img_2@2x.png */, 233 | 8BBB7D381CAFD92D00AAB1BF /* img_2@3x.png */, 234 | 8BBB7D391CAFD92D00AAB1BF /* img_3.png */, 235 | 8BBB7D3A1CAFD92D00AAB1BF /* img_3@2x.png */, 236 | 8BBB7D3B1CAFD92D00AAB1BF /* img_3@3x.png */, 237 | 8BBB7D3C1CAFD92D00AAB1BF /* img_4.png */, 238 | 8BBB7D3D1CAFD92D00AAB1BF /* img_4@2x.png */, 239 | 8BBB7D3E1CAFD92D00AAB1BF /* img_4@3x.png */, 240 | 8BBB7D3F1CAFD92D00AAB1BF /* img_5.png */, 241 | 8BBB7D401CAFD92D00AAB1BF /* img_5@2x.png */, 242 | 8BBB7D411CAFD92D00AAB1BF /* img_5@3x.png */, 243 | 8BBB7D421CAFD92D00AAB1BF /* img_6.png */, 244 | 8BBB7D431CAFD92D00AAB1BF /* img_6@2x.png */, 245 | 8BBB7D441CAFD92D00AAB1BF /* img_6@3x.png */, 246 | ); 247 | path = Assets; 248 | sourceTree = ""; 249 | }; 250 | DB5FA0C751838C70B72D179D /* Pods */ = { 251 | isa = PBXGroup; 252 | children = ( 253 | 300630C3619F156BEF5ED2A5 /* Pods-EMEmojiableBtn_Example.debug.xcconfig */, 254 | CD35F3497614D6C0A46A92EB /* Pods-EMEmojiableBtn_Example.release.xcconfig */, 255 | 8127D5214F4A5D37B62B83A1 /* Pods-EMEmojiableBtn_Tests.debug.xcconfig */, 256 | 8F831A2D6582B6F5DEDD4752 /* Pods-EMEmojiableBtn_Tests.release.xcconfig */, 257 | ); 258 | name = Pods; 259 | sourceTree = ""; 260 | }; 261 | /* End PBXGroup section */ 262 | 263 | /* Begin PBXNativeTarget section */ 264 | 6003F589195388D20070C39A /* EMEmojiableBtn_Example */ = { 265 | isa = PBXNativeTarget; 266 | buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "EMEmojiableBtn_Example" */; 267 | buildPhases = ( 268 | 92BFB550A6403BBB866FA4F5 /* 📦 Check Pods Manifest.lock */, 269 | 6003F586195388D20070C39A /* Sources */, 270 | 6003F587195388D20070C39A /* Frameworks */, 271 | 6003F588195388D20070C39A /* Resources */, 272 | AC86A9BD9D30A4FE10A8C33E /* 📦 Embed Pods Frameworks */, 273 | 62314ADC26DEFED930CB6DCC /* 📦 Copy Pods Resources */, 274 | ); 275 | buildRules = ( 276 | ); 277 | dependencies = ( 278 | ); 279 | name = EMEmojiableBtn_Example; 280 | productName = EMEmojiableBtn; 281 | productReference = 6003F58A195388D20070C39A /* EMEmojiableBtn_Example.app */; 282 | productType = "com.apple.product-type.application"; 283 | }; 284 | 6003F5AD195388D20070C39A /* EMEmojiableBtn_Tests */ = { 285 | isa = PBXNativeTarget; 286 | buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "EMEmojiableBtn_Tests" */; 287 | buildPhases = ( 288 | 2308D119BE18005DF9DB0D62 /* 📦 Check Pods Manifest.lock */, 289 | 6003F5AA195388D20070C39A /* Sources */, 290 | 6003F5AB195388D20070C39A /* Frameworks */, 291 | 6003F5AC195388D20070C39A /* Resources */, 292 | 8CC9C9E08DF263A3DEAAFF18 /* 📦 Embed Pods Frameworks */, 293 | BAF928D6CC5813025A997CB2 /* 📦 Copy Pods Resources */, 294 | ); 295 | buildRules = ( 296 | ); 297 | dependencies = ( 298 | 6003F5B4195388D20070C39A /* PBXTargetDependency */, 299 | ); 300 | name = EMEmojiableBtn_Tests; 301 | productName = EMEmojiableBtnTests; 302 | productReference = 6003F5AE195388D20070C39A /* EMEmojiableBtn_Tests.xctest */; 303 | productType = "com.apple.product-type.bundle.unit-test"; 304 | }; 305 | /* End PBXNativeTarget section */ 306 | 307 | /* Begin PBXProject section */ 308 | 6003F582195388D10070C39A /* Project object */ = { 309 | isa = PBXProject; 310 | attributes = { 311 | CLASSPREFIX = EM; 312 | LastUpgradeCheck = 0720; 313 | ORGANIZATIONNAME = Erekle; 314 | TargetAttributes = { 315 | 6003F5AD195388D20070C39A = { 316 | TestTargetID = 6003F589195388D20070C39A; 317 | }; 318 | }; 319 | }; 320 | buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "EMEmojiableBtn" */; 321 | compatibilityVersion = "Xcode 3.2"; 322 | developmentRegion = English; 323 | hasScannedForEncodings = 0; 324 | knownRegions = ( 325 | en, 326 | Base, 327 | ); 328 | mainGroup = 6003F581195388D10070C39A; 329 | productRefGroup = 6003F58B195388D20070C39A /* Products */; 330 | projectDirPath = ""; 331 | projectRoot = ""; 332 | targets = ( 333 | 6003F589195388D20070C39A /* EMEmojiableBtn_Example */, 334 | 6003F5AD195388D20070C39A /* EMEmojiableBtn_Tests */, 335 | ); 336 | }; 337 | /* End PBXProject section */ 338 | 339 | /* Begin PBXResourcesBuildPhase section */ 340 | 6003F588195388D20070C39A /* Resources */ = { 341 | isa = PBXResourcesBuildPhase; 342 | buildActionMask = 2147483647; 343 | files = ( 344 | 8BBB7D461CAFD92D00AAB1BF /* img_1@2x.png in Resources */, 345 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */, 346 | 8BBB7D521CAFD92D00AAB1BF /* img_5@2x.png in Resources */, 347 | 8BBB7D4F1CAFD92D00AAB1BF /* img_4@2x.png in Resources */, 348 | 8BBB7D511CAFD92D00AAB1BF /* img_5.png in Resources */, 349 | 8BBB7D4A1CAFD92D00AAB1BF /* img_2@3x.png in Resources */, 350 | 8BBB7D491CAFD92D00AAB1BF /* img_2@2x.png in Resources */, 351 | 8BBB7D551CAFD92D00AAB1BF /* img_6@2x.png in Resources */, 352 | 8BBB7D561CAFD92D00AAB1BF /* img_6@3x.png in Resources */, 353 | 8BBB7D481CAFD92D00AAB1BF /* img_2.png in Resources */, 354 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 355 | 8BEA5AD41CAF098100529E8A /* Launch Screen.storyboard in Resources */, 356 | 8BBB7D451CAFD92D00AAB1BF /* img_1.png in Resources */, 357 | 8BBB7D4C1CAFD92D00AAB1BF /* img_3@2x.png in Resources */, 358 | 8BBB7D501CAFD92D00AAB1BF /* img_4@3x.png in Resources */, 359 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, 360 | 8BBB7D531CAFD92D00AAB1BF /* img_5@3x.png in Resources */, 361 | 8BBB7D471CAFD92D00AAB1BF /* img_1@3x.png in Resources */, 362 | 8BBB7D4B1CAFD92D00AAB1BF /* img_3.png in Resources */, 363 | 8BBB7D4E1CAFD92D00AAB1BF /* img_4.png in Resources */, 364 | 8BBB7D541CAFD92D00AAB1BF /* img_6.png in Resources */, 365 | 8BBB7D4D1CAFD92D00AAB1BF /* img_3@3x.png in Resources */, 366 | ); 367 | runOnlyForDeploymentPostprocessing = 0; 368 | }; 369 | 6003F5AC195388D20070C39A /* Resources */ = { 370 | isa = PBXResourcesBuildPhase; 371 | buildActionMask = 2147483647; 372 | files = ( 373 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, 374 | ); 375 | runOnlyForDeploymentPostprocessing = 0; 376 | }; 377 | /* End PBXResourcesBuildPhase section */ 378 | 379 | /* Begin PBXShellScriptBuildPhase section */ 380 | 2308D119BE18005DF9DB0D62 /* 📦 Check Pods Manifest.lock */ = { 381 | isa = PBXShellScriptBuildPhase; 382 | buildActionMask = 2147483647; 383 | files = ( 384 | ); 385 | inputPaths = ( 386 | ); 387 | name = "📦 Check Pods Manifest.lock"; 388 | outputPaths = ( 389 | ); 390 | runOnlyForDeploymentPostprocessing = 0; 391 | shellPath = /bin/sh; 392 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 393 | showEnvVarsInLog = 0; 394 | }; 395 | 62314ADC26DEFED930CB6DCC /* 📦 Copy Pods Resources */ = { 396 | isa = PBXShellScriptBuildPhase; 397 | buildActionMask = 8; 398 | files = ( 399 | ); 400 | inputPaths = ( 401 | ); 402 | name = "📦 Copy Pods Resources"; 403 | outputPaths = ( 404 | ); 405 | runOnlyForDeploymentPostprocessing = 1; 406 | shellPath = /bin/sh; 407 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-EMEmojiableBtn_Example/Pods-EMEmojiableBtn_Example-resources.sh\"\n"; 408 | showEnvVarsInLog = 0; 409 | }; 410 | 8CC9C9E08DF263A3DEAAFF18 /* 📦 Embed Pods Frameworks */ = { 411 | isa = PBXShellScriptBuildPhase; 412 | buildActionMask = 2147483647; 413 | files = ( 414 | ); 415 | inputPaths = ( 416 | ); 417 | name = "📦 Embed Pods Frameworks"; 418 | outputPaths = ( 419 | ); 420 | runOnlyForDeploymentPostprocessing = 0; 421 | shellPath = /bin/sh; 422 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-EMEmojiableBtn_Tests/Pods-EMEmojiableBtn_Tests-frameworks.sh\"\n"; 423 | showEnvVarsInLog = 0; 424 | }; 425 | 92BFB550A6403BBB866FA4F5 /* 📦 Check Pods Manifest.lock */ = { 426 | isa = PBXShellScriptBuildPhase; 427 | buildActionMask = 8; 428 | files = ( 429 | ); 430 | inputPaths = ( 431 | ); 432 | name = "📦 Check Pods Manifest.lock"; 433 | outputPaths = ( 434 | ); 435 | runOnlyForDeploymentPostprocessing = 1; 436 | shellPath = /bin/sh; 437 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; 438 | showEnvVarsInLog = 0; 439 | }; 440 | AC86A9BD9D30A4FE10A8C33E /* 📦 Embed Pods Frameworks */ = { 441 | isa = PBXShellScriptBuildPhase; 442 | buildActionMask = 2147483647; 443 | files = ( 444 | ); 445 | inputPaths = ( 446 | ); 447 | name = "📦 Embed Pods Frameworks"; 448 | outputPaths = ( 449 | ); 450 | runOnlyForDeploymentPostprocessing = 0; 451 | shellPath = /bin/sh; 452 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-EMEmojiableBtn_Example/Pods-EMEmojiableBtn_Example-frameworks.sh\"\n"; 453 | showEnvVarsInLog = 0; 454 | }; 455 | BAF928D6CC5813025A997CB2 /* 📦 Copy Pods Resources */ = { 456 | isa = PBXShellScriptBuildPhase; 457 | buildActionMask = 2147483647; 458 | files = ( 459 | ); 460 | inputPaths = ( 461 | ); 462 | name = "📦 Copy Pods Resources"; 463 | outputPaths = ( 464 | ); 465 | runOnlyForDeploymentPostprocessing = 0; 466 | shellPath = /bin/sh; 467 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-EMEmojiableBtn_Tests/Pods-EMEmojiableBtn_Tests-resources.sh\"\n"; 468 | showEnvVarsInLog = 0; 469 | }; 470 | /* End PBXShellScriptBuildPhase section */ 471 | 472 | /* Begin PBXSourcesBuildPhase section */ 473 | 6003F586195388D20070C39A /* Sources */ = { 474 | isa = PBXSourcesBuildPhase; 475 | buildActionMask = 2147483647; 476 | files = ( 477 | 6003F59E195388D20070C39A /* EMAppDelegate.m in Sources */, 478 | 6003F5A7195388D20070C39A /* EMViewController.m in Sources */, 479 | 6003F59A195388D20070C39A /* main.m in Sources */, 480 | ); 481 | runOnlyForDeploymentPostprocessing = 0; 482 | }; 483 | 6003F5AA195388D20070C39A /* Sources */ = { 484 | isa = PBXSourcesBuildPhase; 485 | buildActionMask = 2147483647; 486 | files = ( 487 | 6003F5BC195388D20070C39A /* Tests.m in Sources */, 488 | ); 489 | runOnlyForDeploymentPostprocessing = 0; 490 | }; 491 | /* End PBXSourcesBuildPhase section */ 492 | 493 | /* Begin PBXTargetDependency section */ 494 | 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { 495 | isa = PBXTargetDependency; 496 | target = 6003F589195388D20070C39A /* EMEmojiableBtn_Example */; 497 | targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; 498 | }; 499 | /* End PBXTargetDependency section */ 500 | 501 | /* Begin PBXVariantGroup section */ 502 | 6003F596195388D20070C39A /* InfoPlist.strings */ = { 503 | isa = PBXVariantGroup; 504 | children = ( 505 | 6003F597195388D20070C39A /* en */, 506 | ); 507 | name = InfoPlist.strings; 508 | sourceTree = ""; 509 | }; 510 | 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { 511 | isa = PBXVariantGroup; 512 | children = ( 513 | 6003F5B9195388D20070C39A /* en */, 514 | ); 515 | name = InfoPlist.strings; 516 | sourceTree = ""; 517 | }; 518 | /* End PBXVariantGroup section */ 519 | 520 | /* Begin XCBuildConfiguration section */ 521 | 6003F5BD195388D20070C39A /* Debug */ = { 522 | isa = XCBuildConfiguration; 523 | buildSettings = { 524 | ALWAYS_SEARCH_USER_PATHS = NO; 525 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 526 | CLANG_CXX_LIBRARY = "libc++"; 527 | CLANG_ENABLE_MODULES = YES; 528 | CLANG_ENABLE_OBJC_ARC = YES; 529 | CLANG_WARN_BOOL_CONVERSION = YES; 530 | CLANG_WARN_CONSTANT_CONVERSION = YES; 531 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 532 | CLANG_WARN_EMPTY_BODY = YES; 533 | CLANG_WARN_ENUM_CONVERSION = YES; 534 | CLANG_WARN_INT_CONVERSION = YES; 535 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 536 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 537 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 538 | COPY_PHASE_STRIP = NO; 539 | ENABLE_TESTABILITY = YES; 540 | GCC_C_LANGUAGE_STANDARD = gnu99; 541 | GCC_DYNAMIC_NO_PIC = NO; 542 | GCC_OPTIMIZATION_LEVEL = 0; 543 | GCC_PREPROCESSOR_DEFINITIONS = ( 544 | "DEBUG=1", 545 | "$(inherited)", 546 | ); 547 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 548 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 549 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 550 | GCC_WARN_UNDECLARED_SELECTOR = YES; 551 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 552 | GCC_WARN_UNUSED_FUNCTION = YES; 553 | GCC_WARN_UNUSED_VARIABLE = YES; 554 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 555 | ONLY_ACTIVE_ARCH = YES; 556 | SDKROOT = iphoneos; 557 | TARGETED_DEVICE_FAMILY = "1,2"; 558 | }; 559 | name = Debug; 560 | }; 561 | 6003F5BE195388D20070C39A /* Release */ = { 562 | isa = XCBuildConfiguration; 563 | buildSettings = { 564 | ALWAYS_SEARCH_USER_PATHS = NO; 565 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 566 | CLANG_CXX_LIBRARY = "libc++"; 567 | CLANG_ENABLE_MODULES = YES; 568 | CLANG_ENABLE_OBJC_ARC = YES; 569 | CLANG_WARN_BOOL_CONVERSION = YES; 570 | CLANG_WARN_CONSTANT_CONVERSION = YES; 571 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 572 | CLANG_WARN_EMPTY_BODY = YES; 573 | CLANG_WARN_ENUM_CONVERSION = YES; 574 | CLANG_WARN_INT_CONVERSION = YES; 575 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 576 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 577 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 578 | COPY_PHASE_STRIP = YES; 579 | ENABLE_NS_ASSERTIONS = NO; 580 | GCC_C_LANGUAGE_STANDARD = gnu99; 581 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 582 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 583 | GCC_WARN_UNDECLARED_SELECTOR = YES; 584 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 585 | GCC_WARN_UNUSED_FUNCTION = YES; 586 | GCC_WARN_UNUSED_VARIABLE = YES; 587 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 588 | SDKROOT = iphoneos; 589 | TARGETED_DEVICE_FAMILY = "1,2"; 590 | VALIDATE_PRODUCT = YES; 591 | }; 592 | name = Release; 593 | }; 594 | 6003F5C0195388D20070C39A /* Debug */ = { 595 | isa = XCBuildConfiguration; 596 | baseConfigurationReference = 300630C3619F156BEF5ED2A5 /* Pods-EMEmojiableBtn_Example.debug.xcconfig */; 597 | buildSettings = { 598 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 599 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 600 | CODE_SIGN_IDENTITY = ""; 601 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 602 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 603 | GCC_PREFIX_HEADER = "EMEmojiableBtn/EMEmojiableBtn-Prefix.pch"; 604 | INFOPLIST_FILE = "EMEmojiableBtn/EMEmojiableBtn-Info.plist"; 605 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 606 | MODULE_NAME = ExampleApp; 607 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 608 | PRODUCT_NAME = "$(TARGET_NAME)"; 609 | WRAPPER_EXTENSION = app; 610 | }; 611 | name = Debug; 612 | }; 613 | 6003F5C1195388D20070C39A /* Release */ = { 614 | isa = XCBuildConfiguration; 615 | baseConfigurationReference = CD35F3497614D6C0A46A92EB /* Pods-EMEmojiableBtn_Example.release.xcconfig */; 616 | buildSettings = { 617 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 618 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 619 | CODE_SIGN_IDENTITY = ""; 620 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 621 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 622 | GCC_PREFIX_HEADER = "EMEmojiableBtn/EMEmojiableBtn-Prefix.pch"; 623 | INFOPLIST_FILE = "EMEmojiableBtn/EMEmojiableBtn-Info.plist"; 624 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 625 | MODULE_NAME = ExampleApp; 626 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 627 | PRODUCT_NAME = "$(TARGET_NAME)"; 628 | WRAPPER_EXTENSION = app; 629 | }; 630 | name = Release; 631 | }; 632 | 6003F5C3195388D20070C39A /* Debug */ = { 633 | isa = XCBuildConfiguration; 634 | baseConfigurationReference = 8127D5214F4A5D37B62B83A1 /* Pods-EMEmojiableBtn_Tests.debug.xcconfig */; 635 | buildSettings = { 636 | BUNDLE_LOADER = "$(TEST_HOST)"; 637 | FRAMEWORK_SEARCH_PATHS = ( 638 | "$(SDKROOT)/Developer/Library/Frameworks", 639 | "$(inherited)", 640 | "$(DEVELOPER_FRAMEWORKS_DIR)", 641 | ); 642 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 643 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 644 | GCC_PREPROCESSOR_DEFINITIONS = ( 645 | "DEBUG=1", 646 | "$(inherited)", 647 | ); 648 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 649 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 650 | PRODUCT_NAME = "$(TARGET_NAME)"; 651 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EMEmojiableBtn_Example.app/EMEmojiableBtn_Example"; 652 | WRAPPER_EXTENSION = xctest; 653 | }; 654 | name = Debug; 655 | }; 656 | 6003F5C4195388D20070C39A /* Release */ = { 657 | isa = XCBuildConfiguration; 658 | baseConfigurationReference = 8F831A2D6582B6F5DEDD4752 /* Pods-EMEmojiableBtn_Tests.release.xcconfig */; 659 | buildSettings = { 660 | BUNDLE_LOADER = "$(TEST_HOST)"; 661 | FRAMEWORK_SEARCH_PATHS = ( 662 | "$(SDKROOT)/Developer/Library/Frameworks", 663 | "$(inherited)", 664 | "$(DEVELOPER_FRAMEWORKS_DIR)", 665 | ); 666 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 667 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 668 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 669 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 670 | PRODUCT_NAME = "$(TARGET_NAME)"; 671 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EMEmojiableBtn_Example.app/EMEmojiableBtn_Example"; 672 | WRAPPER_EXTENSION = xctest; 673 | }; 674 | name = Release; 675 | }; 676 | /* End XCBuildConfiguration section */ 677 | 678 | /* Begin XCConfigurationList section */ 679 | 6003F585195388D10070C39A /* Build configuration list for PBXProject "EMEmojiableBtn" */ = { 680 | isa = XCConfigurationList; 681 | buildConfigurations = ( 682 | 6003F5BD195388D20070C39A /* Debug */, 683 | 6003F5BE195388D20070C39A /* Release */, 684 | ); 685 | defaultConfigurationIsVisible = 0; 686 | defaultConfigurationName = Release; 687 | }; 688 | 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "EMEmojiableBtn_Example" */ = { 689 | isa = XCConfigurationList; 690 | buildConfigurations = ( 691 | 6003F5C0195388D20070C39A /* Debug */, 692 | 6003F5C1195388D20070C39A /* Release */, 693 | ); 694 | defaultConfigurationIsVisible = 0; 695 | defaultConfigurationName = Release; 696 | }; 697 | 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "EMEmojiableBtn_Tests" */ = { 698 | isa = XCConfigurationList; 699 | buildConfigurations = ( 700 | 6003F5C3195388D20070C39A /* Debug */, 701 | 6003F5C4195388D20070C39A /* Release */, 702 | ); 703 | defaultConfigurationIsVisible = 0; 704 | defaultConfigurationName = Release; 705 | }; 706 | /* End XCConfigurationList section */ 707 | }; 708 | rootObject = 6003F582195388D10070C39A /* Project object */; 709 | } 710 | -------------------------------------------------------------------------------- /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 | 16724A5B25EC822BC6B08B1486D06771 /* EMEmojiableBtn.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AA0EAC96BD923FA7091165F95CAB1F5 /* EMEmojiableBtn.m */; }; 11 | 1A1E2F4020135C9FF55D83DFF11E0AA5 /* EMEmojiableOption.m in Sources */ = {isa = PBXBuildFile; fileRef = F8C69604C4D3A91ABC948A9AD28D268B /* EMEmojiableOption.m */; }; 12 | 3DB8399D99AE254BDD938763EE00578C /* EMEmojiableInformationView.h in Headers */ = {isa = PBXBuildFile; fileRef = C444A8D137CCDCCB9E50B76BAA260EA6 /* EMEmojiableInformationView.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | 61ADAE3FF00087D0F88854782F586179 /* EMEmojiableBtn.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AA0EAC96BD923FA7091165F95CAB1F5 /* EMEmojiableBtn.m */; }; 14 | 66440B1E8FAD5644BEDFF2630A0E61C5 /* EMEmojiableBtn.h in Headers */ = {isa = PBXBuildFile; fileRef = A2F626EECD46B510BDDBC4A47183810F /* EMEmojiableBtn.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 | 6C4BEF760DA877567049CD74D3053DFB /* EMEmojiableInformationView.h in Headers */ = {isa = PBXBuildFile; fileRef = C444A8D137CCDCCB9E50B76BAA260EA6 /* EMEmojiableInformationView.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | 6D54824FD7B0ACA400A113D8AE133971 /* EMEmojiableBtn-iOS8.4-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B49161694B6C4AFFFA35D6EA7DC2202 /* EMEmojiableBtn-iOS8.4-dummy.m */; }; 17 | 6EE652F88B306E03DD3323CE0CB242E6 /* Pods-EMEmojiableBtn_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C29500D737A61C60555C422E1896A0B6 /* Pods-EMEmojiableBtn_Tests-dummy.m */; }; 18 | 6F9A8F4CCA63B70BF406E3EAF742FE8A /* EMEmojiableOption.m in Sources */ = {isa = PBXBuildFile; fileRef = F8C69604C4D3A91ABC948A9AD28D268B /* EMEmojiableOption.m */; }; 19 | 801361BD895A4225902E7471858A663D /* Pods-EMEmojiableBtn_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EF8C25145BF551AF049D72DD796C3F40 /* Pods-EMEmojiableBtn_Example-dummy.m */; }; 20 | 81EA64AFA23E1137F9B21BF614715382 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3997E5D2953ECDF377B85B234FDF550D /* Foundation.framework */; }; 21 | 83A9599BD398B5FABD1E5ED84311A576 /* EMEmojiableOption.h in Headers */ = {isa = PBXBuildFile; fileRef = D07DCBD2BC6AB694AB9FBB93F6096BEE /* EMEmojiableOption.h */; settings = {ATTRIBUTES = (Public, ); }; }; 22 | 8FB32664480F1C148BB2DB63190774BB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3997E5D2953ECDF377B85B234FDF550D /* Foundation.framework */; }; 23 | 95FC127BBAD49BEDBC4BE87055D5BA1F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3997E5D2953ECDF377B85B234FDF550D /* Foundation.framework */; }; 24 | AB76B0B9480D08A22775B7090B48A34F /* EMEmojiableOption.h in Headers */ = {isa = PBXBuildFile; fileRef = D07DCBD2BC6AB694AB9FBB93F6096BEE /* EMEmojiableOption.h */; settings = {ATTRIBUTES = (Public, ); }; }; 25 | B534DE5D6B536455D371BF5E5D6665F9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3997E5D2953ECDF377B85B234FDF550D /* Foundation.framework */; }; 26 | BEE31880D484053B0C1BF5995E823A14 /* EMEmojiableBtn-iOS7.1-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BAC596BAAF1B3590DFDA2946740FCBA7 /* EMEmojiableBtn-iOS7.1-dummy.m */; }; 27 | CCEB51504721901FEE5FEAEF952B7734 /* EMEmojiableBtnConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 965CFA7714F1BC0B2376FAD1CC9A30C7 /* EMEmojiableBtnConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; 28 | DED524257E5FFBCDBE3B04D411017C6B /* EMEmojiableBtn.h in Headers */ = {isa = PBXBuildFile; fileRef = A2F626EECD46B510BDDBC4A47183810F /* EMEmojiableBtn.h */; settings = {ATTRIBUTES = (Public, ); }; }; 29 | E356EF2026E682DD8A9785049C97B892 /* EMEmojiableInformationView.m in Sources */ = {isa = PBXBuildFile; fileRef = DE4B926854EA73CC4D35C68BB92C27C5 /* EMEmojiableInformationView.m */; }; 30 | E3A1E97E805D07E66D833F8773549C46 /* EMEmojiableBtnConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A7D26290ACBD94007DE10267A8636D7 /* EMEmojiableBtnConfig.m */; }; 31 | E68FF6E903CE65DC288220D5CE58C0CD /* EMEmojiableInformationView.m in Sources */ = {isa = PBXBuildFile; fileRef = DE4B926854EA73CC4D35C68BB92C27C5 /* EMEmojiableInformationView.m */; }; 32 | E79B695FDE00A7EC7409A72753DA131E /* EMEmojiableBtnConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A7D26290ACBD94007DE10267A8636D7 /* EMEmojiableBtnConfig.m */; }; 33 | FADF128D34488E1F8E0CCCC51F33F356 /* EMEmojiableBtnConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 965CFA7714F1BC0B2376FAD1CC9A30C7 /* EMEmojiableBtnConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; 34 | /* End PBXBuildFile section */ 35 | 36 | /* Begin PBXContainerItemProxy section */ 37 | 44818CA19D9ED88FFD2C8A213D77C946 /* PBXContainerItemProxy */ = { 38 | isa = PBXContainerItemProxy; 39 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 40 | proxyType = 1; 41 | remoteGlobalIDString = C9512118109263EECB3EC4447A90D3F9; 42 | remoteInfo = "EMEmojiableBtn-iOS8.4"; 43 | }; 44 | 93FF34EB7839BC0CE47F72C010F1218E /* PBXContainerItemProxy */ = { 45 | isa = PBXContainerItemProxy; 46 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 47 | proxyType = 1; 48 | remoteGlobalIDString = 760B430BB8D8C38349E0F99C5F24E2A9; 49 | remoteInfo = "EMEmojiableBtn-iOS7.1"; 50 | }; 51 | D3C00F12CDA59F97982704E2AD810180 /* PBXContainerItemProxy */ = { 52 | isa = PBXContainerItemProxy; 53 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 54 | proxyType = 1; 55 | remoteGlobalIDString = BF72D4AEEB94D838743D3EBE288138D9; 56 | remoteInfo = "EMEmojiableBtn-iOS8.4-EMEmojiableBtn"; 57 | }; 58 | DC60289E8E37123B71F98D52A6A40B5D /* PBXContainerItemProxy */ = { 59 | isa = PBXContainerItemProxy; 60 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 61 | proxyType = 1; 62 | remoteGlobalIDString = 7705C23A88F72ADCAD0F2BE56DA303F9; 63 | remoteInfo = "EMEmojiableBtn-iOS7.1-EMEmojiableBtn"; 64 | }; 65 | /* End PBXContainerItemProxy section */ 66 | 67 | /* Begin PBXFileReference section */ 68 | 05F13C27B3A0895222E9AA709A6ECD2E /* ResourceBundle-EMEmojiableBtn-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "ResourceBundle-EMEmojiableBtn-Info.plist"; path = "../EMEmojiableBtn-iOS8.4/ResourceBundle-EMEmojiableBtn-Info.plist"; sourceTree = ""; }; 69 | 095FC220158E3EC9464138241D6EBA04 /* Pods-EMEmojiableBtn_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-EMEmojiableBtn_Tests-acknowledgements.plist"; sourceTree = ""; }; 70 | 0B49161694B6C4AFFFA35D6EA7DC2202 /* EMEmojiableBtn-iOS8.4-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EMEmojiableBtn-iOS8.4-dummy.m"; path = "../EMEmojiableBtn-iOS8.4/EMEmojiableBtn-iOS8.4-dummy.m"; sourceTree = ""; }; 71 | 284E05D56EF842DC7C722CB08CC0E41C /* EMEmojiableBtn-iOS8.4-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EMEmojiableBtn-iOS8.4-prefix.pch"; path = "../EMEmojiableBtn-iOS8.4/EMEmojiableBtn-iOS8.4-prefix.pch"; sourceTree = ""; }; 72 | 28AE21819DB114CDD0D4BBA1FBF86720 /* ResourceBundle-EMEmojiableBtn-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-EMEmojiableBtn-Info.plist"; sourceTree = ""; }; 73 | 2FA9B94AF1EF7B409E14B5186D8C5256 /* EMEmojiableBtn.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = EMEmojiableBtn.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 74 | 3231082B44BD2E6240861B2CDE8D7FE9 /* libEMEmojiableBtn-iOS8.4.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libEMEmojiableBtn-iOS8.4.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 75 | 3354FF5B9DBE3677584682FC1C52AD5E /* Pods-EMEmojiableBtn_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-EMEmojiableBtn_Tests-resources.sh"; sourceTree = ""; }; 76 | 33AB7C51ACF74A9940E18467B20CBBD5 /* Pods-EMEmojiableBtn_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-EMEmojiableBtn_Example-acknowledgements.markdown"; sourceTree = ""; }; 77 | 3997E5D2953ECDF377B85B234FDF550D /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 78 | 4462BB3E21015A5CF3A74C720758763B /* Pods-EMEmojiableBtn_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-EMEmojiableBtn_Tests-acknowledgements.markdown"; sourceTree = ""; }; 79 | 5AA0EAC96BD923FA7091165F95CAB1F5 /* EMEmojiableBtn.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EMEmojiableBtn.m; sourceTree = ""; }; 80 | 6785E77958B7EA0FDA2352BA83D1360D /* Pods-EMEmojiableBtn_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-EMEmojiableBtn_Example-frameworks.sh"; sourceTree = ""; }; 81 | 798975FDD64448C28FB460198C136A5C /* Pods-EMEmojiableBtn_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-EMEmojiableBtn_Example.debug.xcconfig"; sourceTree = ""; }; 82 | 7A7D26290ACBD94007DE10267A8636D7 /* EMEmojiableBtnConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EMEmojiableBtnConfig.m; sourceTree = ""; }; 83 | 84B3605E4D735B763CE868E5BC2791D4 /* Pods-EMEmojiableBtn_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-EMEmojiableBtn_Example-acknowledgements.plist"; sourceTree = ""; }; 84 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 85 | 965CFA7714F1BC0B2376FAD1CC9A30C7 /* EMEmojiableBtnConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EMEmojiableBtnConfig.h; sourceTree = ""; }; 86 | 9665A3C2101EC5E4CAEA7E12360F3F2D /* libEMEmojiableBtn-iOS7.1.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libEMEmojiableBtn-iOS7.1.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 87 | 98A81C071E71552E508CC1A80642BF77 /* Pods-EMEmojiableBtn_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-EMEmojiableBtn_Tests.release.xcconfig"; sourceTree = ""; }; 88 | 9F450C5E3009F7A68AA1A5BED1AD6350 /* Pods-EMEmojiableBtn_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-EMEmojiableBtn_Tests-frameworks.sh"; sourceTree = ""; }; 89 | A1420C5EDAC1886BB851D082B2E92645 /* Pods-EMEmojiableBtn_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-EMEmojiableBtn_Example-resources.sh"; sourceTree = ""; }; 90 | A2F626EECD46B510BDDBC4A47183810F /* EMEmojiableBtn.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EMEmojiableBtn.h; sourceTree = ""; }; 91 | A46D69249E912B50D6BB55CDAF0BD1CB /* EMEmojiableBtn-iOS8.4.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "EMEmojiableBtn-iOS8.4.xcconfig"; path = "../EMEmojiableBtn-iOS8.4/EMEmojiableBtn-iOS8.4.xcconfig"; sourceTree = ""; }; 92 | A576B03C68FEEDC6B3B2F759A4053EC2 /* Pods-EMEmojiableBtn_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-EMEmojiableBtn_Example.release.xcconfig"; sourceTree = ""; }; 93 | B36E9F270E0DC228966CA36C19050CBF /* libPods-EMEmojiableBtn_Example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-EMEmojiableBtn_Example.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 94 | BAC596BAAF1B3590DFDA2946740FCBA7 /* EMEmojiableBtn-iOS7.1-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EMEmojiableBtn-iOS7.1-dummy.m"; sourceTree = ""; }; 95 | C21072DD3D747C7731026CD20B0B9B0F /* EMEmojiableBtn-iOS7.1.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "EMEmojiableBtn-iOS7.1.xcconfig"; sourceTree = ""; }; 96 | C29500D737A61C60555C422E1896A0B6 /* Pods-EMEmojiableBtn_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-EMEmojiableBtn_Tests-dummy.m"; sourceTree = ""; }; 97 | C444A8D137CCDCCB9E50B76BAA260EA6 /* EMEmojiableInformationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EMEmojiableInformationView.h; sourceTree = ""; }; 98 | CA3CD69AAB07A2898B8F342B7997E8E1 /* libPods-EMEmojiableBtn_Tests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-EMEmojiableBtn_Tests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 99 | D07DCBD2BC6AB694AB9FBB93F6096BEE /* EMEmojiableOption.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EMEmojiableOption.h; sourceTree = ""; }; 100 | D2A2821DB595858CB23B79C0984ABDC6 /* EMEmojiableBtn-iOS7.1-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EMEmojiableBtn-iOS7.1-prefix.pch"; sourceTree = ""; }; 101 | DE4B926854EA73CC4D35C68BB92C27C5 /* EMEmojiableInformationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EMEmojiableInformationView.m; sourceTree = ""; }; 102 | EF8C25145BF551AF049D72DD796C3F40 /* Pods-EMEmojiableBtn_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-EMEmojiableBtn_Example-dummy.m"; sourceTree = ""; }; 103 | F39BFD2B2F1EC0B2244EC79C984CAF15 /* Pods-EMEmojiableBtn_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-EMEmojiableBtn_Tests.debug.xcconfig"; sourceTree = ""; }; 104 | F8C69604C4D3A91ABC948A9AD28D268B /* EMEmojiableOption.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EMEmojiableOption.m; sourceTree = ""; }; 105 | /* End PBXFileReference section */ 106 | 107 | /* Begin PBXFrameworksBuildPhase section */ 108 | 4704393BB1C21858E2CC7CD220B00499 /* Frameworks */ = { 109 | isa = PBXFrameworksBuildPhase; 110 | buildActionMask = 2147483647; 111 | files = ( 112 | ); 113 | runOnlyForDeploymentPostprocessing = 0; 114 | }; 115 | 506A2111A85DCB9BCE08A946AAF4372E /* Frameworks */ = { 116 | isa = PBXFrameworksBuildPhase; 117 | buildActionMask = 2147483647; 118 | files = ( 119 | 95FC127BBAD49BEDBC4BE87055D5BA1F /* Foundation.framework in Frameworks */, 120 | ); 121 | runOnlyForDeploymentPostprocessing = 0; 122 | }; 123 | 57DA7111D6AFBA57DE74BC637A8632D9 /* Frameworks */ = { 124 | isa = PBXFrameworksBuildPhase; 125 | buildActionMask = 2147483647; 126 | files = ( 127 | 8FB32664480F1C148BB2DB63190774BB /* Foundation.framework in Frameworks */, 128 | ); 129 | runOnlyForDeploymentPostprocessing = 0; 130 | }; 131 | 67F1654C369512A28FF47982AD76D7B8 /* Frameworks */ = { 132 | isa = PBXFrameworksBuildPhase; 133 | buildActionMask = 2147483647; 134 | files = ( 135 | B534DE5D6B536455D371BF5E5D6665F9 /* Foundation.framework in Frameworks */, 136 | ); 137 | runOnlyForDeploymentPostprocessing = 0; 138 | }; 139 | 773C215140B84BDA95A7A1F667EC7E0D /* Frameworks */ = { 140 | isa = PBXFrameworksBuildPhase; 141 | buildActionMask = 2147483647; 142 | files = ( 143 | ); 144 | runOnlyForDeploymentPostprocessing = 0; 145 | }; 146 | E8BD8838637B6CAA7AAFFF4C5DADA6E6 /* Frameworks */ = { 147 | isa = PBXFrameworksBuildPhase; 148 | buildActionMask = 2147483647; 149 | files = ( 150 | 81EA64AFA23E1137F9B21BF614715382 /* Foundation.framework in Frameworks */, 151 | ); 152 | runOnlyForDeploymentPostprocessing = 0; 153 | }; 154 | /* End PBXFrameworksBuildPhase section */ 155 | 156 | /* Begin PBXGroup section */ 157 | 112C7921E3A497328D11F4930CBBC9CA /* iOS */ = { 158 | isa = PBXGroup; 159 | children = ( 160 | 3997E5D2953ECDF377B85B234FDF550D /* Foundation.framework */, 161 | ); 162 | name = iOS; 163 | sourceTree = ""; 164 | }; 165 | 34F6B9F547C938D9A71921DA2E410B9A /* Targets Support Files */ = { 166 | isa = PBXGroup; 167 | children = ( 168 | 5862CD16273264BF41F66B02D32F557E /* Pods-EMEmojiableBtn_Example */, 169 | F8E0168F4B99C63342BC0392D52962DF /* Pods-EMEmojiableBtn_Tests */, 170 | ); 171 | name = "Targets Support Files"; 172 | sourceTree = ""; 173 | }; 174 | 43731AAF20F85D9C02CC6C79D59C4854 /* EMEmojiableBtn */ = { 175 | isa = PBXGroup; 176 | children = ( 177 | E5FB1379DF10D875F54C3D45A91BD03C /* Pod */, 178 | 9E2923F27437C84B5EACB038E8857E18 /* Support Files */, 179 | ); 180 | name = EMEmojiableBtn; 181 | path = ../..; 182 | sourceTree = ""; 183 | }; 184 | 5862CD16273264BF41F66B02D32F557E /* Pods-EMEmojiableBtn_Example */ = { 185 | isa = PBXGroup; 186 | children = ( 187 | 33AB7C51ACF74A9940E18467B20CBBD5 /* Pods-EMEmojiableBtn_Example-acknowledgements.markdown */, 188 | 84B3605E4D735B763CE868E5BC2791D4 /* Pods-EMEmojiableBtn_Example-acknowledgements.plist */, 189 | EF8C25145BF551AF049D72DD796C3F40 /* Pods-EMEmojiableBtn_Example-dummy.m */, 190 | 6785E77958B7EA0FDA2352BA83D1360D /* Pods-EMEmojiableBtn_Example-frameworks.sh */, 191 | A1420C5EDAC1886BB851D082B2E92645 /* Pods-EMEmojiableBtn_Example-resources.sh */, 192 | 798975FDD64448C28FB460198C136A5C /* Pods-EMEmojiableBtn_Example.debug.xcconfig */, 193 | A576B03C68FEEDC6B3B2F759A4053EC2 /* Pods-EMEmojiableBtn_Example.release.xcconfig */, 194 | ); 195 | name = "Pods-EMEmojiableBtn_Example"; 196 | path = "Target Support Files/Pods-EMEmojiableBtn_Example"; 197 | sourceTree = ""; 198 | }; 199 | 7DB346D0F39D3F0E887471402A8071AB = { 200 | isa = PBXGroup; 201 | children = ( 202 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 203 | 9A88E3CECA13A6AEBB8D07EAA217F5AC /* Development Pods */, 204 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 205 | D8F1EB4C148BF03012412E58898F0580 /* Products */, 206 | 34F6B9F547C938D9A71921DA2E410B9A /* Targets Support Files */, 207 | ); 208 | sourceTree = ""; 209 | }; 210 | 9A88E3CECA13A6AEBB8D07EAA217F5AC /* Development Pods */ = { 211 | isa = PBXGroup; 212 | children = ( 213 | 43731AAF20F85D9C02CC6C79D59C4854 /* EMEmojiableBtn */, 214 | ); 215 | name = "Development Pods"; 216 | sourceTree = ""; 217 | }; 218 | 9E2923F27437C84B5EACB038E8857E18 /* Support Files */ = { 219 | isa = PBXGroup; 220 | children = ( 221 | C21072DD3D747C7731026CD20B0B9B0F /* EMEmojiableBtn-iOS7.1.xcconfig */, 222 | BAC596BAAF1B3590DFDA2946740FCBA7 /* EMEmojiableBtn-iOS7.1-dummy.m */, 223 | D2A2821DB595858CB23B79C0984ABDC6 /* EMEmojiableBtn-iOS7.1-prefix.pch */, 224 | A46D69249E912B50D6BB55CDAF0BD1CB /* EMEmojiableBtn-iOS8.4.xcconfig */, 225 | 0B49161694B6C4AFFFA35D6EA7DC2202 /* EMEmojiableBtn-iOS8.4-dummy.m */, 226 | 284E05D56EF842DC7C722CB08CC0E41C /* EMEmojiableBtn-iOS8.4-prefix.pch */, 227 | 05F13C27B3A0895222E9AA709A6ECD2E /* ResourceBundle-EMEmojiableBtn-Info.plist */, 228 | 28AE21819DB114CDD0D4BBA1FBF86720 /* ResourceBundle-EMEmojiableBtn-Info.plist */, 229 | ); 230 | name = "Support Files"; 231 | path = "Example/Pods/Target Support Files/EMEmojiableBtn-iOS7.1"; 232 | sourceTree = ""; 233 | }; 234 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 235 | isa = PBXGroup; 236 | children = ( 237 | 112C7921E3A497328D11F4930CBBC9CA /* iOS */, 238 | ); 239 | name = Frameworks; 240 | sourceTree = ""; 241 | }; 242 | C061B122710B11728CE20F12B3BD2E42 /* Classes */ = { 243 | isa = PBXGroup; 244 | children = ( 245 | A2F626EECD46B510BDDBC4A47183810F /* EMEmojiableBtn.h */, 246 | 5AA0EAC96BD923FA7091165F95CAB1F5 /* EMEmojiableBtn.m */, 247 | 965CFA7714F1BC0B2376FAD1CC9A30C7 /* EMEmojiableBtnConfig.h */, 248 | 7A7D26290ACBD94007DE10267A8636D7 /* EMEmojiableBtnConfig.m */, 249 | C444A8D137CCDCCB9E50B76BAA260EA6 /* EMEmojiableInformationView.h */, 250 | DE4B926854EA73CC4D35C68BB92C27C5 /* EMEmojiableInformationView.m */, 251 | D07DCBD2BC6AB694AB9FBB93F6096BEE /* EMEmojiableOption.h */, 252 | F8C69604C4D3A91ABC948A9AD28D268B /* EMEmojiableOption.m */, 253 | ); 254 | path = Classes; 255 | sourceTree = ""; 256 | }; 257 | D8F1EB4C148BF03012412E58898F0580 /* Products */ = { 258 | isa = PBXGroup; 259 | children = ( 260 | 2FA9B94AF1EF7B409E14B5186D8C5256 /* EMEmojiableBtn.bundle */, 261 | 9665A3C2101EC5E4CAEA7E12360F3F2D /* libEMEmojiableBtn-iOS7.1.a */, 262 | 3231082B44BD2E6240861B2CDE8D7FE9 /* libEMEmojiableBtn-iOS8.4.a */, 263 | B36E9F270E0DC228966CA36C19050CBF /* libPods-EMEmojiableBtn_Example.a */, 264 | CA3CD69AAB07A2898B8F342B7997E8E1 /* libPods-EMEmojiableBtn_Tests.a */, 265 | ); 266 | name = Products; 267 | sourceTree = ""; 268 | }; 269 | E5FB1379DF10D875F54C3D45A91BD03C /* Pod */ = { 270 | isa = PBXGroup; 271 | children = ( 272 | C061B122710B11728CE20F12B3BD2E42 /* Classes */, 273 | ); 274 | path = Pod; 275 | sourceTree = ""; 276 | }; 277 | F8E0168F4B99C63342BC0392D52962DF /* Pods-EMEmojiableBtn_Tests */ = { 278 | isa = PBXGroup; 279 | children = ( 280 | 4462BB3E21015A5CF3A74C720758763B /* Pods-EMEmojiableBtn_Tests-acknowledgements.markdown */, 281 | 095FC220158E3EC9464138241D6EBA04 /* Pods-EMEmojiableBtn_Tests-acknowledgements.plist */, 282 | C29500D737A61C60555C422E1896A0B6 /* Pods-EMEmojiableBtn_Tests-dummy.m */, 283 | 9F450C5E3009F7A68AA1A5BED1AD6350 /* Pods-EMEmojiableBtn_Tests-frameworks.sh */, 284 | 3354FF5B9DBE3677584682FC1C52AD5E /* Pods-EMEmojiableBtn_Tests-resources.sh */, 285 | F39BFD2B2F1EC0B2244EC79C984CAF15 /* Pods-EMEmojiableBtn_Tests.debug.xcconfig */, 286 | 98A81C071E71552E508CC1A80642BF77 /* Pods-EMEmojiableBtn_Tests.release.xcconfig */, 287 | ); 288 | name = "Pods-EMEmojiableBtn_Tests"; 289 | path = "Target Support Files/Pods-EMEmojiableBtn_Tests"; 290 | sourceTree = ""; 291 | }; 292 | /* End PBXGroup section */ 293 | 294 | /* Begin PBXHeadersBuildPhase section */ 295 | 6DB35029C50C5495E0F806719D6F7EE6 /* Headers */ = { 296 | isa = PBXHeadersBuildPhase; 297 | buildActionMask = 2147483647; 298 | files = ( 299 | 66440B1E8FAD5644BEDFF2630A0E61C5 /* EMEmojiableBtn.h in Headers */, 300 | FADF128D34488E1F8E0CCCC51F33F356 /* EMEmojiableBtnConfig.h in Headers */, 301 | 3DB8399D99AE254BDD938763EE00578C /* EMEmojiableInformationView.h in Headers */, 302 | 83A9599BD398B5FABD1E5ED84311A576 /* EMEmojiableOption.h in Headers */, 303 | ); 304 | runOnlyForDeploymentPostprocessing = 0; 305 | }; 306 | A432F36B5FF13883FB6A65DC23973526 /* Headers */ = { 307 | isa = PBXHeadersBuildPhase; 308 | buildActionMask = 2147483647; 309 | files = ( 310 | DED524257E5FFBCDBE3B04D411017C6B /* EMEmojiableBtn.h in Headers */, 311 | CCEB51504721901FEE5FEAEF952B7734 /* EMEmojiableBtnConfig.h in Headers */, 312 | 6C4BEF760DA877567049CD74D3053DFB /* EMEmojiableInformationView.h in Headers */, 313 | AB76B0B9480D08A22775B7090B48A34F /* EMEmojiableOption.h in Headers */, 314 | ); 315 | runOnlyForDeploymentPostprocessing = 0; 316 | }; 317 | /* End PBXHeadersBuildPhase section */ 318 | 319 | /* Begin PBXNativeTarget section */ 320 | 05E75DB18C8A798D4AB216BFC83A18E4 /* Pods-EMEmojiableBtn_Example */ = { 321 | isa = PBXNativeTarget; 322 | buildConfigurationList = 542AF95DAAF6398925CA605B18F48A20 /* Build configuration list for PBXNativeTarget "Pods-EMEmojiableBtn_Example" */; 323 | buildPhases = ( 324 | 2076541AF57554ED66F3BC2A1EF5C868 /* Sources */, 325 | 57DA7111D6AFBA57DE74BC637A8632D9 /* Frameworks */, 326 | ); 327 | buildRules = ( 328 | ); 329 | dependencies = ( 330 | 7262C22AC705EDF16E03A625A7EF1A8C /* PBXTargetDependency */, 331 | ); 332 | name = "Pods-EMEmojiableBtn_Example"; 333 | productName = "Pods-EMEmojiableBtn_Example"; 334 | productReference = B36E9F270E0DC228966CA36C19050CBF /* libPods-EMEmojiableBtn_Example.a */; 335 | productType = "com.apple.product-type.library.static"; 336 | }; 337 | 760B430BB8D8C38349E0F99C5F24E2A9 /* EMEmojiableBtn-iOS7.1 */ = { 338 | isa = PBXNativeTarget; 339 | buildConfigurationList = 51E6BB94217C8814ED357D6F60BE298D /* Build configuration list for PBXNativeTarget "EMEmojiableBtn-iOS7.1" */; 340 | buildPhases = ( 341 | 5D941E7549A7195D549767299CE70E6C /* Sources */, 342 | E8BD8838637B6CAA7AAFFF4C5DADA6E6 /* Frameworks */, 343 | 6DB35029C50C5495E0F806719D6F7EE6 /* Headers */, 344 | ); 345 | buildRules = ( 346 | ); 347 | dependencies = ( 348 | 6234D66877C0F4D8925F5EE54CFA881A /* PBXTargetDependency */, 349 | ); 350 | name = "EMEmojiableBtn-iOS7.1"; 351 | productName = "EMEmojiableBtn-iOS7.1"; 352 | productReference = 9665A3C2101EC5E4CAEA7E12360F3F2D /* libEMEmojiableBtn-iOS7.1.a */; 353 | productType = "com.apple.product-type.library.static"; 354 | }; 355 | 7705C23A88F72ADCAD0F2BE56DA303F9 /* EMEmojiableBtn-iOS7.1-EMEmojiableBtn */ = { 356 | isa = PBXNativeTarget; 357 | buildConfigurationList = C1CF285ECCE5820821A7D70248D15632 /* Build configuration list for PBXNativeTarget "EMEmojiableBtn-iOS7.1-EMEmojiableBtn" */; 358 | buildPhases = ( 359 | D3C352FFD5F80E26301D22BEBA7BD3AF /* Sources */, 360 | 4704393BB1C21858E2CC7CD220B00499 /* Frameworks */, 361 | 0D28A0264F968679CE58118747F70F1A /* Resources */, 362 | ); 363 | buildRules = ( 364 | ); 365 | dependencies = ( 366 | ); 367 | name = "EMEmojiableBtn-iOS7.1-EMEmojiableBtn"; 368 | productName = "EMEmojiableBtn-iOS7.1-EMEmojiableBtn"; 369 | productReference = 2FA9B94AF1EF7B409E14B5186D8C5256 /* EMEmojiableBtn.bundle */; 370 | productType = "com.apple.product-type.bundle"; 371 | }; 372 | 7E6A446A8E762D9152680AEA0909CD0B /* Pods-EMEmojiableBtn_Tests */ = { 373 | isa = PBXNativeTarget; 374 | buildConfigurationList = DFB3EDF8E14B6793DE79E2A9E38BAAC8 /* Build configuration list for PBXNativeTarget "Pods-EMEmojiableBtn_Tests" */; 375 | buildPhases = ( 376 | B8CEEE75EDE0E43BF33B333678ABB0FA /* Sources */, 377 | 67F1654C369512A28FF47982AD76D7B8 /* Frameworks */, 378 | ); 379 | buildRules = ( 380 | ); 381 | dependencies = ( 382 | 9A366F997B3922F555733997080E77B7 /* PBXTargetDependency */, 383 | ); 384 | name = "Pods-EMEmojiableBtn_Tests"; 385 | productName = "Pods-EMEmojiableBtn_Tests"; 386 | productReference = CA3CD69AAB07A2898B8F342B7997E8E1 /* libPods-EMEmojiableBtn_Tests.a */; 387 | productType = "com.apple.product-type.library.static"; 388 | }; 389 | BF72D4AEEB94D838743D3EBE288138D9 /* EMEmojiableBtn-iOS8.4-EMEmojiableBtn */ = { 390 | isa = PBXNativeTarget; 391 | buildConfigurationList = 119AD7AAF3EC5A86259EF1904A405099 /* Build configuration list for PBXNativeTarget "EMEmojiableBtn-iOS8.4-EMEmojiableBtn" */; 392 | buildPhases = ( 393 | EC2482A39449650DA5F5377DA167BAAE /* Sources */, 394 | 773C215140B84BDA95A7A1F667EC7E0D /* Frameworks */, 395 | C4D934EB586FD428638EEDFCCE9AF30C /* Resources */, 396 | ); 397 | buildRules = ( 398 | ); 399 | dependencies = ( 400 | ); 401 | name = "EMEmojiableBtn-iOS8.4-EMEmojiableBtn"; 402 | productName = "EMEmojiableBtn-iOS8.4-EMEmojiableBtn"; 403 | productReference = 2FA9B94AF1EF7B409E14B5186D8C5256 /* EMEmojiableBtn.bundle */; 404 | productType = "com.apple.product-type.bundle"; 405 | }; 406 | C9512118109263EECB3EC4447A90D3F9 /* EMEmojiableBtn-iOS8.4 */ = { 407 | isa = PBXNativeTarget; 408 | buildConfigurationList = CB6852636B3C6AED4474CC949A6CF8C3 /* Build configuration list for PBXNativeTarget "EMEmojiableBtn-iOS8.4" */; 409 | buildPhases = ( 410 | 88FE1909883DF3FA668FF8ECF62DE8A6 /* Sources */, 411 | 506A2111A85DCB9BCE08A946AAF4372E /* Frameworks */, 412 | A432F36B5FF13883FB6A65DC23973526 /* Headers */, 413 | ); 414 | buildRules = ( 415 | ); 416 | dependencies = ( 417 | 23253FB99EEBB3BA66081F35C58C69ED /* PBXTargetDependency */, 418 | ); 419 | name = "EMEmojiableBtn-iOS8.4"; 420 | productName = "EMEmojiableBtn-iOS8.4"; 421 | productReference = 3231082B44BD2E6240861B2CDE8D7FE9 /* libEMEmojiableBtn-iOS8.4.a */; 422 | productType = "com.apple.product-type.library.static"; 423 | }; 424 | /* End PBXNativeTarget section */ 425 | 426 | /* Begin PBXProject section */ 427 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 428 | isa = PBXProject; 429 | attributes = { 430 | LastSwiftUpdateCheck = 0720; 431 | LastUpgradeCheck = 0700; 432 | }; 433 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 434 | compatibilityVersion = "Xcode 3.2"; 435 | developmentRegion = English; 436 | hasScannedForEncodings = 0; 437 | knownRegions = ( 438 | en, 439 | ); 440 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 441 | productRefGroup = D8F1EB4C148BF03012412E58898F0580 /* Products */; 442 | projectDirPath = ""; 443 | projectRoot = ""; 444 | targets = ( 445 | 760B430BB8D8C38349E0F99C5F24E2A9 /* EMEmojiableBtn-iOS7.1 */, 446 | 7705C23A88F72ADCAD0F2BE56DA303F9 /* EMEmojiableBtn-iOS7.1-EMEmojiableBtn */, 447 | C9512118109263EECB3EC4447A90D3F9 /* EMEmojiableBtn-iOS8.4 */, 448 | BF72D4AEEB94D838743D3EBE288138D9 /* EMEmojiableBtn-iOS8.4-EMEmojiableBtn */, 449 | 05E75DB18C8A798D4AB216BFC83A18E4 /* Pods-EMEmojiableBtn_Example */, 450 | 7E6A446A8E762D9152680AEA0909CD0B /* Pods-EMEmojiableBtn_Tests */, 451 | ); 452 | }; 453 | /* End PBXProject section */ 454 | 455 | /* Begin PBXResourcesBuildPhase section */ 456 | 0D28A0264F968679CE58118747F70F1A /* Resources */ = { 457 | isa = PBXResourcesBuildPhase; 458 | buildActionMask = 2147483647; 459 | files = ( 460 | ); 461 | runOnlyForDeploymentPostprocessing = 0; 462 | }; 463 | C4D934EB586FD428638EEDFCCE9AF30C /* Resources */ = { 464 | isa = PBXResourcesBuildPhase; 465 | buildActionMask = 2147483647; 466 | files = ( 467 | ); 468 | runOnlyForDeploymentPostprocessing = 0; 469 | }; 470 | /* End PBXResourcesBuildPhase section */ 471 | 472 | /* Begin PBXSourcesBuildPhase section */ 473 | 2076541AF57554ED66F3BC2A1EF5C868 /* Sources */ = { 474 | isa = PBXSourcesBuildPhase; 475 | buildActionMask = 2147483647; 476 | files = ( 477 | 801361BD895A4225902E7471858A663D /* Pods-EMEmojiableBtn_Example-dummy.m in Sources */, 478 | ); 479 | runOnlyForDeploymentPostprocessing = 0; 480 | }; 481 | 5D941E7549A7195D549767299CE70E6C /* Sources */ = { 482 | isa = PBXSourcesBuildPhase; 483 | buildActionMask = 2147483647; 484 | files = ( 485 | BEE31880D484053B0C1BF5995E823A14 /* EMEmojiableBtn-iOS7.1-dummy.m in Sources */, 486 | 61ADAE3FF00087D0F88854782F586179 /* EMEmojiableBtn.m in Sources */, 487 | E79B695FDE00A7EC7409A72753DA131E /* EMEmojiableBtnConfig.m in Sources */, 488 | E356EF2026E682DD8A9785049C97B892 /* EMEmojiableInformationView.m in Sources */, 489 | 1A1E2F4020135C9FF55D83DFF11E0AA5 /* EMEmojiableOption.m in Sources */, 490 | ); 491 | runOnlyForDeploymentPostprocessing = 0; 492 | }; 493 | 88FE1909883DF3FA668FF8ECF62DE8A6 /* Sources */ = { 494 | isa = PBXSourcesBuildPhase; 495 | buildActionMask = 2147483647; 496 | files = ( 497 | 6D54824FD7B0ACA400A113D8AE133971 /* EMEmojiableBtn-iOS8.4-dummy.m in Sources */, 498 | 16724A5B25EC822BC6B08B1486D06771 /* EMEmojiableBtn.m in Sources */, 499 | E3A1E97E805D07E66D833F8773549C46 /* EMEmojiableBtnConfig.m in Sources */, 500 | E68FF6E903CE65DC288220D5CE58C0CD /* EMEmojiableInformationView.m in Sources */, 501 | 6F9A8F4CCA63B70BF406E3EAF742FE8A /* EMEmojiableOption.m in Sources */, 502 | ); 503 | runOnlyForDeploymentPostprocessing = 0; 504 | }; 505 | B8CEEE75EDE0E43BF33B333678ABB0FA /* Sources */ = { 506 | isa = PBXSourcesBuildPhase; 507 | buildActionMask = 2147483647; 508 | files = ( 509 | 6EE652F88B306E03DD3323CE0CB242E6 /* Pods-EMEmojiableBtn_Tests-dummy.m in Sources */, 510 | ); 511 | runOnlyForDeploymentPostprocessing = 0; 512 | }; 513 | D3C352FFD5F80E26301D22BEBA7BD3AF /* Sources */ = { 514 | isa = PBXSourcesBuildPhase; 515 | buildActionMask = 2147483647; 516 | files = ( 517 | ); 518 | runOnlyForDeploymentPostprocessing = 0; 519 | }; 520 | EC2482A39449650DA5F5377DA167BAAE /* Sources */ = { 521 | isa = PBXSourcesBuildPhase; 522 | buildActionMask = 2147483647; 523 | files = ( 524 | ); 525 | runOnlyForDeploymentPostprocessing = 0; 526 | }; 527 | /* End PBXSourcesBuildPhase section */ 528 | 529 | /* Begin PBXTargetDependency section */ 530 | 23253FB99EEBB3BA66081F35C58C69ED /* PBXTargetDependency */ = { 531 | isa = PBXTargetDependency; 532 | name = "EMEmojiableBtn-iOS8.4-EMEmojiableBtn"; 533 | target = BF72D4AEEB94D838743D3EBE288138D9 /* EMEmojiableBtn-iOS8.4-EMEmojiableBtn */; 534 | targetProxy = D3C00F12CDA59F97982704E2AD810180 /* PBXContainerItemProxy */; 535 | }; 536 | 6234D66877C0F4D8925F5EE54CFA881A /* PBXTargetDependency */ = { 537 | isa = PBXTargetDependency; 538 | name = "EMEmojiableBtn-iOS7.1-EMEmojiableBtn"; 539 | target = 7705C23A88F72ADCAD0F2BE56DA303F9 /* EMEmojiableBtn-iOS7.1-EMEmojiableBtn */; 540 | targetProxy = DC60289E8E37123B71F98D52A6A40B5D /* PBXContainerItemProxy */; 541 | }; 542 | 7262C22AC705EDF16E03A625A7EF1A8C /* PBXTargetDependency */ = { 543 | isa = PBXTargetDependency; 544 | name = "EMEmojiableBtn-iOS8.4"; 545 | target = C9512118109263EECB3EC4447A90D3F9 /* EMEmojiableBtn-iOS8.4 */; 546 | targetProxy = 44818CA19D9ED88FFD2C8A213D77C946 /* PBXContainerItemProxy */; 547 | }; 548 | 9A366F997B3922F555733997080E77B7 /* PBXTargetDependency */ = { 549 | isa = PBXTargetDependency; 550 | name = "EMEmojiableBtn-iOS7.1"; 551 | target = 760B430BB8D8C38349E0F99C5F24E2A9 /* EMEmojiableBtn-iOS7.1 */; 552 | targetProxy = 93FF34EB7839BC0CE47F72C010F1218E /* PBXContainerItemProxy */; 553 | }; 554 | /* End PBXTargetDependency section */ 555 | 556 | /* Begin XCBuildConfiguration section */ 557 | 1DE879ACE8746F5DF3B854D99F39BC86 /* Debug */ = { 558 | isa = XCBuildConfiguration; 559 | baseConfigurationReference = A46D69249E912B50D6BB55CDAF0BD1CB /* EMEmojiableBtn-iOS8.4.xcconfig */; 560 | buildSettings = { 561 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 562 | DEBUG_INFORMATION_FORMAT = dwarf; 563 | ENABLE_STRICT_OBJC_MSGSEND = YES; 564 | GCC_NO_COMMON_BLOCKS = YES; 565 | GCC_PREFIX_HEADER = "Target Support Files/EMEmojiableBtn-iOS8.4/EMEmojiableBtn-iOS8.4-prefix.pch"; 566 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 567 | MTL_ENABLE_DEBUG_INFO = YES; 568 | OTHER_LDFLAGS = ""; 569 | OTHER_LIBTOOLFLAGS = ""; 570 | PRIVATE_HEADERS_FOLDER_PATH = ""; 571 | PRODUCT_NAME = "$(TARGET_NAME)"; 572 | PUBLIC_HEADERS_FOLDER_PATH = ""; 573 | SDKROOT = iphoneos; 574 | SKIP_INSTALL = YES; 575 | }; 576 | name = Debug; 577 | }; 578 | 2B498318F295631FED64273DC7E7C200 /* Release */ = { 579 | isa = XCBuildConfiguration; 580 | baseConfigurationReference = C21072DD3D747C7731026CD20B0B9B0F /* EMEmojiableBtn-iOS7.1.xcconfig */; 581 | buildSettings = { 582 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 583 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 584 | ENABLE_STRICT_OBJC_MSGSEND = YES; 585 | GCC_NO_COMMON_BLOCKS = YES; 586 | GCC_PREFIX_HEADER = "Target Support Files/EMEmojiableBtn-iOS7.1/EMEmojiableBtn-iOS7.1-prefix.pch"; 587 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 588 | MTL_ENABLE_DEBUG_INFO = NO; 589 | OTHER_LDFLAGS = ""; 590 | OTHER_LIBTOOLFLAGS = ""; 591 | PRIVATE_HEADERS_FOLDER_PATH = ""; 592 | PRODUCT_NAME = "$(TARGET_NAME)"; 593 | PUBLIC_HEADERS_FOLDER_PATH = ""; 594 | SDKROOT = iphoneos; 595 | SKIP_INSTALL = YES; 596 | }; 597 | name = Release; 598 | }; 599 | 2C442C92732ADBDBFA54CF4EA7B71CDF /* Release */ = { 600 | isa = XCBuildConfiguration; 601 | buildSettings = { 602 | ALWAYS_SEARCH_USER_PATHS = NO; 603 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 604 | CLANG_CXX_LIBRARY = "libc++"; 605 | CLANG_ENABLE_MODULES = YES; 606 | CLANG_ENABLE_OBJC_ARC = YES; 607 | CLANG_WARN_BOOL_CONVERSION = YES; 608 | CLANG_WARN_CONSTANT_CONVERSION = YES; 609 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 610 | CLANG_WARN_EMPTY_BODY = YES; 611 | CLANG_WARN_ENUM_CONVERSION = YES; 612 | CLANG_WARN_INT_CONVERSION = YES; 613 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 614 | CLANG_WARN_UNREACHABLE_CODE = YES; 615 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 616 | COPY_PHASE_STRIP = YES; 617 | ENABLE_NS_ASSERTIONS = NO; 618 | GCC_C_LANGUAGE_STANDARD = gnu99; 619 | GCC_PREPROCESSOR_DEFINITIONS = ( 620 | "POD_CONFIGURATION_RELEASE=1", 621 | "$(inherited)", 622 | ); 623 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 624 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 625 | GCC_WARN_UNDECLARED_SELECTOR = YES; 626 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 627 | GCC_WARN_UNUSED_FUNCTION = YES; 628 | GCC_WARN_UNUSED_VARIABLE = YES; 629 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 630 | STRIP_INSTALLED_PRODUCT = NO; 631 | SYMROOT = "${SRCROOT}/../build"; 632 | VALIDATE_PRODUCT = YES; 633 | }; 634 | name = Release; 635 | }; 636 | 33A85D48DA5BD530FD9EF9C103717BD7 /* Debug */ = { 637 | isa = XCBuildConfiguration; 638 | baseConfigurationReference = 798975FDD64448C28FB460198C136A5C /* Pods-EMEmojiableBtn_Example.debug.xcconfig */; 639 | buildSettings = { 640 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 641 | DEBUG_INFORMATION_FORMAT = dwarf; 642 | ENABLE_STRICT_OBJC_MSGSEND = YES; 643 | GCC_NO_COMMON_BLOCKS = YES; 644 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 645 | MACH_O_TYPE = staticlib; 646 | MTL_ENABLE_DEBUG_INFO = YES; 647 | OTHER_LDFLAGS = ""; 648 | OTHER_LIBTOOLFLAGS = ""; 649 | PODS_ROOT = "$(SRCROOT)"; 650 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 651 | PRODUCT_NAME = "$(TARGET_NAME)"; 652 | SDKROOT = iphoneos; 653 | SKIP_INSTALL = YES; 654 | }; 655 | name = Debug; 656 | }; 657 | 39F96E870F595216E6EE8D90BC124DB2 /* Release */ = { 658 | isa = XCBuildConfiguration; 659 | baseConfigurationReference = 98A81C071E71552E508CC1A80642BF77 /* Pods-EMEmojiableBtn_Tests.release.xcconfig */; 660 | buildSettings = { 661 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 662 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 663 | ENABLE_STRICT_OBJC_MSGSEND = YES; 664 | GCC_NO_COMMON_BLOCKS = YES; 665 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 666 | MACH_O_TYPE = staticlib; 667 | MTL_ENABLE_DEBUG_INFO = NO; 668 | OTHER_LDFLAGS = ""; 669 | OTHER_LIBTOOLFLAGS = ""; 670 | PODS_ROOT = "$(SRCROOT)"; 671 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 672 | PRODUCT_NAME = "$(TARGET_NAME)"; 673 | SDKROOT = iphoneos; 674 | SKIP_INSTALL = YES; 675 | }; 676 | name = Release; 677 | }; 678 | 4255DD760A5A0E050DDBCC03E6EEB941 /* Debug */ = { 679 | isa = XCBuildConfiguration; 680 | baseConfigurationReference = C21072DD3D747C7731026CD20B0B9B0F /* EMEmojiableBtn-iOS7.1.xcconfig */; 681 | buildSettings = { 682 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 683 | DEBUG_INFORMATION_FORMAT = dwarf; 684 | ENABLE_STRICT_OBJC_MSGSEND = YES; 685 | GCC_NO_COMMON_BLOCKS = YES; 686 | GCC_PREFIX_HEADER = "Target Support Files/EMEmojiableBtn-iOS7.1/EMEmojiableBtn-iOS7.1-prefix.pch"; 687 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 688 | MTL_ENABLE_DEBUG_INFO = YES; 689 | OTHER_LDFLAGS = ""; 690 | OTHER_LIBTOOLFLAGS = ""; 691 | PRIVATE_HEADERS_FOLDER_PATH = ""; 692 | PRODUCT_NAME = "$(TARGET_NAME)"; 693 | PUBLIC_HEADERS_FOLDER_PATH = ""; 694 | SDKROOT = iphoneos; 695 | SKIP_INSTALL = YES; 696 | }; 697 | name = Debug; 698 | }; 699 | 6B8FA4D4753F11CBE9E9FD97A1ECB6C8 /* Release */ = { 700 | isa = XCBuildConfiguration; 701 | baseConfigurationReference = A46D69249E912B50D6BB55CDAF0BD1CB /* EMEmojiableBtn-iOS8.4.xcconfig */; 702 | buildSettings = { 703 | CONFIGURATION_BUILD_DIR = "$CONFIGURATION_BUILD_DIR/EMEmojiableBtn-iOS8.4"; 704 | ENABLE_STRICT_OBJC_MSGSEND = YES; 705 | GCC_NO_COMMON_BLOCKS = YES; 706 | INFOPLIST_FILE = "Target Support Files/EMEmojiableBtn-iOS8.4/ResourceBundle-EMEmojiableBtn-Info.plist"; 707 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 708 | PRODUCT_NAME = EMEmojiableBtn; 709 | SDKROOT = iphoneos; 710 | SKIP_INSTALL = YES; 711 | TARGETED_DEVICE_FAMILY = "1,2"; 712 | WRAPPER_EXTENSION = bundle; 713 | }; 714 | name = Release; 715 | }; 716 | 87240788BB547BF28391C5833749E533 /* Debug */ = { 717 | isa = XCBuildConfiguration; 718 | baseConfigurationReference = C21072DD3D747C7731026CD20B0B9B0F /* EMEmojiableBtn-iOS7.1.xcconfig */; 719 | buildSettings = { 720 | CONFIGURATION_BUILD_DIR = "$CONFIGURATION_BUILD_DIR/EMEmojiableBtn-iOS7.1"; 721 | ENABLE_STRICT_OBJC_MSGSEND = YES; 722 | GCC_NO_COMMON_BLOCKS = YES; 723 | INFOPLIST_FILE = "Target Support Files/EMEmojiableBtn-iOS7.1/ResourceBundle-EMEmojiableBtn-Info.plist"; 724 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 725 | PRODUCT_NAME = EMEmojiableBtn; 726 | SDKROOT = iphoneos; 727 | SKIP_INSTALL = YES; 728 | TARGETED_DEVICE_FAMILY = "1,2"; 729 | WRAPPER_EXTENSION = bundle; 730 | }; 731 | name = Debug; 732 | }; 733 | 91FD1D3E842B8D3783ED5FD651C4BEE9 /* Release */ = { 734 | isa = XCBuildConfiguration; 735 | baseConfigurationReference = C21072DD3D747C7731026CD20B0B9B0F /* EMEmojiableBtn-iOS7.1.xcconfig */; 736 | buildSettings = { 737 | CONFIGURATION_BUILD_DIR = "$CONFIGURATION_BUILD_DIR/EMEmojiableBtn-iOS7.1"; 738 | ENABLE_STRICT_OBJC_MSGSEND = YES; 739 | GCC_NO_COMMON_BLOCKS = YES; 740 | INFOPLIST_FILE = "Target Support Files/EMEmojiableBtn-iOS7.1/ResourceBundle-EMEmojiableBtn-Info.plist"; 741 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 742 | PRODUCT_NAME = EMEmojiableBtn; 743 | SDKROOT = iphoneos; 744 | SKIP_INSTALL = YES; 745 | TARGETED_DEVICE_FAMILY = "1,2"; 746 | WRAPPER_EXTENSION = bundle; 747 | }; 748 | name = Release; 749 | }; 750 | CA05552CAAAE67A0671B8AB54AB2CC5C /* Release */ = { 751 | isa = XCBuildConfiguration; 752 | baseConfigurationReference = A46D69249E912B50D6BB55CDAF0BD1CB /* EMEmojiableBtn-iOS8.4.xcconfig */; 753 | buildSettings = { 754 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 755 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 756 | ENABLE_STRICT_OBJC_MSGSEND = YES; 757 | GCC_NO_COMMON_BLOCKS = YES; 758 | GCC_PREFIX_HEADER = "Target Support Files/EMEmojiableBtn-iOS8.4/EMEmojiableBtn-iOS8.4-prefix.pch"; 759 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 760 | MTL_ENABLE_DEBUG_INFO = NO; 761 | OTHER_LDFLAGS = ""; 762 | OTHER_LIBTOOLFLAGS = ""; 763 | PRIVATE_HEADERS_FOLDER_PATH = ""; 764 | PRODUCT_NAME = "$(TARGET_NAME)"; 765 | PUBLIC_HEADERS_FOLDER_PATH = ""; 766 | SDKROOT = iphoneos; 767 | SKIP_INSTALL = YES; 768 | }; 769 | name = Release; 770 | }; 771 | DB44C5CA5E7AC762546FE4E73ED003F3 /* Debug */ = { 772 | isa = XCBuildConfiguration; 773 | buildSettings = { 774 | ALWAYS_SEARCH_USER_PATHS = NO; 775 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 776 | CLANG_CXX_LIBRARY = "libc++"; 777 | CLANG_ENABLE_MODULES = YES; 778 | CLANG_ENABLE_OBJC_ARC = YES; 779 | CLANG_WARN_BOOL_CONVERSION = YES; 780 | CLANG_WARN_CONSTANT_CONVERSION = YES; 781 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 782 | CLANG_WARN_EMPTY_BODY = YES; 783 | CLANG_WARN_ENUM_CONVERSION = YES; 784 | CLANG_WARN_INT_CONVERSION = YES; 785 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 786 | CLANG_WARN_UNREACHABLE_CODE = YES; 787 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 788 | COPY_PHASE_STRIP = NO; 789 | ENABLE_TESTABILITY = YES; 790 | GCC_C_LANGUAGE_STANDARD = gnu99; 791 | GCC_DYNAMIC_NO_PIC = NO; 792 | GCC_OPTIMIZATION_LEVEL = 0; 793 | GCC_PREPROCESSOR_DEFINITIONS = ( 794 | "POD_CONFIGURATION_DEBUG=1", 795 | "DEBUG=1", 796 | "$(inherited)", 797 | ); 798 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 799 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 800 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 801 | GCC_WARN_UNDECLARED_SELECTOR = YES; 802 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 803 | GCC_WARN_UNUSED_FUNCTION = YES; 804 | GCC_WARN_UNUSED_VARIABLE = YES; 805 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 806 | ONLY_ACTIVE_ARCH = YES; 807 | STRIP_INSTALLED_PRODUCT = NO; 808 | SYMROOT = "${SRCROOT}/../build"; 809 | }; 810 | name = Debug; 811 | }; 812 | EE3A0E5C873A5286624D150E506E97A0 /* Debug */ = { 813 | isa = XCBuildConfiguration; 814 | baseConfigurationReference = F39BFD2B2F1EC0B2244EC79C984CAF15 /* Pods-EMEmojiableBtn_Tests.debug.xcconfig */; 815 | buildSettings = { 816 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 817 | DEBUG_INFORMATION_FORMAT = dwarf; 818 | ENABLE_STRICT_OBJC_MSGSEND = YES; 819 | GCC_NO_COMMON_BLOCKS = YES; 820 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 821 | MACH_O_TYPE = staticlib; 822 | MTL_ENABLE_DEBUG_INFO = YES; 823 | OTHER_LDFLAGS = ""; 824 | OTHER_LIBTOOLFLAGS = ""; 825 | PODS_ROOT = "$(SRCROOT)"; 826 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 827 | PRODUCT_NAME = "$(TARGET_NAME)"; 828 | SDKROOT = iphoneos; 829 | SKIP_INSTALL = YES; 830 | }; 831 | name = Debug; 832 | }; 833 | F0C8D5E6CD413A235E9F3FDAA2C26E0A /* Release */ = { 834 | isa = XCBuildConfiguration; 835 | baseConfigurationReference = A576B03C68FEEDC6B3B2F759A4053EC2 /* Pods-EMEmojiableBtn_Example.release.xcconfig */; 836 | buildSettings = { 837 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 838 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 839 | ENABLE_STRICT_OBJC_MSGSEND = YES; 840 | GCC_NO_COMMON_BLOCKS = YES; 841 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 842 | MACH_O_TYPE = staticlib; 843 | MTL_ENABLE_DEBUG_INFO = NO; 844 | OTHER_LDFLAGS = ""; 845 | OTHER_LIBTOOLFLAGS = ""; 846 | PODS_ROOT = "$(SRCROOT)"; 847 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 848 | PRODUCT_NAME = "$(TARGET_NAME)"; 849 | SDKROOT = iphoneos; 850 | SKIP_INSTALL = YES; 851 | }; 852 | name = Release; 853 | }; 854 | F28AB7240C46A9839F20EEA62E9A7962 /* Debug */ = { 855 | isa = XCBuildConfiguration; 856 | baseConfigurationReference = A46D69249E912B50D6BB55CDAF0BD1CB /* EMEmojiableBtn-iOS8.4.xcconfig */; 857 | buildSettings = { 858 | CONFIGURATION_BUILD_DIR = "$CONFIGURATION_BUILD_DIR/EMEmojiableBtn-iOS8.4"; 859 | ENABLE_STRICT_OBJC_MSGSEND = YES; 860 | GCC_NO_COMMON_BLOCKS = YES; 861 | INFOPLIST_FILE = "Target Support Files/EMEmojiableBtn-iOS8.4/ResourceBundle-EMEmojiableBtn-Info.plist"; 862 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 863 | PRODUCT_NAME = EMEmojiableBtn; 864 | SDKROOT = iphoneos; 865 | SKIP_INSTALL = YES; 866 | TARGETED_DEVICE_FAMILY = "1,2"; 867 | WRAPPER_EXTENSION = bundle; 868 | }; 869 | name = Debug; 870 | }; 871 | /* End XCBuildConfiguration section */ 872 | 873 | /* Begin XCConfigurationList section */ 874 | 119AD7AAF3EC5A86259EF1904A405099 /* Build configuration list for PBXNativeTarget "EMEmojiableBtn-iOS8.4-EMEmojiableBtn" */ = { 875 | isa = XCConfigurationList; 876 | buildConfigurations = ( 877 | F28AB7240C46A9839F20EEA62E9A7962 /* Debug */, 878 | 6B8FA4D4753F11CBE9E9FD97A1ECB6C8 /* Release */, 879 | ); 880 | defaultConfigurationIsVisible = 0; 881 | defaultConfigurationName = Release; 882 | }; 883 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 884 | isa = XCConfigurationList; 885 | buildConfigurations = ( 886 | DB44C5CA5E7AC762546FE4E73ED003F3 /* Debug */, 887 | 2C442C92732ADBDBFA54CF4EA7B71CDF /* Release */, 888 | ); 889 | defaultConfigurationIsVisible = 0; 890 | defaultConfigurationName = Release; 891 | }; 892 | 51E6BB94217C8814ED357D6F60BE298D /* Build configuration list for PBXNativeTarget "EMEmojiableBtn-iOS7.1" */ = { 893 | isa = XCConfigurationList; 894 | buildConfigurations = ( 895 | 4255DD760A5A0E050DDBCC03E6EEB941 /* Debug */, 896 | 2B498318F295631FED64273DC7E7C200 /* Release */, 897 | ); 898 | defaultConfigurationIsVisible = 0; 899 | defaultConfigurationName = Release; 900 | }; 901 | 542AF95DAAF6398925CA605B18F48A20 /* Build configuration list for PBXNativeTarget "Pods-EMEmojiableBtn_Example" */ = { 902 | isa = XCConfigurationList; 903 | buildConfigurations = ( 904 | 33A85D48DA5BD530FD9EF9C103717BD7 /* Debug */, 905 | F0C8D5E6CD413A235E9F3FDAA2C26E0A /* Release */, 906 | ); 907 | defaultConfigurationIsVisible = 0; 908 | defaultConfigurationName = Release; 909 | }; 910 | C1CF285ECCE5820821A7D70248D15632 /* Build configuration list for PBXNativeTarget "EMEmojiableBtn-iOS7.1-EMEmojiableBtn" */ = { 911 | isa = XCConfigurationList; 912 | buildConfigurations = ( 913 | 87240788BB547BF28391C5833749E533 /* Debug */, 914 | 91FD1D3E842B8D3783ED5FD651C4BEE9 /* Release */, 915 | ); 916 | defaultConfigurationIsVisible = 0; 917 | defaultConfigurationName = Release; 918 | }; 919 | CB6852636B3C6AED4474CC949A6CF8C3 /* Build configuration list for PBXNativeTarget "EMEmojiableBtn-iOS8.4" */ = { 920 | isa = XCConfigurationList; 921 | buildConfigurations = ( 922 | 1DE879ACE8746F5DF3B854D99F39BC86 /* Debug */, 923 | CA05552CAAAE67A0671B8AB54AB2CC5C /* Release */, 924 | ); 925 | defaultConfigurationIsVisible = 0; 926 | defaultConfigurationName = Release; 927 | }; 928 | DFB3EDF8E14B6793DE79E2A9E38BAAC8 /* Build configuration list for PBXNativeTarget "Pods-EMEmojiableBtn_Tests" */ = { 929 | isa = XCConfigurationList; 930 | buildConfigurations = ( 931 | EE3A0E5C873A5286624D150E506E97A0 /* Debug */, 932 | 39F96E870F595216E6EE8D90BC124DB2 /* Release */, 933 | ); 934 | defaultConfigurationIsVisible = 0; 935 | defaultConfigurationName = Release; 936 | }; 937 | /* End XCConfigurationList section */ 938 | }; 939 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 940 | } 941 | --------------------------------------------------------------------------------