Repository: KitchenStories/Elissa
Branch: master
Commit: 4544d91d479e
Files: 62
Total size: 142.7 KB
Directory structure:
gitextract_bke45ep5/
├── .gitignore
├── .travis.yml
├── Elissa/
│ ├── Assets/
│ │ ├── .gitkeep
│ │ └── Elissa.xib
│ ├── Classes/
│ │ ├── .gitkeep
│ │ ├── Elissa.swift
│ │ └── UIViewControllerExtension.swift
│ ├── Elissa.h
│ └── Info.plist
├── Elissa.podspec
├── Example/
│ ├── Elissa/
│ │ ├── AppDelegate.swift
│ │ ├── Base.lproj/
│ │ │ ├── LaunchScreen.xib
│ │ │ └── Main.storyboard
│ │ ├── Images.xcassets/
│ │ │ ├── AppIcon.appiconset/
│ │ │ │ └── Contents.json
│ │ │ ├── Contents.json
│ │ │ ├── folder-item.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── heartIcon.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── paper-plane-item.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── text-align-item.imageset/
│ │ │ │ └── Contents.json
│ │ │ ├── viewer-item.imageset/
│ │ │ │ └── Contents.json
│ │ │ └── wifi-item.imageset/
│ │ │ └── Contents.json
│ │ ├── Info.plist
│ │ └── ViewController.swift
│ ├── Elissa.xcodeproj/
│ │ ├── project.pbxproj
│ │ ├── project.xcworkspace/
│ │ │ └── contents.xcworkspacedata
│ │ └── xcshareddata/
│ │ └── xcschemes/
│ │ └── Elissa-Example.xcscheme
│ ├── Elissa.xcworkspace/
│ │ └── contents.xcworkspacedata
│ ├── Podfile
│ ├── Pods/
│ │ ├── Local Podspecs/
│ │ │ └── Elissa.podspec.json
│ │ ├── Pods.xcodeproj/
│ │ │ ├── project.pbxproj
│ │ │ ├── project.xcworkspace/
│ │ │ │ └── contents.xcworkspacedata
│ │ │ └── xcshareddata/
│ │ │ └── xcschemes/
│ │ │ └── Elissa.xcscheme
│ │ └── Target Support Files/
│ │ ├── Elissa/
│ │ │ ├── Elissa-dummy.m
│ │ │ ├── Elissa-prefix.pch
│ │ │ ├── Elissa-umbrella.h
│ │ │ ├── Elissa.modulemap
│ │ │ ├── Elissa.xcconfig
│ │ │ └── Info.plist
│ │ ├── Pods-Elissa_Example/
│ │ │ ├── Info.plist
│ │ │ ├── Pods-Elissa_Example-acknowledgements.markdown
│ │ │ ├── Pods-Elissa_Example-acknowledgements.plist
│ │ │ ├── Pods-Elissa_Example-dummy.m
│ │ │ ├── Pods-Elissa_Example-frameworks.sh
│ │ │ ├── Pods-Elissa_Example-resources.sh
│ │ │ ├── Pods-Elissa_Example-umbrella.h
│ │ │ ├── Pods-Elissa_Example.debug.xcconfig
│ │ │ ├── Pods-Elissa_Example.modulemap
│ │ │ └── Pods-Elissa_Example.release.xcconfig
│ │ └── Pods-Elissa_Tests/
│ │ ├── Info.plist
│ │ ├── Pods-Elissa_Tests-acknowledgements.markdown
│ │ ├── Pods-Elissa_Tests-acknowledgements.plist
│ │ ├── Pods-Elissa_Tests-dummy.m
│ │ ├── Pods-Elissa_Tests-frameworks.sh
│ │ ├── Pods-Elissa_Tests-resources.sh
│ │ ├── Pods-Elissa_Tests-umbrella.h
│ │ ├── Pods-Elissa_Tests.debug.xcconfig
│ │ ├── Pods-Elissa_Tests.modulemap
│ │ └── Pods-Elissa_Tests.release.xcconfig
│ └── Tests/
│ ├── Info.plist
│ └── Tests.swift
├── LICENSE
└── README.md
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitignore
================================================
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Build generated
build/
DerivedData/
## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/
## Other
*.moved-aside
*.xcuserstate
## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM
## Playgrounds
timeline.xctimeline
playground.xcworkspace
# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
.build/
# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/
# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts
Carthage/Build
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
================================================
FILE: .travis.yml
================================================
language: objective-c
podfile: Example/Podfile
env:
osx_image: xcode8.2
xcode_workspace: Example/Elissa.xcworkspace
xcode_scheme: Elissa
script:
- set -o pipefail && xcodebuild test -workspace Example/Elissa.xcworkspace -scheme
Elissa-Example -destination 'platform=iOS Simulator,name=iPhone 7,OS=10.1' ONLY_ACTIVE_ARCH=NO
| xcpretty
deploy:
provider: releases
api_key:
secure: cxo/ExW4y+5iNp8OgvIYmIGe7uCNwQUBapZTaDfvGdR5e4HErN97u+kLw4JCcaElixLe8tEM538alJCYLdypbITi7hM2XbdH5zOkXs7sC/2ODEG0b5bl8d4AC2Bfv0L4hOK5qFHffaLo7pBkiigXnqjtGzLjI/w0NEmgOzIWOe1BXDavnBQadfrdY6+8iMP/UqfuQrGnbS8NlNBbXoDdVTrEn5CBmrlFvT3m24nefHQk7TPTx+SuFqBBiAmqQMWBk54Nne+RnaeOSouHe6k8fnevRu/nbuzyPmAKUHPzV3Wlfdc8IhIbc4MGhTkew4Svj943WB98sgdOcXzpv72shiRPvzOLHn9DQhYd8oeYH0Ygt8tmoZZZb04bKFY5n0pmrckdt5NKKJk6/UltgJ3V+aEp13TgUfvmFmFb/6tHR5lzSKiG7FmVWO/6Pbiql4k0wCcwrz1gsEjmoHl6uOiQLFLVxOE7FESi9cFx79AxLT3VUIm15iolbw+6Dy6+Yt6P7u00OPCzhdWzWpqtQNUubWVU8zx3H+TmcMteeWeWMSdjVv+/6HYvb8qpGeMuY8IyKxS+8tX8BdMzsVGKOmV9uDqNR+myu4mr6L7LJ2C1DqNsb8oZhpcxhgXGiNOixQ/OH/t8GUV/ChLqtT7UZKzzZ+UFtp0HOHjbBHJLnwoTWuQ=
================================================
FILE: Elissa/Assets/.gitkeep
================================================
================================================
FILE: Elissa/Assets/Elissa.xib
================================================
================================================
FILE: Elissa/Classes/.gitkeep
================================================
================================================
FILE: Elissa/Classes/Elissa.swift
================================================
//
// Elissa.swift
// Kitchen Stories
//
// Created by Kersten Broich on 05/04/16.
// Copyright © 2016 Kitchen Stories. All rights reserved.
//
import UIKit
public class ElissaConfiguration: NSObject {
public var message: String?
public var image: UIImage?
public var backgroundColor: UIColor?
public var textColor: UIColor?
public var font: UIFont?
public var arrowOffset: CGFloat = 2
public override init() {}
}
open class Elissa: UIView {
@IBOutlet weak var messageLabel: UILabel!
@IBOutlet weak var iconImageView: UIImageView!
private let arrowSize: CGSize = CGSize(width: 20, height: 10)
private let popupHeight: CGFloat = 36.0
private let offsetToSourceView: CGFloat = 5.0
private var popupMinMarginScreenBounds: CGFloat = 5.0
private let configuration: ElissaConfiguration
private static var staticElissa: Elissa?
private var completionHandler: (() -> Void)?
private weak var sourceView: UIView?
private weak var triangleLayer: CAShapeLayer?
open static var isVisible: Bool {
return staticElissa != nil
}
internal init(sourceView: UIView, configuration: ElissaConfiguration, completionHandler: (() -> Void)?) {
self.configuration = configuration
self.completionHandler = completionHandler
self.sourceView = sourceView
super.init(frame: CGRect.zero)
let bundle = Bundle(for: type(of: self))
let views = bundle.loadNibNamed("Elissa", owner: self, options: nil)
guard let embeddedContentView = views?.first as? UIView else { return }
addSubview(embeddedContentView)
embeddedContentView.backgroundColor = configuration.backgroundColor
messageLabel.text = configuration.message
messageLabel.font = configuration.font
messageLabel.textColor = configuration.textColor
layoutIfNeeded()
if let image = configuration.image {
iconImageView.image = image
iconImageView.tintColor = configuration.textColor
} else {
iconImageView.removeFromSuperview()
}
calculatePositon()
embeddedContentView.layer.cornerRadius = 3.0
embeddedContentView.frame = CGRect(x: 0, y: 0, width: frame.size.width, height: frame.size.height)
bringSubview(toFront: embeddedContentView)
}
open override func didMoveToSuperview() {
super.didMoveToSuperview()
calculatePositon()
}
required public init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
open static func dismiss() {
if let staticElissa = staticElissa {
staticElissa.removeFromSuperview()
self.staticElissa = nil
}
NotificationCenter.default.removeObserver(self)
}
static func showElissa(_ sourceView: UIView, configuration: ElissaConfiguration, completionHandler: (() -> Void)?) -> Elissa {
NotificationCenter.default.addObserver(self, selector: #selector(dismiss), name: NSNotification.Name.UIDeviceOrientationDidChange, object: nil)
let staticElissa = Elissa(sourceView: sourceView, configuration: configuration, completionHandler: completionHandler)
self.staticElissa = staticElissa
return staticElissa
}
@IBAction func actionButtonTapped(_ sender: UIButton) {
completionHandler?()
}
private func calculatePositon() {
guard let sourceView = sourceView else { return }
var updatedFrame = CGRect()
let margin: CGFloat = 8
if configuration.image != nil {
updatedFrame.size.width = iconImageView.frame.size.width + messageLabel.frame.size.width + margin * 3
} else {
updatedFrame.size.width = messageLabel.frame.size.width + margin * 2
}
updatedFrame.size.height = popupHeight
updatedFrame.origin.x = sourceView.center.x - updatedFrame.size.width / 2
updatedFrame.origin.y = (sourceView.frame.origin.y - popupHeight) - arrowSize.height + configuration.arrowOffset
frame = updatedFrame
layer.cornerRadius = 5
let checkPoint = frame.maxX
let appWidth = superview?.frame.width ?? UIScreen.main.applicationFrame.size.width
var offset: CGFloat = 0.0
if checkPoint > appWidth {
offset = checkPoint - appWidth + popupMinMarginScreenBounds
} else if frame.origin.x < 5 {
offset = frame.origin.x - popupMinMarginScreenBounds
}
applyOffset(offset, view: self)
drawTriangleForTabBarItemIndicator(self, sourceView: sourceView)
}
private func drawTriangleForTabBarItemIndicator(_ contentView: UIView, sourceView: UIView) {
triangleLayer?.removeFromSuperlayer()
let shapeLayer = CAShapeLayer()
let path = UIBezierPath()
let startPoint = (sourceView.center.x - arrowSize.width / 2) - contentView.frame.origin.x
path.move(to: CGPoint(x: startPoint, y: contentView.frame.size.height))
path.addLine(to: CGPoint(x: startPoint + (arrowSize.width / 2), y: contentView.frame.size.height + arrowSize.height))
path.addLine(to: CGPoint(x: startPoint + arrowSize.width, y: contentView.frame.size.height))
path.close()
shapeLayer.path = path.cgPath
shapeLayer.fillColor = (configuration.backgroundColor ?? self.tintColor).cgColor
contentView.layer.addSublayer(shapeLayer)
triangleLayer = shapeLayer
}
private func applyOffset(_ offset: CGFloat, view: UIView) {
var frame = view.frame
frame.origin.x -= offset
view.frame = frame
}
}
================================================
FILE: Elissa/Classes/UIViewControllerExtension.swift
================================================
//
// UIViewControllerExtension.swift
// Pods
//
// Created by Kersten Broich on 27/05/16.
//
//
import UIKit
extension UIViewController {
public func showElissaFromTabbar(at index: Int, configuration: ElissaConfiguration, onTouchHandler: (() -> Void)?) {
guard
let tabBarController = tabBarController,
index <= tabBarController.tabBar.items?.count ?? 0,
let view = tabBarController.tabBar.items?[index].value(forKey: "view") as? UIView
else { return }
if Elissa.isVisible {
Elissa.dismiss()
}
let delayTime = DispatchTime.now() + Double(Int64(0.2 * Double(NSEC_PER_SEC))) / Double(NSEC_PER_SEC)
DispatchQueue.main.asyncAfter(deadline: delayTime) { [unowned self] _ in
let elissa = Elissa.showElissa(self.updatePresentingFrame(view), configuration: configuration, completionHandler: onTouchHandler)
self.tabBarController?.view.addSubview(elissa)
elissa.transform = CGAffineTransform(scaleX: 0.8, y: 0.8)
UIView.animate(withDuration: 0.3, delay: 0, usingSpringWithDamping: 0.2, initialSpringVelocity: 6, options: UIViewAnimationOptions(), animations: {
elissa.transform = CGAffineTransform.identity
}, completion: { _ in
self.tabBarController?.view.bringSubview(toFront: elissa)
})
}
}
private func updatePresentingFrame(_ sourceView: UIView) -> UIView {
var sourceFrame = sourceView.frame
if let height = tabBarController?.tabBar.frame.size.height {
sourceFrame.origin.y = UIScreen.main.applicationFrame.size.height - height / 2
}
return UIView(frame: sourceFrame)
}
}
extension UIView {
public func showElissa(fromSourceView sourceView: UIView, configuration: ElissaConfiguration, onTouchHandler: (() -> Void)?) -> Elissa {
let elissa = Elissa(sourceView: sourceView, configuration: configuration, completionHandler: onTouchHandler)
self.addSubview(elissa)
elissa.transform = CGAffineTransform(scaleX: 0.8, y: 0.8)
UIView.animate(withDuration: 0.3, delay: 0, usingSpringWithDamping: 0.2, initialSpringVelocity: 6, options: UIViewAnimationOptions(), animations: {
elissa.transform = CGAffineTransform.identity
}, completion: { _ in
self.bringSubview(toFront: elissa)
})
return elissa
}
}
================================================
FILE: Elissa/Elissa.h
================================================
//
// Elissa.h
// Elissa
//
// Created by Justus Kandzi on 25/01/2017.
// Copyright © 2017 AJNS New Media GMBH. All rights reserved.
//
#import
//! Project version number for Elissa.
FOUNDATION_EXPORT double ElissaVersionNumber;
//! Project version string for Elissa.
FOUNDATION_EXPORT const unsigned char ElissaVersionString[];
// In this header, you should import all the public headers of your framework using statements like #import
================================================
FILE: Elissa/Info.plist
================================================
CFBundleDevelopmentRegion
en
CFBundleExecutable
$(EXECUTABLE_NAME)
CFBundleIdentifier
$(PRODUCT_BUNDLE_IDENTIFIER)
CFBundleInfoDictionaryVersion
6.0
CFBundleName
$(PRODUCT_NAME)
CFBundlePackageType
FMWK
CFBundleShortVersionString
1.0
CFBundleVersion
$(CURRENT_PROJECT_VERSION)
NSHumanReadableCopyright
Copyright © 2017 AJNS New Media GMBH. All rights reserved.
NSPrincipalClass
================================================
FILE: Elissa.podspec
================================================
#
# Be sure to run `pod lib lint Elissa.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Elissa'
s.version = '3.0'
s.summary = 'Easy notification popup.'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = 'Elissa displays a notification on top of a UITabBarItem or any anchor view to reveal additional information.'
s.homepage = 'https://github.com/KitchenStories/Elissa'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Kersten Broich' => 'kersten.broich@gmail.com' }
s.source = { :git => 'https://github.com/KitchenStories/Elissa.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/kersten_broich'
s.ios.deployment_target = '8.0'
s.source_files = 'Elissa/Classes/**/*'
s.resources = ["Elissa/Assets/*.xib"]
# s.resource_bundles = {
# 'Elissa' => ['Elissa/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end
================================================
FILE: Example/Elissa/AppDelegate.swift
================================================
//
// AppDelegate.swift
// Elissa
//
// Created by Kersten Broich on 05/25/2016.
// Copyright (c) 2016 Kersten Broich. All rights reserved.
//
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey : Any]? = nil) -> Bool {
return true
}
}
================================================
FILE: Example/Elissa/Base.lproj/LaunchScreen.xib
================================================
================================================
FILE: Example/Elissa/Base.lproj/Main.storyboard
================================================
================================================
FILE: Example/Elissa/Images.xcassets/AppIcon.appiconset/Contents.json
================================================
{
"images" : [
{
"idiom" : "iphone",
"size" : "20x20",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "20x20",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "29x29",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "40x40",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "40x40",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "60x60",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "60x60",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: Example/Elissa/Images.xcassets/Contents.json
================================================
{
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: Example/Elissa/Images.xcassets/folder-item.imageset/Contents.json
================================================
{
"images" : [
{
"idiom" : "universal",
"filename" : "folder-plus-7.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: Example/Elissa/Images.xcassets/heartIcon.imageset/Contents.json
================================================
{
"images" : [
{
"idiom" : "universal",
"filename" : "icon_heart.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "icon_heart@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "icon_heart@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
},
"properties" : {
"template-rendering-intent" : "template"
}
}
================================================
FILE: Example/Elissa/Images.xcassets/paper-plane-item.imageset/Contents.json
================================================
{
"images" : [
{
"idiom" : "universal",
"filename" : "paper-plane-7.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: Example/Elissa/Images.xcassets/text-align-item.imageset/Contents.json
================================================
{
"images" : [
{
"idiom" : "universal",
"filename" : "text-align-justify-7.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: Example/Elissa/Images.xcassets/viewer-item.imageset/Contents.json
================================================
{
"images" : [
{
"idiom" : "universal",
"filename" : "viewer-7.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: Example/Elissa/Images.xcassets/wifi-item.imageset/Contents.json
================================================
{
"images" : [
{
"idiom" : "universal",
"filename" : "wifi-signal-7.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}
================================================
FILE: Example/Elissa/Info.plist
================================================
CFBundleDevelopmentRegion
en
CFBundleExecutable
$(EXECUTABLE_NAME)
CFBundleIdentifier
$(PRODUCT_BUNDLE_IDENTIFIER)
CFBundleInfoDictionaryVersion
6.0
CFBundleName
$(PRODUCT_NAME)
CFBundlePackageType
APPL
CFBundleShortVersionString
1.0
CFBundleSignature
????
CFBundleVersion
1
LSRequiresIPhoneOS
UILaunchStoryboardName
LaunchScreen
UIMainStoryboardFile
Main
UIRequiredDeviceCapabilities
armv7
UISupportedInterfaceOrientations
UIInterfaceOrientationPortrait
UIInterfaceOrientationLandscapeLeft
UIInterfaceOrientationLandscapeRight
================================================
FILE: Example/Elissa/ViewController.swift
================================================
//
// ViewController.swift
// Elissa
//
// Created by Kersten Broich on 05/25/2016.
// Copyright (c) 2016 Kersten Broich. All rights reserved.
//
import UIKit
import Elissa
class ViewController: UIViewController {
private var elissa: Elissa?
private var elissaConfiguration: ElissaConfiguration {
let elissaConfig = ElissaConfiguration()
elissaConfig.message = "Find your favorites here"
elissaConfig.image = UIImage(named: "heartIcon")
elissaConfig.font = UIFont.systemFont(ofSize: 17)
elissaConfig.textColor = UIColor(red: 91/255, green: 91/255, blue: 91/255, alpha: 1.0)
elissaConfig.backgroundColor = UIColor(red: 241/255, green: 215/255, blue: 85/255, alpha: 1.0)
return elissaConfig
}
@IBOutlet weak var elissaSwitch: UISwitch!
@IBOutlet weak var someActionButton: UIButton!
@IBOutlet weak var configLabel: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
someActionButton.backgroundColor = .clear
someActionButton.layer.cornerRadius = 5
someActionButton.layer.borderWidth = 1
someActionButton.layer.borderColor = someActionButton.tintColor.cgColor
someActionButton.contentEdgeInsets = UIEdgeInsets(top: 10, left: 25, bottom: 10, right: 25)
elissaSwitch.onTintColor = someActionButton.tintColor
configLabel.textColor = .darkGray
configLabel.text = "Present from Tabbar"
elissaSwitch.setOn(true, animated: false)
}
@IBAction func someActionTrigger(sender: UIButton) {
if elissaSwitch.isOn {
presentFromTabBar()
} else {
presentFrom(anchorView: sender)
}
}
@IBAction func didChangeSwitch(_ sender: Any) {
if elissaSwitch.isOn {
configLabel.text = "Present from Tabbar"
} else {
configLabel.text = "Present from anchor view"
}
}
private func presentFromTabBar() {
showElissaFromTabbar(at: 4, configuration: elissaConfiguration) {
Elissa.dismiss()
}
}
private func presentFrom(anchorView: UIView) {
if let elissa = elissa {
elissa.removeFromSuperview()
}
elissa = view.showElissa(fromSourceView: anchorView, configuration: elissaConfiguration) { [unowned self] in
self.elissa?.removeFromSuperview()
}
}
}
================================================
FILE: Example/Elissa.xcodeproj/project.pbxproj
================================================
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
34C475771D5B8C5400F5C376 /* Elissa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 34C475761D5B8C5400F5C376 /* Elissa.framework */; };
5A2114C671249A197AE44A4C /* Pods_Elissa_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D53A9ECBC4E4E5C296F4451 /* Pods_Elissa_Tests.framework */; };
607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; };
607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; };
607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; };
607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; };
607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; };
607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; };
C79C02ABBBD98B2D45E7FADD /* Pods_Elissa_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 58F567B725EEB4538427650D /* Pods_Elissa_Example.framework */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 607FACC81AFB9204008FA782 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 607FACCF1AFB9204008FA782;
remoteInfo = Elissa;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
1D53A9ECBC4E4E5C296F4451 /* Pods_Elissa_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Elissa_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
34C475761D5B8C5400F5C376 /* Elissa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Elissa.framework; path = "../../../../Library/Developer/Xcode/DerivedData/Elissa-hdzlbyxrhghhpjhjjvaycutatcii/Build/Products/Debug-iphoneos/Elissa/Elissa.framework"; sourceTree = ""; };
44A4983BD2D849D10E9494A9 /* Pods-Elissa_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Elissa_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Elissa_Tests/Pods-Elissa_Tests.debug.xcconfig"; sourceTree = ""; };
4BA1D8919C77272CA1389CA2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; };
58F567B725EEB4538427650D /* Pods_Elissa_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Elissa_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
607FACD01AFB9204008FA782 /* Elissa_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Elissa_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; };
607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; };
607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; };
607FACE51AFB9204008FA782 /* Elissa_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Elissa_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; };
8AB8A0954AA47CF29981C086 /* Pods-Elissa_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Elissa_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-Elissa_Example/Pods-Elissa_Example.release.xcconfig"; sourceTree = ""; };
91872D2CEFBB2BE3DE3A85F6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; };
A2F02B84FBDA852D487BB7ED /* Pods-Elissa_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Elissa_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Elissa_Example/Pods-Elissa_Example.debug.xcconfig"; sourceTree = ""; };
A924A4EE6E96EC5796FC7202 /* Elissa.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Elissa.podspec; path = ../Elissa.podspec; sourceTree = ""; };
C365584CCB0B8009DF72E50D /* Pods-Elissa_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Elissa_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-Elissa_Tests/Pods-Elissa_Tests.release.xcconfig"; sourceTree = ""; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
607FACCD1AFB9204008FA782 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
34C475771D5B8C5400F5C376 /* Elissa.framework in Frameworks */,
C79C02ABBBD98B2D45E7FADD /* Pods_Elissa_Example.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
607FACE21AFB9204008FA782 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5A2114C671249A197AE44A4C /* Pods_Elissa_Tests.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
607FACC71AFB9204008FA782 = {
isa = PBXGroup;
children = (
607FACF51AFB993E008FA782 /* Podspec Metadata */,
607FACD21AFB9204008FA782 /* Example for Elissa */,
607FACE81AFB9204008FA782 /* Tests */,
607FACD11AFB9204008FA782 /* Products */,
6A9FDAC5CB2ED9E82ECB7D0F /* Pods */,
AF10AE0A5B0715EDD60C8538 /* Frameworks */,
);
sourceTree = "";
};
607FACD11AFB9204008FA782 /* Products */ = {
isa = PBXGroup;
children = (
607FACD01AFB9204008FA782 /* Elissa_Example.app */,
607FACE51AFB9204008FA782 /* Elissa_Tests.xctest */,
);
name = Products;
sourceTree = "";
};
607FACD21AFB9204008FA782 /* Example for Elissa */ = {
isa = PBXGroup;
children = (
607FACD51AFB9204008FA782 /* AppDelegate.swift */,
607FACD71AFB9204008FA782 /* ViewController.swift */,
607FACD91AFB9204008FA782 /* Main.storyboard */,
607FACDC1AFB9204008FA782 /* Images.xcassets */,
607FACDE1AFB9204008FA782 /* LaunchScreen.xib */,
607FACD31AFB9204008FA782 /* Supporting Files */,
);
name = "Example for Elissa";
path = Elissa;
sourceTree = "";
};
607FACD31AFB9204008FA782 /* Supporting Files */ = {
isa = PBXGroup;
children = (
607FACD41AFB9204008FA782 /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "";
};
607FACE81AFB9204008FA782 /* Tests */ = {
isa = PBXGroup;
children = (
607FACEB1AFB9204008FA782 /* Tests.swift */,
607FACE91AFB9204008FA782 /* Supporting Files */,
);
path = Tests;
sourceTree = "";
};
607FACE91AFB9204008FA782 /* Supporting Files */ = {
isa = PBXGroup;
children = (
607FACEA1AFB9204008FA782 /* Info.plist */,
);
name = "Supporting Files";
sourceTree = "";
};
607FACF51AFB993E008FA782 /* Podspec Metadata */ = {
isa = PBXGroup;
children = (
A924A4EE6E96EC5796FC7202 /* Elissa.podspec */,
91872D2CEFBB2BE3DE3A85F6 /* README.md */,
4BA1D8919C77272CA1389CA2 /* LICENSE */,
);
name = "Podspec Metadata";
sourceTree = "";
};
6A9FDAC5CB2ED9E82ECB7D0F /* Pods */ = {
isa = PBXGroup;
children = (
A2F02B84FBDA852D487BB7ED /* Pods-Elissa_Example.debug.xcconfig */,
8AB8A0954AA47CF29981C086 /* Pods-Elissa_Example.release.xcconfig */,
44A4983BD2D849D10E9494A9 /* Pods-Elissa_Tests.debug.xcconfig */,
C365584CCB0B8009DF72E50D /* Pods-Elissa_Tests.release.xcconfig */,
);
name = Pods;
sourceTree = "";
};
AF10AE0A5B0715EDD60C8538 /* Frameworks */ = {
isa = PBXGroup;
children = (
34C475761D5B8C5400F5C376 /* Elissa.framework */,
58F567B725EEB4538427650D /* Pods_Elissa_Example.framework */,
1D53A9ECBC4E4E5C296F4451 /* Pods_Elissa_Tests.framework */,
);
name = Frameworks;
sourceTree = "";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
607FACCF1AFB9204008FA782 /* Elissa_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "Elissa_Example" */;
buildPhases = (
9B32B9C83CC213130F606FF2 /* 📦 Check Pods Manifest.lock */,
607FACCC1AFB9204008FA782 /* Sources */,
607FACCD1AFB9204008FA782 /* Frameworks */,
607FACCE1AFB9204008FA782 /* Resources */,
257E7895B5F39BA3F2F8055E /* 📦 Embed Pods Frameworks */,
8D1C2E7580FE7B21332682AC /* 📦 Copy Pods Resources */,
);
buildRules = (
);
dependencies = (
);
name = Elissa_Example;
productName = Elissa;
productReference = 607FACD01AFB9204008FA782 /* Elissa_Example.app */;
productType = "com.apple.product-type.application";
};
607FACE41AFB9204008FA782 /* Elissa_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "Elissa_Tests" */;
buildPhases = (
4FFA887EBE3D7F56AA0E91C8 /* 📦 Check Pods Manifest.lock */,
607FACE11AFB9204008FA782 /* Sources */,
607FACE21AFB9204008FA782 /* Frameworks */,
607FACE31AFB9204008FA782 /* Resources */,
05F703203A3741687B3834E1 /* 📦 Embed Pods Frameworks */,
9B9EF1E7AAD67BEB1FA2BB99 /* 📦 Copy Pods Resources */,
);
buildRules = (
);
dependencies = (
607FACE71AFB9204008FA782 /* PBXTargetDependency */,
);
name = Elissa_Tests;
productName = Tests;
productReference = 607FACE51AFB9204008FA782 /* Elissa_Tests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
607FACC81AFB9204008FA782 /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0720;
LastUpgradeCheck = 0810;
ORGANIZATIONNAME = CocoaPods;
TargetAttributes = {
607FACCF1AFB9204008FA782 = {
CreatedOnToolsVersion = 6.3.1;
DevelopmentTeam = J7JW5Y53G5;
LastSwiftMigration = 0800;
};
607FACE41AFB9204008FA782 = {
CreatedOnToolsVersion = 6.3.1;
DevelopmentTeam = J7JW5Y53G5;
LastSwiftMigration = 0800;
TestTargetID = 607FACCF1AFB9204008FA782;
};
};
};
buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "Elissa" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = 607FACC71AFB9204008FA782;
productRefGroup = 607FACD11AFB9204008FA782 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
607FACCF1AFB9204008FA782 /* Elissa_Example */,
607FACE41AFB9204008FA782 /* Elissa_Tests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
607FACCE1AFB9204008FA782 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */,
607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */,
607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
607FACE31AFB9204008FA782 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
05F703203A3741687B3834E1 /* 📦 Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "📦 Embed Pods Frameworks";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Elissa_Tests/Pods-Elissa_Tests-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
257E7895B5F39BA3F2F8055E /* 📦 Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "📦 Embed Pods Frameworks";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Elissa_Example/Pods-Elissa_Example-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
4FFA887EBE3D7F56AA0E91C8 /* 📦 Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "📦 Check Pods Manifest.lock";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
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";
showEnvVarsInLog = 0;
};
8D1C2E7580FE7B21332682AC /* 📦 Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "📦 Copy Pods Resources";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Elissa_Example/Pods-Elissa_Example-resources.sh\"\n";
showEnvVarsInLog = 0;
};
9B32B9C83CC213130F606FF2 /* 📦 Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "📦 Check Pods Manifest.lock";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
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";
showEnvVarsInLog = 0;
};
9B9EF1E7AAD67BEB1FA2BB99 /* 📦 Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "📦 Copy Pods Resources";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Elissa_Tests/Pods-Elissa_Tests-resources.sh\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
607FACCC1AFB9204008FA782 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
607FACD81AFB9204008FA782 /* ViewController.swift in Sources */,
607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
607FACE11AFB9204008FA782 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
607FACEC1AFB9204008FA782 /* Tests.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
607FACE71AFB9204008FA782 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 607FACCF1AFB9204008FA782 /* Elissa_Example */;
targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
607FACD91AFB9204008FA782 /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
607FACDA1AFB9204008FA782 /* Base */,
);
name = Main.storyboard;
sourceTree = "";
};
607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = {
isa = PBXVariantGroup;
children = (
607FACDF1AFB9204008FA782 /* Base */,
);
name = LaunchScreen.xib;
sourceTree = "";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
607FACED1AFB9204008FA782 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 4.0;
};
name = Debug;
};
607FACEE1AFB9204008FA782 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_VERSION = 4.0;
VALIDATE_PRODUCT = YES;
};
name = Release;
};
607FACF01AFB9204008FA782 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = A2F02B84FBDA852D487BB7ED /* Pods-Elissa_Example.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = J7JW5Y53G5;
INFOPLIST_FILE = Elissa/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 3.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
607FACF11AFB9204008FA782 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 8AB8A0954AA47CF29981C086 /* Pods-Elissa_Example.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
DEVELOPMENT_TEAM = J7JW5Y53G5;
INFOPLIST_FILE = Elissa/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 3.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
607FACF31AFB9204008FA782 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 44A4983BD2D849D10E9494A9 /* Pods-Elissa_Tests.debug.xcconfig */;
buildSettings = {
DEVELOPMENT_TEAM = J7JW5Y53G5;
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
);
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
);
INFOPLIST_FILE = Tests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 3.0;
};
name = Debug;
};
607FACF41AFB9204008FA782 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = C365584CCB0B8009DF72E50D /* Pods-Elissa_Tests.release.xcconfig */;
buildSettings = {
DEVELOPMENT_TEAM = J7JW5Y53G5;
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
);
INFOPLIST_FILE = Tests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 3.0;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "Elissa" */ = {
isa = XCConfigurationList;
buildConfigurations = (
607FACED1AFB9204008FA782 /* Debug */,
607FACEE1AFB9204008FA782 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "Elissa_Example" */ = {
isa = XCConfigurationList;
buildConfigurations = (
607FACF01AFB9204008FA782 /* Debug */,
607FACF11AFB9204008FA782 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "Elissa_Tests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
607FACF31AFB9204008FA782 /* Debug */,
607FACF41AFB9204008FA782 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = 607FACC81AFB9204008FA782 /* Project object */;
}
================================================
FILE: Example/Elissa.xcodeproj/project.xcworkspace/contents.xcworkspacedata
================================================
================================================
FILE: Example/Elissa.xcodeproj/xcshareddata/xcschemes/Elissa-Example.xcscheme
================================================
================================================
FILE: Example/Elissa.xcworkspace/contents.xcworkspacedata
================================================
================================================
FILE: Example/Podfile
================================================
use_frameworks!
target 'Elissa_Example' do
pod 'Elissa', :path => '../'
target 'Elissa_Tests' do
inherit! :search_paths
end
end
================================================
FILE: Example/Pods/Local Podspecs/Elissa.podspec.json
================================================
{
"name": "Elissa",
"version": "0.1.0",
"summary": "A short description of Elissa.",
"description": "TODO: Add long description of the pod here.",
"homepage": "https://github.com//Elissa",
"license": {
"type": "MIT",
"file": "LICENSE"
},
"authors": {
"Kersten Broich": "kersten.broich@gmail.com"
},
"source": {
"git": "https://github.com//Elissa.git",
"tag": "0.1.0"
},
"platforms": {
"ios": "8.0"
},
"source_files": "Elissa/Classes/**/*",
"resources": [
"Elissa/Assets/*.xib"
]
}
================================================
FILE: Example/Pods/Pods.xcodeproj/project.pbxproj
================================================
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
02B2A334EFCA70B6D4ECBB374203AE57 /* Elissa-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D3BB577F37A6E963450A7228312999D /* Elissa-dummy.m */; };
11BC0D088DFB73BA3D3E722B499F478A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; };
1F7D21F72CD0AA115FF6C975AFC91275 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; };
21CC0CB5A528A92BC0D764DF3150F801 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; };
46ED75B31C1B78277C6BF14F4031E364 /* Elissa.xib in Resources */ = {isa = PBXBuildFile; fileRef = B71CA11682DD202AB623E0E7A7DAEB04 /* Elissa.xib */; };
4DCDB2469E1BFC27B0F11696CD6D667A /* Pods-Elissa_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 85C38D53C9819EF73C826B4EF2C547A0 /* Pods-Elissa_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
7D90EB27139846184C7BDE5C8B99C8E7 /* Elissa-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E321B1228E1994054BFA886B0AC23284 /* Elissa-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
94A36FC4CB8D8B1E64EC37CE76C54509 /* Pods-Elissa_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C9D905C78305372478A8635D107516F /* Pods-Elissa_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A2DE3DBF14EAA747449D06FB847326C1 /* Pods-Elissa_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A08B62C214F7F637A0FC4AC93DC4412C /* Pods-Elissa_Example-dummy.m */; };
B32B4893B7B1C5DBD82310251906E3B8 /* Elissa.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84E64FC9A3BDBE8C5B8300D3F9437189 /* Elissa.swift */; };
B4ABFA80C86626CE6D65501AE3E626AD /* Pods-Elissa_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F4FD91A1CD88F162BAA1AF7B56D7D1B /* Pods-Elissa_Tests-dummy.m */; };
DE58E7DDE739DCBB25B05D4DD3CC21A5 /* UIViewControllerExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A40A870CA7F8FEFF775186000C0CDB8 /* UIViewControllerExtension.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
DA5A924A42A736C1001996B156C260C5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = BE83D5FE47D45402DF9E625699856043;
remoteInfo = Elissa;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
117BF226984736A43FE89516BE629799 /* Pods-Elissa_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Elissa_Tests.modulemap"; sourceTree = ""; };
1C023A13679115466894DDEC562D0EEC /* Pods_Elissa_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Elissa_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1C9D905C78305372478A8635D107516F /* Pods-Elissa_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Elissa_Tests-umbrella.h"; sourceTree = ""; };
2D3BB577F37A6E963450A7228312999D /* Elissa-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Elissa-dummy.m"; sourceTree = ""; };
3117E4644BD28AB1B912A4CBD41328D4 /* Pods-Elissa_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Elissa_Example-acknowledgements.markdown"; sourceTree = ""; };
35FC9F4369E58C89C58E1EE99F67707F /* Pods-Elissa_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Elissa_Example.release.xcconfig"; sourceTree = ""; };
36050465F8447035ED47183ED560A984 /* Pods-Elissa_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Elissa_Example.debug.xcconfig"; sourceTree = ""; };
40986DB3A1F6E1656A3E5D856397B83A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
4F0C95B49DC6C0313DCE026E50506CFF /* Pods-Elissa_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-Elissa_Example.modulemap"; sourceTree = ""; };
4FACE636222980731C66B7DEE6DF9EEB /* Pods-Elissa_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Elissa_Tests-acknowledgements.markdown"; sourceTree = ""; };
5F4FD91A1CD88F162BAA1AF7B56D7D1B /* Pods-Elissa_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Elissa_Tests-dummy.m"; sourceTree = ""; };
5FCE513D9014D3FFF1C763E43DCA4AB0 /* Pods_Elissa_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Elissa_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
63264435EDE126B9153BDE97A5EE22FA /* Pods-Elissa_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Elissa_Tests-resources.sh"; sourceTree = ""; };
65F0E98948B50D5A97FFE342509A714E /* Elissa.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Elissa.modulemap; sourceTree = ""; };
777D7EFB12F5BCA6AF3ED450210BFC0F /* Pods-Elissa_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Elissa_Tests-acknowledgements.plist"; sourceTree = ""; };
7A40A870CA7F8FEFF775186000C0CDB8 /* UIViewControllerExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = UIViewControllerExtension.swift; sourceTree = ""; };
7DE513A925A79FE3C5E939194B06F504 /* Pods-Elissa_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Elissa_Tests.debug.xcconfig"; sourceTree = ""; };
84E64FC9A3BDBE8C5B8300D3F9437189 /* Elissa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Elissa.swift; sourceTree = ""; };
85C38D53C9819EF73C826B4EF2C547A0 /* Pods-Elissa_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Elissa_Example-umbrella.h"; sourceTree = ""; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
A08B62C214F7F637A0FC4AC93DC4412C /* Pods-Elissa_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Elissa_Example-dummy.m"; sourceTree = ""; };
A906523A0DA6D816C19AB9429A88370A /* Elissa-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Elissa-prefix.pch"; sourceTree = ""; };
B71CA11682DD202AB623E0E7A7DAEB04 /* Elissa.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = Elissa.xib; sourceTree = ""; };
B9C27175768F8042BC505D9AA8B74E87 /* Pods-Elissa_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Elissa_Tests-frameworks.sh"; sourceTree = ""; };
BE14C3E933982EB7538074000F44AB37 /* Pods-Elissa_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Elissa_Example-resources.sh"; sourceTree = ""; };
C312D7DB5AB52716995777EFEEBA73E1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
C7CF3E11FB5759434E540A11F6018395 /* Pods-Elissa_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Elissa_Example-frameworks.sh"; sourceTree = ""; };
CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
DBAF3A195C062D0946F08BD79078F962 /* Elissa.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Elissa.xcconfig; sourceTree = ""; };
E321B1228E1994054BFA886B0AC23284 /* Elissa-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Elissa-umbrella.h"; sourceTree = ""; };
E3CD7308EF3E1D4F45F34D82DC9F3E64 /* Elissa.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Elissa.framework; sourceTree = BUILT_PRODUCTS_DIR; };
E53F7004D01D87F2A684CD19090598FE /* Pods-Elissa_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Elissa_Tests.release.xcconfig"; sourceTree = ""; };
EE58E964EBF7ADFE08DDFC11BDD8781E /* Pods-Elissa_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Elissa_Example-acknowledgements.plist"; sourceTree = ""; };
F8C05D40CD39BD64DA977AA9E5D9874B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
39BCCEDFE110BD49D9083706C9F218EB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
21CC0CB5A528A92BC0D764DF3150F801 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
43454C3B7CF784FFCCDD205A75BFEA98 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
11BC0D088DFB73BA3D3E722B499F478A /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
AC56B6123DF6AC8DB49F2AB35A16F889 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
1F7D21F72CD0AA115FF6C975AFC91275 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
0710265882E35F97627E8A8B6CB8E926 /* Support Files */ = {
isa = PBXGroup;
children = (
65F0E98948B50D5A97FFE342509A714E /* Elissa.modulemap */,
DBAF3A195C062D0946F08BD79078F962 /* Elissa.xcconfig */,
2D3BB577F37A6E963450A7228312999D /* Elissa-dummy.m */,
A906523A0DA6D816C19AB9429A88370A /* Elissa-prefix.pch */,
E321B1228E1994054BFA886B0AC23284 /* Elissa-umbrella.h */,
C312D7DB5AB52716995777EFEEBA73E1 /* Info.plist */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/Elissa";
sourceTree = "";
};
114B15F78827EDF56C9AB72A16109ABB /* Development Pods */ = {
isa = PBXGroup;
children = (
F3DF2E1AE019AD75C4F4D162E26017BC /* Elissa */,
);
name = "Development Pods";
sourceTree = "";
};
35F3590802899D495B2993952E696A35 /* Pods-Elissa_Example */ = {
isa = PBXGroup;
children = (
40986DB3A1F6E1656A3E5D856397B83A /* Info.plist */,
4F0C95B49DC6C0313DCE026E50506CFF /* Pods-Elissa_Example.modulemap */,
3117E4644BD28AB1B912A4CBD41328D4 /* Pods-Elissa_Example-acknowledgements.markdown */,
EE58E964EBF7ADFE08DDFC11BDD8781E /* Pods-Elissa_Example-acknowledgements.plist */,
A08B62C214F7F637A0FC4AC93DC4412C /* Pods-Elissa_Example-dummy.m */,
C7CF3E11FB5759434E540A11F6018395 /* Pods-Elissa_Example-frameworks.sh */,
BE14C3E933982EB7538074000F44AB37 /* Pods-Elissa_Example-resources.sh */,
85C38D53C9819EF73C826B4EF2C547A0 /* Pods-Elissa_Example-umbrella.h */,
36050465F8447035ED47183ED560A984 /* Pods-Elissa_Example.debug.xcconfig */,
35FC9F4369E58C89C58E1EE99F67707F /* Pods-Elissa_Example.release.xcconfig */,
);
name = "Pods-Elissa_Example";
path = "Target Support Files/Pods-Elissa_Example";
sourceTree = "";
};
3DCAB2B7CDE207B3958B6CB957FCC758 /* iOS */ = {
isa = PBXGroup;
children = (
CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */,
);
name = iOS;
sourceTree = "";
};
4710AB31E15F55742F6864F88F9724FB /* Pods-Elissa_Tests */ = {
isa = PBXGroup;
children = (
F8C05D40CD39BD64DA977AA9E5D9874B /* Info.plist */,
117BF226984736A43FE89516BE629799 /* Pods-Elissa_Tests.modulemap */,
4FACE636222980731C66B7DEE6DF9EEB /* Pods-Elissa_Tests-acknowledgements.markdown */,
777D7EFB12F5BCA6AF3ED450210BFC0F /* Pods-Elissa_Tests-acknowledgements.plist */,
5F4FD91A1CD88F162BAA1AF7B56D7D1B /* Pods-Elissa_Tests-dummy.m */,
B9C27175768F8042BC505D9AA8B74E87 /* Pods-Elissa_Tests-frameworks.sh */,
63264435EDE126B9153BDE97A5EE22FA /* Pods-Elissa_Tests-resources.sh */,
1C9D905C78305372478A8635D107516F /* Pods-Elissa_Tests-umbrella.h */,
7DE513A925A79FE3C5E939194B06F504 /* Pods-Elissa_Tests.debug.xcconfig */,
E53F7004D01D87F2A684CD19090598FE /* Pods-Elissa_Tests.release.xcconfig */,
);
name = "Pods-Elissa_Tests";
path = "Target Support Files/Pods-Elissa_Tests";
sourceTree = "";
};
5D46DC6A032751A1749CB350E670CED4 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
35F3590802899D495B2993952E696A35 /* Pods-Elissa_Example */,
4710AB31E15F55742F6864F88F9724FB /* Pods-Elissa_Tests */,
);
name = "Targets Support Files";
sourceTree = "";
};
66703C8FBD74A2A353D4A42CC672E261 /* Elissa */ = {
isa = PBXGroup;
children = (
8621AB46CD0C8F8423A37E5B74DB9853 /* Classes */,
);
path = Elissa;
sourceTree = "";
};
71C04DF55D40E093B500F79B039171A6 /* Elissa */ = {
isa = PBXGroup;
children = (
C4E689875CF99BD2173707C028E71FA5 /* Assets */,
);
path = Elissa;
sourceTree = "";
};
73CE24B119CD40160E42523C68384093 /* Products */ = {
isa = PBXGroup;
children = (
E3CD7308EF3E1D4F45F34D82DC9F3E64 /* Elissa.framework */,
1C023A13679115466894DDEC562D0EEC /* Pods_Elissa_Example.framework */,
5FCE513D9014D3FFF1C763E43DCA4AB0 /* Pods_Elissa_Tests.framework */,
);
name = Products;
sourceTree = "";
};
7DB346D0F39D3F0E887471402A8071AB = {
isa = PBXGroup;
children = (
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
114B15F78827EDF56C9AB72A16109ABB /* Development Pods */,
BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */,
73CE24B119CD40160E42523C68384093 /* Products */,
5D46DC6A032751A1749CB350E670CED4 /* Targets Support Files */,
);
sourceTree = "";
};
8621AB46CD0C8F8423A37E5B74DB9853 /* Classes */ = {
isa = PBXGroup;
children = (
84E64FC9A3BDBE8C5B8300D3F9437189 /* Elissa.swift */,
7A40A870CA7F8FEFF775186000C0CDB8 /* UIViewControllerExtension.swift */,
);
path = Classes;
sourceTree = "";
};
8C6A23C82A342FE8EBA601CB2FA2F919 /* Resources */ = {
isa = PBXGroup;
children = (
71C04DF55D40E093B500F79B039171A6 /* Elissa */,
);
name = Resources;
sourceTree = "";
};
BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = {
isa = PBXGroup;
children = (
3DCAB2B7CDE207B3958B6CB957FCC758 /* iOS */,
);
name = Frameworks;
sourceTree = "";
};
C4E689875CF99BD2173707C028E71FA5 /* Assets */ = {
isa = PBXGroup;
children = (
B71CA11682DD202AB623E0E7A7DAEB04 /* Elissa.xib */,
);
path = Assets;
sourceTree = "";
};
F3DF2E1AE019AD75C4F4D162E26017BC /* Elissa */ = {
isa = PBXGroup;
children = (
66703C8FBD74A2A353D4A42CC672E261 /* Elissa */,
8C6A23C82A342FE8EBA601CB2FA2F919 /* Resources */,
0710265882E35F97627E8A8B6CB8E926 /* Support Files */,
);
name = Elissa;
path = ../..;
sourceTree = "";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
5F5D30C5BB8D275887B71CF2566AB260 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
4DCDB2469E1BFC27B0F11696CD6D667A /* Pods-Elissa_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
EE0C37AE11278E0D611081A20DD39008 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
7D90EB27139846184C7BDE5C8B99C8E7 /* Elissa-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
F719A25A17E9650E5990BA6D5F4EAB33 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
94A36FC4CB8D8B1E64EC37CE76C54509 /* Pods-Elissa_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
10ACC537D6BF30A3B72EA7D57B905550 /* Pods-Elissa_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = 7D1A1375D1E8C5DB59A90175C53CA46E /* Build configuration list for PBXNativeTarget "Pods-Elissa_Tests" */;
buildPhases = (
2009C02007ED88DB3A85D87E4CF09A9F /* Sources */,
43454C3B7CF784FFCCDD205A75BFEA98 /* Frameworks */,
F719A25A17E9650E5990BA6D5F4EAB33 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = "Pods-Elissa_Tests";
productName = "Pods-Elissa_Tests";
productReference = 5FCE513D9014D3FFF1C763E43DCA4AB0 /* Pods_Elissa_Tests.framework */;
productType = "com.apple.product-type.framework";
};
92C8E1109742A03772789025FBDAF788 /* Pods-Elissa_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = 65EFD9E4382AAB5D99C7019701F2D0AC /* Build configuration list for PBXNativeTarget "Pods-Elissa_Example" */;
buildPhases = (
0C494C305C80BA2E61A5E9203ECB4F40 /* Sources */,
39BCCEDFE110BD49D9083706C9F218EB /* Frameworks */,
5F5D30C5BB8D275887B71CF2566AB260 /* Headers */,
);
buildRules = (
);
dependencies = (
DCAF9D98A4FE341B742311561B6D9A11 /* PBXTargetDependency */,
);
name = "Pods-Elissa_Example";
productName = "Pods-Elissa_Example";
productReference = 1C023A13679115466894DDEC562D0EEC /* Pods_Elissa_Example.framework */;
productType = "com.apple.product-type.framework";
};
BE83D5FE47D45402DF9E625699856043 /* Elissa */ = {
isa = PBXNativeTarget;
buildConfigurationList = AADFC9EA0FDDC81DB21B78AB20F4A382 /* Build configuration list for PBXNativeTarget "Elissa" */;
buildPhases = (
C3A9B2C4F6AE0343EB66DE2E305E3E1F /* Sources */,
AC56B6123DF6AC8DB49F2AB35A16F889 /* Frameworks */,
66F6C618A3EF1919F494A69FB1383678 /* Resources */,
EE0C37AE11278E0D611081A20DD39008 /* Headers */,
);
buildRules = (
);
dependencies = (
);
name = Elissa;
productName = Elissa;
productReference = E3CD7308EF3E1D4F45F34D82DC9F3E64 /* Elissa.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0730;
LastUpgradeCheck = 0700;
TargetAttributes = {
BE83D5FE47D45402DF9E625699856043 = {
LastSwiftMigration = 0800;
};
};
};
buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
);
mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
productRefGroup = 73CE24B119CD40160E42523C68384093 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
BE83D5FE47D45402DF9E625699856043 /* Elissa */,
92C8E1109742A03772789025FBDAF788 /* Pods-Elissa_Example */,
10ACC537D6BF30A3B72EA7D57B905550 /* Pods-Elissa_Tests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
66F6C618A3EF1919F494A69FB1383678 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
46ED75B31C1B78277C6BF14F4031E364 /* Elissa.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
0C494C305C80BA2E61A5E9203ECB4F40 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
A2DE3DBF14EAA747449D06FB847326C1 /* Pods-Elissa_Example-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
2009C02007ED88DB3A85D87E4CF09A9F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
B4ABFA80C86626CE6D65501AE3E626AD /* Pods-Elissa_Tests-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C3A9B2C4F6AE0343EB66DE2E305E3E1F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
02B2A334EFCA70B6D4ECBB374203AE57 /* Elissa-dummy.m in Sources */,
B32B4893B7B1C5DBD82310251906E3B8 /* Elissa.swift in Sources */,
DE58E7DDE739DCBB25B05D4DD3CC21A5 /* UIViewControllerExtension.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
DCAF9D98A4FE341B742311561B6D9A11 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = Elissa;
target = BE83D5FE47D45402DF9E625699856043 /* Elissa */;
targetProxy = DA5A924A42A736C1001996B156C260C5 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
034E7D5C21CD58F297199FA5DE38EB3A /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7DE513A925A79FE3C5E939194B06F504 /* Pods-Elissa_Tests.debug.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = dwarf;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "Target Support Files/Pods-Elissa_Tests/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-Elissa_Tests/Pods-Elissa_Tests.modulemap";
MTL_ENABLE_DEBUG_INFO = YES;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = Pods_Elissa_Tests;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
0ACDCBCB0B6796575F46FFA2F5410C6B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = YES;
ENABLE_NS_ASSERTIONS = NO;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_PREPROCESSOR_DEFINITIONS = (
"POD_CONFIGURATION_RELEASE=1",
"$(inherited)",
);
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
STRIP_INSTALLED_PRODUCT = NO;
SYMROOT = "${SRCROOT}/../build";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
48EE5E33852018875BFB09F12F2D8941 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = DBAF3A195C062D0946F08BD79078F962 /* Elissa.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
GCC_PREFIX_HEADER = "Target Support Files/Elissa/Elissa-prefix.pch";
INFOPLIST_FILE = "Target Support Files/Elissa/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = "Target Support Files/Elissa/Elissa.modulemap";
MTL_ENABLE_DEBUG_INFO = NO;
PRODUCT_NAME = Elissa;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_VERSION = 3.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
753B89F2E45D17C48D5047C9367AD92D /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 36050465F8447035ED47183ED560A984 /* Pods-Elissa_Example.debug.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = dwarf;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "Target Support Files/Pods-Elissa_Example/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-Elissa_Example/Pods-Elissa_Example.modulemap";
MTL_ENABLE_DEBUG_INFO = YES;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = Pods_Elissa_Example;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
BEBA5FC08690B051F34444B4D80665A0 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = DBAF3A195C062D0946F08BD79078F962 /* Elissa.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = dwarf;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
GCC_PREFIX_HEADER = "Target Support Files/Elissa/Elissa-prefix.pch";
INFOPLIST_FILE = "Target Support Files/Elissa/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = "Target Support Files/Elissa/Elissa.modulemap";
MTL_ENABLE_DEBUG_INFO = YES;
PRODUCT_NAME = Elissa;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 3.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
CA81AC955E28E1C1931711AB5265C3DF /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 35FC9F4369E58C89C58E1EE99F67707F /* Pods-Elissa_Example.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "Target Support Files/Pods-Elissa_Example/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-Elissa_Example/Pods-Elissa_Example.modulemap";
MTL_ENABLE_DEBUG_INFO = NO;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = Pods_Elissa_Example;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
D3E3D092A3FF7311A98E44BBA36FFD12 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"POD_CONFIGURATION_DEBUG=1",
"DEBUG=1",
"$(inherited)",
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
ONLY_ACTIVE_ARCH = YES;
STRIP_INSTALLED_PRODUCT = NO;
SYMROOT = "${SRCROOT}/../build";
};
name = Debug;
};
E9A64012765962A8E85BCE5E2D7550DF /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = E53F7004D01D87F2A684CD19090598FE /* Pods-Elissa_Tests.release.xcconfig */;
buildSettings = {
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "Target Support Files/Pods-Elissa_Tests/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACH_O_TYPE = staticlib;
MODULEMAP_FILE = "Target Support Files/Pods-Elissa_Tests/Pods-Elissa_Tests.modulemap";
MTL_ENABLE_DEBUG_INFO = NO;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = Pods_Elissa_Tests;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = {
isa = XCConfigurationList;
buildConfigurations = (
D3E3D092A3FF7311A98E44BBA36FFD12 /* Debug */,
0ACDCBCB0B6796575F46FFA2F5410C6B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
65EFD9E4382AAB5D99C7019701F2D0AC /* Build configuration list for PBXNativeTarget "Pods-Elissa_Example" */ = {
isa = XCConfigurationList;
buildConfigurations = (
753B89F2E45D17C48D5047C9367AD92D /* Debug */,
CA81AC955E28E1C1931711AB5265C3DF /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
7D1A1375D1E8C5DB59A90175C53CA46E /* Build configuration list for PBXNativeTarget "Pods-Elissa_Tests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
034E7D5C21CD58F297199FA5DE38EB3A /* Debug */,
E9A64012765962A8E85BCE5E2D7550DF /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
AADFC9EA0FDDC81DB21B78AB20F4A382 /* Build configuration list for PBXNativeTarget "Elissa" */ = {
isa = XCConfigurationList;
buildConfigurations = (
BEBA5FC08690B051F34444B4D80665A0 /* Debug */,
48EE5E33852018875BFB09F12F2D8941 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
}
================================================
FILE: Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata
================================================
================================================
FILE: Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Elissa.xcscheme
================================================
================================================
FILE: Example/Pods/Target Support Files/Elissa/Elissa-dummy.m
================================================
#import
@interface PodsDummy_Elissa : NSObject
@end
@implementation PodsDummy_Elissa
@end
================================================
FILE: Example/Pods/Target Support Files/Elissa/Elissa-prefix.pch
================================================
#ifdef __OBJC__
#import
#endif
================================================
FILE: Example/Pods/Target Support Files/Elissa/Elissa-umbrella.h
================================================
#import
FOUNDATION_EXPORT double ElissaVersionNumber;
FOUNDATION_EXPORT const unsigned char ElissaVersionString[];
================================================
FILE: Example/Pods/Target Support Files/Elissa/Elissa.modulemap
================================================
framework module Elissa {
umbrella header "Elissa-umbrella.h"
export *
module * { export * }
}
================================================
FILE: Example/Pods/Target Support Files/Elissa/Elissa.xcconfig
================================================
CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/Elissa
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public"
OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
SKIP_INSTALL = YES
================================================
FILE: Example/Pods/Target Support Files/Elissa/Info.plist
================================================
CFBundleDevelopmentRegion
en
CFBundleExecutable
${EXECUTABLE_NAME}
CFBundleIdentifier
${PRODUCT_BUNDLE_IDENTIFIER}
CFBundleInfoDictionaryVersion
6.0
CFBundleName
${PRODUCT_NAME}
CFBundlePackageType
FMWK
CFBundleShortVersionString
0.1.0
CFBundleSignature
????
CFBundleVersion
${CURRENT_PROJECT_VERSION}
NSPrincipalClass
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Example/Info.plist
================================================
CFBundleDevelopmentRegion
en
CFBundleExecutable
${EXECUTABLE_NAME}
CFBundleIdentifier
${PRODUCT_BUNDLE_IDENTIFIER}
CFBundleInfoDictionaryVersion
6.0
CFBundleName
${PRODUCT_NAME}
CFBundlePackageType
FMWK
CFBundleShortVersionString
1.0.0
CFBundleSignature
????
CFBundleVersion
${CURRENT_PROJECT_VERSION}
NSPrincipalClass
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Example/Pods-Elissa_Example-acknowledgements.markdown
================================================
# Acknowledgements
This application makes use of the following third party libraries:
## Elissa
Copyright (c) 2016 Kersten Broich
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Generated by CocoaPods - https://cocoapods.org
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Example/Pods-Elissa_Example-acknowledgements.plist
================================================
PreferenceSpecifiers
FooterText
This application makes use of the following third party libraries:
Title
Acknowledgements
Type
PSGroupSpecifier
FooterText
Copyright (c) 2016 Kersten Broich <kersten.broich@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Title
Elissa
Type
PSGroupSpecifier
FooterText
Generated by CocoaPods - https://cocoapods.org
Title
Type
PSGroupSpecifier
StringsTable
Acknowledgements
Title
Acknowledgements
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Example/Pods-Elissa_Example-dummy.m
================================================
#import
@interface PodsDummy_Pods_Elissa_Example : NSObject
@end
@implementation PodsDummy_Pods_Elissa_Example
@end
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Example/Pods-Elissa_Example-frameworks.sh
================================================
#!/bin/sh
set -e
echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}"
install_framework()
{
if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then
local source="${BUILT_PRODUCTS_DIR}/$1"
elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then
local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")"
elif [ -r "$1" ]; then
local source="$1"
fi
local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink "${source}")"
fi
# use filter instead of exclude so missing patterns dont' throw errors
echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\""
rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}"
local basename
basename="$(basename -s .framework "$1")"
binary="${destination}/${basename}.framework/${basename}"
if ! [ -r "$binary" ]; then
binary="${destination}/${basename}"
fi
# Strip invalid architectures so "fat" simulator / device frameworks work on device
if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then
strip_invalid_archs "$binary"
fi
# Resign the code if required by the build settings to avoid unstable apps
code_sign_if_enabled "${destination}/$(basename "$1")"
# Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.
if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then
local swift_runtime_libs
swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]})
for lib in $swift_runtime_libs; do
echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\""
rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}"
code_sign_if_enabled "${destination}/${lib}"
done
fi
}
# Signs a framework with the provided identity
code_sign_if_enabled() {
if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then
# Use the current code_sign_identitiy
echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}"
echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\""
/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1"
fi
}
# Strip invalid architectures
strip_invalid_archs() {
binary="$1"
# Get architectures for current file
archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)"
stripped=""
for arch in $archs; do
if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then
# Strip non-valid architectures in-place
lipo -remove "$arch" -output "$binary" "$binary" || exit 1
stripped="$stripped $arch"
fi
done
if [[ "$stripped" ]]; then
echo "Stripped $binary of architectures:$stripped"
fi
}
if [[ "$CONFIGURATION" == "Debug" ]]; then
install_framework "$BUILT_PRODUCTS_DIR/Elissa/Elissa.framework"
fi
if [[ "$CONFIGURATION" == "Release" ]]; then
install_framework "$BUILT_PRODUCTS_DIR/Elissa/Elissa.framework"
fi
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Example/Pods-Elissa_Example-resources.sh
================================================
#!/bin/sh
set -e
mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
> "$RESOURCES_TO_COPY"
XCASSET_FILES=()
case "${TARGETED_DEVICE_FAMILY}" in
1,2)
TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone"
;;
1)
TARGET_DEVICE_ARGS="--target-device iphone"
;;
2)
TARGET_DEVICE_ARGS="--target-device ipad"
;;
*)
TARGET_DEVICE_ARGS="--target-device mac"
;;
esac
realpath() {
DIRECTORY="$(cd "${1%/*}" && pwd)"
FILENAME="${1##*/}"
echo "$DIRECTORY/$FILENAME"
}
install_resource()
{
if [[ "$1" = /* ]] ; then
RESOURCE_PATH="$1"
else
RESOURCE_PATH="${PODS_ROOT}/$1"
fi
if [[ ! -e "$RESOURCE_PATH" ]] ; then
cat << EOM
error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script.
EOM
exit 1
fi
case $RESOURCE_PATH in
*.storyboard)
echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}"
ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS}
;;
*.xib)
echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT}"
ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}"
;;
*.framework)
echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
;;
*.xcdatamodel)
echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\""
xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom"
;;
*.xcdatamodeld)
echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\""
xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd"
;;
*.xcmappingmodel)
echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\""
xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm"
;;
*.xcassets)
ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH")
XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE")
;;
*)
echo "$RESOURCE_PATH"
echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY"
;;
esac
}
mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then
mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi
rm -f "$RESOURCES_TO_COPY"
if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ]
then
# Find all other xcassets (this unfortunately includes those of path pods and other targets).
OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d)
while read line; do
if [[ $line != "`realpath $PODS_ROOT`*" ]]; then
XCASSET_FILES+=("$line")
fi
done <<<"$OTHER_XCASSETS"
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}"
fi
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Example/Pods-Elissa_Example-umbrella.h
================================================
#import
FOUNDATION_EXPORT double Pods_Elissa_ExampleVersionNumber;
FOUNDATION_EXPORT const unsigned char Pods_Elissa_ExampleVersionString[];
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Example/Pods-Elissa_Example.debug.xcconfig
================================================
EMBEDDED_CONTENT_CONTAINS_SWIFT = YES
FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Elissa"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Elissa/Elissa.framework/Headers"
OTHER_LDFLAGS = $(inherited) -framework "Elissa"
OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}/Pods
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Example/Pods-Elissa_Example.modulemap
================================================
framework module Pods_Elissa_Example {
umbrella header "Pods-Elissa_Example-umbrella.h"
export *
module * { export * }
}
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Example/Pods-Elissa_Example.release.xcconfig
================================================
EMBEDDED_CONTENT_CONTAINS_SWIFT = YES
FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Elissa"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Elissa/Elissa.framework/Headers"
OTHER_LDFLAGS = $(inherited) -framework "Elissa"
OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}/Pods
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Tests/Info.plist
================================================
CFBundleDevelopmentRegion
en
CFBundleExecutable
${EXECUTABLE_NAME}
CFBundleIdentifier
${PRODUCT_BUNDLE_IDENTIFIER}
CFBundleInfoDictionaryVersion
6.0
CFBundleName
${PRODUCT_NAME}
CFBundlePackageType
FMWK
CFBundleShortVersionString
1.0.0
CFBundleSignature
????
CFBundleVersion
${CURRENT_PROJECT_VERSION}
NSPrincipalClass
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Tests/Pods-Elissa_Tests-acknowledgements.markdown
================================================
# Acknowledgements
This application makes use of the following third party libraries:
Generated by CocoaPods - https://cocoapods.org
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Tests/Pods-Elissa_Tests-acknowledgements.plist
================================================
PreferenceSpecifiers
FooterText
This application makes use of the following third party libraries:
Title
Acknowledgements
Type
PSGroupSpecifier
FooterText
Generated by CocoaPods - https://cocoapods.org
Title
Type
PSGroupSpecifier
StringsTable
Acknowledgements
Title
Acknowledgements
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Tests/Pods-Elissa_Tests-dummy.m
================================================
#import
@interface PodsDummy_Pods_Elissa_Tests : NSObject
@end
@implementation PodsDummy_Pods_Elissa_Tests
@end
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Tests/Pods-Elissa_Tests-frameworks.sh
================================================
#!/bin/sh
set -e
echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}"
install_framework()
{
if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then
local source="${BUILT_PRODUCTS_DIR}/$1"
elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then
local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")"
elif [ -r "$1" ]; then
local source="$1"
fi
local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
if [ -L "${source}" ]; then
echo "Symlinked..."
source="$(readlink "${source}")"
fi
# use filter instead of exclude so missing patterns dont' throw errors
echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\""
rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}"
local basename
basename="$(basename -s .framework "$1")"
binary="${destination}/${basename}.framework/${basename}"
if ! [ -r "$binary" ]; then
binary="${destination}/${basename}"
fi
# Strip invalid architectures so "fat" simulator / device frameworks work on device
if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then
strip_invalid_archs "$binary"
fi
# Resign the code if required by the build settings to avoid unstable apps
code_sign_if_enabled "${destination}/$(basename "$1")"
# Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.
if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then
local swift_runtime_libs
swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]})
for lib in $swift_runtime_libs; do
echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\""
rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}"
code_sign_if_enabled "${destination}/${lib}"
done
fi
}
# Signs a framework with the provided identity
code_sign_if_enabled() {
if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then
# Use the current code_sign_identitiy
echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}"
echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\""
/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1"
fi
}
# Strip invalid architectures
strip_invalid_archs() {
binary="$1"
# Get architectures for current file
archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)"
stripped=""
for arch in $archs; do
if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then
# Strip non-valid architectures in-place
lipo -remove "$arch" -output "$binary" "$binary" || exit 1
stripped="$stripped $arch"
fi
done
if [[ "$stripped" ]]; then
echo "Stripped $binary of architectures:$stripped"
fi
}
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Tests/Pods-Elissa_Tests-resources.sh
================================================
#!/bin/sh
set -e
mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
> "$RESOURCES_TO_COPY"
XCASSET_FILES=()
case "${TARGETED_DEVICE_FAMILY}" in
1,2)
TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone"
;;
1)
TARGET_DEVICE_ARGS="--target-device iphone"
;;
2)
TARGET_DEVICE_ARGS="--target-device ipad"
;;
*)
TARGET_DEVICE_ARGS="--target-device mac"
;;
esac
realpath() {
DIRECTORY="$(cd "${1%/*}" && pwd)"
FILENAME="${1##*/}"
echo "$DIRECTORY/$FILENAME"
}
install_resource()
{
if [[ "$1" = /* ]] ; then
RESOURCE_PATH="$1"
else
RESOURCE_PATH="${PODS_ROOT}/$1"
fi
if [[ ! -e "$RESOURCE_PATH" ]] ; then
cat << EOM
error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script.
EOM
exit 1
fi
case $RESOURCE_PATH in
*.storyboard)
echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}"
ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS}
;;
*.xib)
echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT}"
ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}"
;;
*.framework)
echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
;;
*.xcdatamodel)
echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\""
xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom"
;;
*.xcdatamodeld)
echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\""
xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd"
;;
*.xcmappingmodel)
echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\""
xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm"
;;
*.xcassets)
ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH")
XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE")
;;
*)
echo "$RESOURCE_PATH"
echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY"
;;
esac
}
mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then
mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi
rm -f "$RESOURCES_TO_COPY"
if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ]
then
# Find all other xcassets (this unfortunately includes those of path pods and other targets).
OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d)
while read line; do
if [[ $line != "`realpath $PODS_ROOT`*" ]]; then
XCASSET_FILES+=("$line")
fi
done <<<"$OTHER_XCASSETS"
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}"
fi
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Tests/Pods-Elissa_Tests-umbrella.h
================================================
#import
FOUNDATION_EXPORT double Pods_Elissa_TestsVersionNumber;
FOUNDATION_EXPORT const unsigned char Pods_Elissa_TestsVersionString[];
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Tests/Pods-Elissa_Tests.debug.xcconfig
================================================
FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Elissa"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Elissa/Elissa.framework/Headers"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}/Pods
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Tests/Pods-Elissa_Tests.modulemap
================================================
framework module Pods_Elissa_Tests {
umbrella header "Pods-Elissa_Tests-umbrella.h"
export *
module * { export * }
}
================================================
FILE: Example/Pods/Target Support Files/Pods-Elissa_Tests/Pods-Elissa_Tests.release.xcconfig
================================================
FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/Elissa"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Elissa/Elissa.framework/Headers"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}/Pods
================================================
FILE: Example/Tests/Info.plist
================================================
CFBundleDevelopmentRegion
en
CFBundleExecutable
$(EXECUTABLE_NAME)
CFBundleIdentifier
$(PRODUCT_BUNDLE_IDENTIFIER)
CFBundleInfoDictionaryVersion
6.0
CFBundleName
$(PRODUCT_NAME)
CFBundlePackageType
BNDL
CFBundleShortVersionString
1.0
CFBundleSignature
????
CFBundleVersion
1
================================================
FILE: Example/Tests/Tests.swift
================================================
import UIKit
import XCTest
//import Elissa
class Tests: XCTestCase {
override func setUp() {
super.setUp()
// Put setup code here. This method is called before the invocation of each test method in the class.
}
override func tearDown() {
// Put teardown code here. This method is called after the invocation of each test method in the class.
super.tearDown()
}
func testExample() {
// This is an example of a functional test case.
XCTAssert(true, "Pass")
}
}
================================================
FILE: LICENSE
================================================
Copyright (c) 2016 Kersten Broich
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
================================================
FILE: README.md
================================================
# Elissa
[](https://travis-ci.org/KitchenStories/Elissa)
[](http://cocoapods.org/pods/Elissa)
[](https://github.com/Carthage/Carthage)
[](http://cocoapods.org/pods/Elissa)
[](http://cocoapods.org/pods/Elissa)

Attach a local notification to any UIView to reveal additional user guidance.
# Usage
## Example
Per default, Elissa will try to align to the center of the UITabBarItem. However she will never move out of sight to her parent’s view screen bounds. Therefor she applies an offset calculation that will also move the little arrow pointer accordingly.





To run the example project, clone the repo, and run `pod install` from the Example directory first.
## Configuration
You can display Elissa according to your app’s theming by creating and passing a fully customisable configuration.
```swift
var elissaConfig = ElissaConfiguration()
elissaConfig.message = "Find your favorites here"
elissaConfig.image = UIImage(named: "heartIcon") ?? UIImage()
elissaConfig.font = UIFont.systemFontOfSize(17)
elissaConfig.textColor = UIColor(red: 91/255, green: 91/255, blue: 91/255, alpha: 1.0)
elissaConfig.backgroundColor = UIColor(red: 241/255, green: 215/255, blue: 85/255, alpha: 1.0)
```
```objective-c
ElissaConfiguration *elissaConfig = [ElissaConfiguration new];
elissaConfig.message = @"Find your favorites here";
elissaConfig.image = [UIImage imageNamed:@"heartIcon"];
elissaConfig.font = [UIFont systemFontOfSize:17];
elissaConfig.textColor = [UIColor redColor];
elissaConfig.backgroundColor = [UIColor greenColor];
```
## Presentation
As of now there are **two different API** calls for rendering Elissa depending on the specific use case that is preferred. When presenting Elissa on top of a UITabBarItem you present from an instance of UIViewController:
```swift
showElissaFromTabbar(at: 4, configuration: elissaConfig) {
Elissa.dismiss()
}
```
```objective-c
[self showElissaFromTabbarAt:0 configuration:elissaConfig onTouchHandler:^{
[Elissa dismiss];
}];
```
In this case Elissa is created and internally managed as a Singleton instance.
When attaching Elissa to any UIView you call the API from a containing view which owns an anchor view for Elissa (typically a parent => child relation):
```swift
myViewController.view.showELissa(fromSourceView: sourceView, configuration: elissaConfig) {
// optionally do something
}
```
```objective-c
[myViewController.view showELissaFromSourceView:sourceView configuration: elissaConfig onTouchHandler:^{
// optionally do something
}];
```
Please not that the latter API call creates and returns ***an instance*** of Elissa.
## Installation
### CocoaPods
Elissa is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:
```ruby
pod "Elissa"
```
### Carthage
To use Carthage, first make sure you have installed it and updated it to the latest version by following their instructions on [their repo](https://github.com/Carthage/Carthage).
First, you add `Elissa` to your `Cartfile`:
```
github "KitchenStories/Elissa"
```
Then, run Carthage:
```
carthage update
```
## Author
Kersten Broich, kersten.broich@gmail.com
## License
Elissa is available under the MIT license. See the LICENSE file for more info.