diff --git a/CDCodabarView.podspec b/CDCodabarView.podspec index 5fb33a7..6300243 100644 --- a/CDCodabarView.podspec +++ b/CDCodabarView.podspec @@ -1,13 +1,13 @@ Pod::Spec.new do |s| - s.name = "CDCodabarView" - s.version = "0.1.0" - s.summary = "Codabar Barcode Generator for iOS." - s.homepage = "https://github.com/Coledunsby/CDCodabarView" - # s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2" - s.license = 'MIT' - s.author = { "Cole Dunsby" => "coledunsby@gmail.com" } - s.source = { :git => "https://github.com/Coledunsby/CDCodabarView.git", :tag => s.version.to_s } - s.platform = :ios, '8.0' - s.requires_arc = true - s.source_files = 'Pod/Classes/**/*' + s.name = "CDCodabarView" + s.version = "1.0.0" + s.summary = "Codabar Barcode Generator for iOS." + s.homepage = "https://github.com/Coledunsby/CDCodabarView" + s.authors = { "Cole Dunsby" => "coledunsby@gmail.com" } + s.license = { :type => "MIT", :file => 'LICENSE' } + s.platform = :ios, "9.0" + s.requires_arc = true + s.source = { :git => "https://github.com/Coledunsby/CDCodabarView.git", :tag => "v/#{s.version}" } + s.source_files = "CDCodabarView.swift" + s.module_name = s.name end diff --git a/Pod/Classes/CDCodabarView.swift b/CDCodabarView.swift similarity index 61% rename from Pod/Classes/CDCodabarView.swift rename to CDCodabarView.swift index 879de82..78f224a 100644 --- a/Pod/Classes/CDCodabarView.swift +++ b/CDCodabarView.swift @@ -3,7 +3,7 @@ // CDCodabarViewSample // // Created by Cole Dunsby on 2015-12-21. -// Copyright © 2015 Cole Dunsby. All rights reserved. +// Copyright © 2016 Cole Dunsby. All rights reserved. // /********************************************************************* @@ -69,29 +69,13 @@ public class CDCodabarView: UIView { "D": "1010011001" ] - @IBInspectable public var code: String = "A123456789B" { - didSet { setNeedsDisplay() } - } - - @IBInspectable public var barColor: UIColor = .blackColor() { - didSet { setNeedsDisplay() } - } - - @IBInspectable public var textColor: UIColor = .blackColor() { - didSet { setNeedsDisplay() } - } + @IBInspectable public var code: String = "A123456789B" { didSet { setNeedsDisplay() }} + @IBInspectable public var barColor: UIColor = .black { didSet { setNeedsDisplay() }} + @IBInspectable public var textColor: UIColor = .black { didSet { setNeedsDisplay() }} + @IBInspectable public var padding: CGFloat = 2.0 { didSet { setNeedsDisplay() }} + @IBInspectable public var hideCode: Bool = false { didSet { setNeedsDisplay() }} - @IBInspectable public var padding: CGFloat = 2.0 { - didSet { setNeedsDisplay() } - } - - @IBInspectable public var hideCode: Bool = false { - didSet { setNeedsDisplay() } - } - - public var font = UIFont(name: "AvenirNext-Regular", size: 15.0)! { - didSet { setNeedsDisplay() } - } + public var font = UIFont(name: "AvenirNext-Regular", size: 15.0)! { didSet { setNeedsDisplay() }} override init(frame: CGRect) { super.init(frame: frame) @@ -101,21 +85,21 @@ public class CDCodabarView: UIView { super.init(coder: aDecoder) } - override public func drawRect(rect: CGRect) { - let paragraphStyle = NSParagraphStyle.defaultParagraphStyle().mutableCopy() as! NSMutableParagraphStyle - paragraphStyle.alignment = NSTextAlignment.Center + override public func draw(_ rect: CGRect) { + let paragraphStyle = NSParagraphStyle.default.mutableCopy() as! NSMutableParagraphStyle + paragraphStyle.alignment = .center let attributes = [ NSFontAttributeName: font, NSForegroundColorAttributeName: textColor, NSParagraphStyleAttributeName: paragraphStyle, - ] + ] as [String : Any] - if !codeIsValid() { + if !isCodeValid() { let text = "Invalid Code" - let textSize = text.boundingRectWithSize(CGSize(width: bounds.size.width, height: CGFloat.max), options: [.TruncatesLastVisibleLine, .UsesLineFragmentOrigin], attributes: [NSFontAttributeName: font], context: nil) + let textSize = text.boundingRect(with: CGSize(width: bounds.size.width, height: CGFloat.greatestFiniteMagnitude), options: [.truncatesLastVisibleLine, .usesLineFragmentOrigin], attributes: [NSFontAttributeName: font], context: nil) - text.drawAtPoint(CGPoint(x: bounds.size.width / 2 - textSize.width / 2, y: bounds.size.height / 2 - textSize.height / 2), withAttributes: attributes) + text.draw(at: CGPoint(x: bounds.size.width / 2 - textSize.width / 2, y: bounds.size.height / 2 - textSize.height / 2), withAttributes: attributes) return } @@ -123,25 +107,25 @@ public class CDCodabarView: UIView { barColor.setFill() let multiplier: CGFloat = 1.25 - let labelHeight = ceil(code.boundingRectWithSize(CGSize(width: bounds.size.width, height: CGFloat.max), options: [.TruncatesLastVisibleLine, .UsesLineFragmentOrigin], attributes: [NSFontAttributeName: font], context: nil).height) + let labelHeight = ceil(code.boundingRect(with: CGSize(width: bounds.size.width, height: CGFloat.greatestFiniteMagnitude), options: [.truncatesLastVisibleLine, .usesLineFragmentOrigin], attributes: [NSFontAttributeName: font], context: nil).height) let barHeight = bounds.size.height - (hideCode ? 0 : labelHeight + padding) let sequence = barSequence() var narrow = 0 var wide = 0 - for var i = 0; i < sequence.characters.count; i++ { + for i in 0 ..< sequence.characters.count { if sequence[i] == "0" { - narrow++ + narrow += 1 } else { if i < sequence.characters.count - 1 { if sequence[i + 1] == "1" { - wide++ + wide += 1 } else { - narrow++ + narrow += 1 } } else { - narrow++ + narrow += 1 } } } @@ -150,7 +134,7 @@ public class CDCodabarView: UIView { var x: CGFloat = 0.0 - for var i = 0; i < sequence.characters.count; i++ { + for i in 0 ..< sequence.characters.count { if sequence[i] == "0" { x += barWidth } else { @@ -169,14 +153,14 @@ public class CDCodabarView: UIView { } if !hideCode { - (code as NSString).drawInRect(CGRect(x: 0, y: barHeight + padding, width: x, height: labelHeight), withAttributes: attributes) + (code as NSString).draw(in: CGRect(x: 0, y: barHeight + padding, width: x, height: labelHeight), withAttributes: attributes) } } private func barSequence() -> String { var barSequence = "" - for var i = 0; i < code.characters.count; i++ { + for i in 0 ..< code.characters.count { barSequence += barcodeEncoding[String(code[i])]! if i < code.characters.count - 1 { barSequence += "0" @@ -186,37 +170,32 @@ public class CDCodabarView: UIView { return barSequence } - private func codeIsValid() -> Bool { - let validLength = code.characters.count >= 3 && code.characters.count <= 16 - var validStart = true - var validStop = true - var validMiddle = true - - if validLength { - let start = code[0].toUpper() - let stop = code[code.characters.count - 1].toUpper() - let middle = String(code.characters.dropFirst().dropLast()) - - validStart = start >= "A" && start <= "D" - validStop = stop >= "A" && stop <= "D" - - for char in middle.characters { - if !barcodeEncoding.keys.contains(String(char)) { - validMiddle = false - break - } + private func isCodeValid() -> Bool { + guard code.characters.count >= 3 && code.characters.count <= 16 else { return false } + + let startChar = code[0].toUpper() + let stopChar = code[code.characters.count - 1].toUpper() + let middleString = String(code.characters.dropFirst().dropLast()) + + let isValidStart = startChar >= "A" && startChar <= "D" + let isValidStop = stopChar >= "A" && stopChar <= "D" + var isValidMiddle = true + + for char in middleString.characters { + if !barcodeEncoding.keys.contains(String(char)) { + isValidMiddle = false + break } } - return validLength && validStart && validStop && validMiddle + return isValidStart && isValidStop && isValidMiddle } - } -extension String { +private extension String { subscript (i: Int) -> Character { - return self[self.startIndex.advancedBy(i)] + return self[self.characters.index(self.startIndex, offsetBy: i)] } subscript (i: Int) -> String { @@ -224,15 +203,13 @@ extension String { } subscript (r: Range) -> String { - return substringWithRange(Range(start: startIndex.advancedBy(r.startIndex), end: startIndex.advancedBy(r.endIndex))) + return substring(with: (characters.index(startIndex, offsetBy: r.lowerBound) ..< characters.index(startIndex, offsetBy: r.upperBound))) } - } -extension Character { +private extension Character { func toUpper() -> Character { - return String(self).uppercaseString.characters.first! + return String(self).uppercased().characters.first! } - } diff --git a/CDCodabarViewExample.xcodeproj/project.pbxproj b/CDCodabarViewExample.xcodeproj/project.pbxproj new file mode 100644 index 0000000..21dcdd7 --- /dev/null +++ b/CDCodabarViewExample.xcodeproj/project.pbxproj @@ -0,0 +1,294 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 252518E51DD3BB9B00F770A3 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 252518DF1DD3BB9B00F770A3 /* AppDelegate.swift */; }; + 252518E61DD3BB9B00F770A3 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 252518E01DD3BB9B00F770A3 /* Images.xcassets */; }; + 252518E81DD3BB9B00F770A3 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 252518E21DD3BB9B00F770A3 /* LaunchScreen.storyboard */; }; + 252518E91DD3BB9B00F770A3 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 252518E31DD3BB9B00F770A3 /* Main.storyboard */; }; + 252518EA1DD3BB9B00F770A3 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 252518E41DD3BB9B00F770A3 /* ViewController.swift */; }; + 252518EE1DD3BDDB00F770A3 /* CDCodabarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 252518ED1DD3BDDB00F770A3 /* CDCodabarView.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 252518DF1DD3BB9B00F770A3 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 252518E01DD3BB9B00F770A3 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; + 252518E11DD3BB9B00F770A3 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 252518E21DD3BB9B00F770A3 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = ""; }; + 252518E31DD3BB9B00F770A3 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = ""; }; + 252518E41DD3BB9B00F770A3 /* ViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + 252518ED1DD3BDDB00F770A3 /* CDCodabarView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CDCodabarView.swift; sourceTree = ""; }; + 607FACD01AFB9204008FA782 /* CDCodabarView_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CDCodabarView_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 607FACCD1AFB9204008FA782 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 252518DE1DD3BB9B00F770A3 /* CDCodabarViewExample */ = { + isa = PBXGroup; + children = ( + 252518DF1DD3BB9B00F770A3 /* AppDelegate.swift */, + 252518E41DD3BB9B00F770A3 /* ViewController.swift */, + 252518E21DD3BB9B00F770A3 /* LaunchScreen.storyboard */, + 252518E31DD3BB9B00F770A3 /* Main.storyboard */, + 252518E11DD3BB9B00F770A3 /* Info.plist */, + 252518E01DD3BB9B00F770A3 /* Images.xcassets */, + ); + path = CDCodabarViewExample; + sourceTree = ""; + }; + 607FACC71AFB9204008FA782 = { + isa = PBXGroup; + children = ( + 252518ED1DD3BDDB00F770A3 /* CDCodabarView.swift */, + 252518DE1DD3BB9B00F770A3 /* CDCodabarViewExample */, + 607FACD11AFB9204008FA782 /* Products */, + ); + sourceTree = ""; + }; + 607FACD11AFB9204008FA782 /* Products */ = { + isa = PBXGroup; + children = ( + 607FACD01AFB9204008FA782 /* CDCodabarView_Example.app */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 607FACCF1AFB9204008FA782 /* CDCodabarView_Example */ = { + isa = PBXNativeTarget; + buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CDCodabarView_Example" */; + buildPhases = ( + 607FACCC1AFB9204008FA782 /* Sources */, + 607FACCD1AFB9204008FA782 /* Frameworks */, + 607FACCE1AFB9204008FA782 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = CDCodabarView_Example; + productName = CDCodabarView; + productReference = 607FACD01AFB9204008FA782 /* CDCodabarView_Example.app */; + productType = "com.apple.product-type.application"; + }; +/* 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 = JU6JS2KXPW; + LastSwiftMigration = 0810; + }; + }; + }; + buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "CDCodabarViewExample" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 607FACC71AFB9204008FA782; + productRefGroup = 607FACD11AFB9204008FA782 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 607FACCF1AFB9204008FA782 /* CDCodabarView_Example */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 607FACCE1AFB9204008FA782 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 252518E81DD3BB9B00F770A3 /* LaunchScreen.storyboard in Resources */, + 252518E61DD3BB9B00F770A3 /* Images.xcassets in Resources */, + 252518E91DD3BB9B00F770A3 /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 607FACCC1AFB9204008FA782 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 252518EA1DD3BB9B00F770A3 /* ViewController.swift in Sources */, + 252518E51DD3BB9B00F770A3 /* AppDelegate.swift in Sources */, + 252518EE1DD3BDDB00F770A3 /* CDCodabarView.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase 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 = 9.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + 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 = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 607FACF01AFB9204008FA782 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEVELOPMENT_TEAM = JU6JS2KXPW; + INFOPLIST_FILE = "$(SRCROOT)/CDCodabarViewExample/Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + MODULE_NAME = ExampleApp; + PRODUCT_BUNDLE_IDENTIFIER = com.jcdigital.CDCodabarViewExample; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.0; + }; + name = Debug; + }; + 607FACF11AFB9204008FA782 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEVELOPMENT_TEAM = JU6JS2KXPW; + INFOPLIST_FILE = "$(SRCROOT)/CDCodabarViewExample/Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + MODULE_NAME = ExampleApp; + PRODUCT_BUNDLE_IDENTIFIER = com.jcdigital.CDCodabarViewExample; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 3.0; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "CDCodabarViewExample" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 607FACED1AFB9204008FA782 /* Debug */, + 607FACEE1AFB9204008FA782 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CDCodabarView_Example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 607FACF01AFB9204008FA782 /* Debug */, + 607FACF11AFB9204008FA782 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 607FACC81AFB9204008FA782 /* Project object */; +} diff --git a/Example/CDCodabarView.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/CDCodabarViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 53% rename from Example/CDCodabarView.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to CDCodabarViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata index 19c4bea..9d477ce 100644 --- a/Example/CDCodabarView.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ b/CDCodabarViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -2,6 +2,6 @@ + location = "self:/Users/cole.dunsby/Git/CDCodabarView/CDCodabarViewExample.xcodeproj"> diff --git a/Example/CDCodabarView_Example/AppDelegate.swift b/CDCodabarViewExample/AppDelegate.swift similarity index 54% rename from Example/CDCodabarView_Example/AppDelegate.swift rename to CDCodabarViewExample/AppDelegate.swift index ab35450..8de89f5 100644 --- a/Example/CDCodabarView_Example/AppDelegate.swift +++ b/CDCodabarViewExample/AppDelegate.swift @@ -3,7 +3,7 @@ // CDCodabarViewSample // // Created by Cole Dunsby on 2015-12-21. -// Copyright © 2015 Cole Dunsby. All rights reserved. +// Copyright © 2016 Cole Dunsby. All rights reserved. // import UIKit @@ -13,9 +13,8 @@ class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? - func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { return true } - } diff --git a/Example/CDCodabarView_Example/Images.xcassets/Contents.json b/CDCodabarViewExample/Images.xcassets/Contents.json similarity index 100% rename from Example/CDCodabarView_Example/Images.xcassets/Contents.json rename to CDCodabarViewExample/Images.xcassets/Contents.json diff --git a/Example/CDCodabarView_Example/Info.plist b/CDCodabarViewExample/Info.plist similarity index 93% rename from Example/CDCodabarView_Example/Info.plist rename to CDCodabarViewExample/Info.plist index 0cd0f58..e3d55d0 100644 --- a/Example/CDCodabarView_Example/Info.plist +++ b/CDCodabarViewExample/Info.plist @@ -4,12 +4,10 @@ CFBundleDevelopmentRegion en + CFBundleDisplayName + CDCodabarView CFBundleExecutable $(EXECUTABLE_NAME) - CFBundleIcons - - CFBundleIcons~ipad - CFBundleIdentifier $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion diff --git a/Example/CDCodabarView_Example/LaunchScreen.storyboard b/CDCodabarViewExample/LaunchScreen.storyboard similarity index 77% rename from Example/CDCodabarView_Example/LaunchScreen.storyboard rename to CDCodabarViewExample/LaunchScreen.storyboard index 42f0c17..3d04609 100644 --- a/Example/CDCodabarView_Example/LaunchScreen.storyboard +++ b/CDCodabarViewExample/LaunchScreen.storyboard @@ -1,9 +1,12 @@ - - + + + + + - - + + @@ -15,23 +18,23 @@ - + - + - + diff --git a/Example/CDCodabarView_Example/Main.storyboard b/CDCodabarViewExample/Main.storyboard similarity index 90% rename from Example/CDCodabarView_Example/Main.storyboard rename to CDCodabarViewExample/Main.storyboard index 2cdcf0e..23306ab 100644 --- a/Example/CDCodabarView_Example/Main.storyboard +++ b/CDCodabarViewExample/Main.storyboard @@ -1,21 +1,17 @@ - - + + + + + - - + + - + AvenirNext-Medium - AvenirNext-Medium - AvenirNext-Regular - AvenirNext-Regular - AvenirNext-Regular - AvenirNext-Regular - AvenirNext-Regular - AvenirNext-Regular AvenirNext-Regular - + @@ -27,18 +23,18 @@ - + - + - + @@ -87,7 +83,7 @@ - + - + @@ -133,27 +129,27 @@ - + - + - - - + + + @@ -182,7 +178,7 @@ - + diff --git a/Example/CDCodabarView_Example/ViewController.swift b/CDCodabarViewExample/ViewController.swift similarity index 52% rename from Example/CDCodabarView_Example/ViewController.swift rename to CDCodabarViewExample/ViewController.swift index 7af2e3e..8f11471 100644 --- a/Example/CDCodabarView_Example/ViewController.swift +++ b/CDCodabarViewExample/ViewController.swift @@ -3,90 +3,92 @@ // CDCodabarViewSample // // Created by Cole Dunsby on 2015-12-21. -// Copyright © 2015 Cole Dunsby. All rights reserved. +// Copyright © 2016 Cole Dunsby. All rights reserved. // import UIKit -import CDCodabarView class ViewController: UIViewController { - @IBOutlet weak var heightLabel: UILabel! - @IBOutlet weak var widthLabel: UILabel! - @IBOutlet weak var paddingLabel: UILabel! - @IBOutlet weak var codabarView: CDCodabarView! - @IBOutlet weak var heightConstraint: NSLayoutConstraint! - @IBOutlet weak var widthConstraint: NSLayoutConstraint! + @IBOutlet private weak var heightLabel: UILabel! + @IBOutlet private weak var widthLabel: UILabel! + @IBOutlet private weak var paddingLabel: UILabel! + @IBOutlet private weak var codabarView: CDCodabarView! + @IBOutlet private weak var heightConstraint: NSLayoutConstraint! + @IBOutlet private weak var widthConstraint: NSLayoutConstraint! // MARK: - View Lifecycle override func viewDidLoad() { super.viewDidLoad() - /* Adding barcode programmatically - let barcode = CDCodabarView(frame: CGRect(x: 0, y: 0, width: 200, height: 100)) - barcode.code = "A1234B" - barcode.backgroundColor = .whiteColor() - view.addSubview(barcode) - */ + // addProgrammatically() } // MARK: - Private Functions - func randomColor() -> UIColor { - return UIColor(red: CGFloat(drand48()), green: CGFloat(drand48()), blue: CGFloat(drand48()), alpha: 1.0) - } - - func randomBarcode() -> String { + private func randomBarcode() -> String { let scalars = "A".unicodeScalars let unicode = Int(scalars[scalars.startIndex].value) - let startChar = Character(UnicodeScalar(unicode + Int(arc4random_uniform(4)))) // A, B, C or D - let stopChar = Character(UnicodeScalar(unicode + Int(arc4random_uniform(4)))) // A, B, C or D + let startChar = Character(UnicodeScalar(unicode + Int(arc4random_uniform(4)))!) // A, B, C or D + let stopChar = Character(UnicodeScalar(unicode + Int(arc4random_uniform(4)))!) // A, B, C or D let barcodeLength = Int(arc4random_uniform(6)) + 5 // 5 - 10 var barcode = "" - for var i = 0; i < barcodeLength; i++ { - barcode += String(arc4random_uniform(10)) // 0 - 9 + (0 ..< barcodeLength).forEach { _ in + barcode += String(arc4random_uniform(10)) // 0 - 9 } return String(startChar) + barcode + String(stopChar) } + private func addProgrammatically() { + let barcode = CDCodabarView(frame: CGRect(x: 0, y: 0, width: 200, height: 100)) + barcode.code = "A1234B" + barcode.backgroundColor = .white + view.addSubview(barcode) + } + // MARK: - IBActions - @IBAction func heightSliderValueChanged(sender: UISlider) { + @IBAction private func heightSliderValueChanged(_ sender: UISlider) { heightConstraint.constant = CGFloat(sender.value) heightLabel.text = "\(Int(sender.value))" codabarView.setNeedsDisplay() } - @IBAction func widthSliderValueChanged(sender: UISlider) { + @IBAction private func widthSliderValueChanged(_ sender: UISlider) { widthConstraint.constant = CGFloat(sender.value) widthLabel.text = "\(Int(sender.value))" codabarView.setNeedsDisplay() } - @IBAction func paddingSliderValueChanged(sender: UISlider) { + @IBAction private func paddingSliderValueChanged(_ sender: UISlider) { codabarView.padding = CGFloat(sender.value) paddingLabel.text = String(format: "%.1f", sender.value) } - @IBAction func hideCodeSwitchValueChanged(sender: UISwitch) { - codabarView.hideCode = sender.on + @IBAction private func hideCodeSwitchValueChanged(_ sender: UISwitch) { + codabarView.hideCode = sender.isOn } - @IBAction func changeColorsButtonTapped(sender: UIButton) { - codabarView.barColor = randomColor() - codabarView.textColor = randomColor() + @IBAction private func changeColorsButtonTapped(_ sender: UIButton) { + codabarView.barColor = UIColor.random() + codabarView.textColor = UIColor.random() } - @IBAction func changeBarcodeButtonTapped(sender: UIButton) { + @IBAction private func changeBarcodeButtonTapped(_ sender: UIButton) { codabarView.code = randomBarcode() } - } +private extension UIColor { + + static func random() -> UIColor { + return UIColor(red: CGFloat(drand48()), green: CGFloat(drand48()), blue: CGFloat(drand48()), alpha: 1.0) + } +} diff --git a/Example/CDCodabarView.xcodeproj/project.pbxproj b/Example/CDCodabarView.xcodeproj/project.pbxproj deleted file mode 100644 index 7d69412..0000000 --- a/Example/CDCodabarView.xcodeproj/project.pbxproj +++ /dev/null @@ -1,560 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 58FE619F55788F5BAB715F84 /* Pods_CDCodabarView_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 163AF7766BECAD3ED0505529 /* Pods_CDCodabarView_Tests.framework */; }; - 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; - ED27DBAE1C2B5A3500473779 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED27DBA91C2B5A3500473779 /* AppDelegate.swift */; }; - ED27DBAF1C2B5A3500473779 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = ED27DBAA1C2B5A3500473779 /* Images.xcassets */; }; - ED27DBB11C2B5A3500473779 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = ED27DBAC1C2B5A3500473779 /* Main.storyboard */; }; - ED27DBB21C2B5A3500473779 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED27DBAD1C2B5A3500473779 /* ViewController.swift */; }; - ED27DBB41C2B5BFD00473779 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = ED27DBB31C2B5BFD00473779 /* LaunchScreen.storyboard */; }; - FD7D937640F133BA43C92B89 /* Pods_CDCodabarView_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 882F31BC9E5EA74C8D474F7A /* Pods_CDCodabarView_Example.framework */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 607FACC81AFB9204008FA782 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 607FACCF1AFB9204008FA782; - remoteInfo = CDCodabarView; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 0959A6BE6CCA9C96C0189A07 /* Pods-CDCodabarView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CDCodabarView_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example.release.xcconfig"; sourceTree = ""; }; - 163AF7766BECAD3ED0505529 /* Pods_CDCodabarView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CDCodabarView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 24583C4AC57197B29C83B373 /* Pods-CDCodabarView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CDCodabarView_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests.debug.xcconfig"; sourceTree = ""; }; - 607FACD01AFB9204008FA782 /* CDCodabarView_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CDCodabarView_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 607FACE51AFB9204008FA782 /* CDCodabarView_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CDCodabarView_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 = ""; }; - 882F31BC9E5EA74C8D474F7A /* Pods_CDCodabarView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CDCodabarView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 9C4B555BC03C14D90AB468BB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; - C77FD095D673088B91734BD8 /* CDCodabarView.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = CDCodabarView.podspec; path = ../CDCodabarView.podspec; sourceTree = ""; }; - CA6766331E6A3567BE364353 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; - D04B788AE0ABEC9A4A2B32E4 /* Pods-CDCodabarView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CDCodabarView_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example.debug.xcconfig"; sourceTree = ""; }; - ED27DBA91C2B5A3500473779 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = CDCodabarView_Example/AppDelegate.swift; sourceTree = SOURCE_ROOT; }; - ED27DBAA1C2B5A3500473779 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = CDCodabarView_Example/Images.xcassets; sourceTree = SOURCE_ROOT; }; - ED27DBAB1C2B5A3500473779 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = CDCodabarView_Example/Info.plist; sourceTree = SOURCE_ROOT; }; - ED27DBAC1C2B5A3500473779 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = CDCodabarView_Example/Main.storyboard; sourceTree = SOURCE_ROOT; }; - ED27DBAD1C2B5A3500473779 /* ViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = ViewController.swift; path = CDCodabarView_Example/ViewController.swift; sourceTree = SOURCE_ROOT; }; - ED27DBB31C2B5BFD00473779 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = CDCodabarView_Example/LaunchScreen.storyboard; sourceTree = SOURCE_ROOT; }; - FD97358F6C3EDA71C2263EAE /* Pods-CDCodabarView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CDCodabarView_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests.release.xcconfig"; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 607FACCD1AFB9204008FA782 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - FD7D937640F133BA43C92B89 /* Pods_CDCodabarView_Example.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 607FACE21AFB9204008FA782 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 58FE619F55788F5BAB715F84 /* Pods_CDCodabarView_Tests.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 118071BD6169DA1F026D836B /* Frameworks */ = { - isa = PBXGroup; - children = ( - 882F31BC9E5EA74C8D474F7A /* Pods_CDCodabarView_Example.framework */, - 163AF7766BECAD3ED0505529 /* Pods_CDCodabarView_Tests.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 607FACC71AFB9204008FA782 = { - isa = PBXGroup; - children = ( - 607FACF51AFB993E008FA782 /* Podspec Metadata */, - 607FACD21AFB9204008FA782 /* Example for CDCodabarView */, - 607FACE81AFB9204008FA782 /* Tests */, - 607FACD11AFB9204008FA782 /* Products */, - A1DD5B385BE0080819E01FD1 /* Pods */, - 118071BD6169DA1F026D836B /* Frameworks */, - ); - sourceTree = ""; - }; - 607FACD11AFB9204008FA782 /* Products */ = { - isa = PBXGroup; - children = ( - 607FACD01AFB9204008FA782 /* CDCodabarView_Example.app */, - 607FACE51AFB9204008FA782 /* CDCodabarView_Tests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - 607FACD21AFB9204008FA782 /* Example for CDCodabarView */ = { - isa = PBXGroup; - children = ( - ED27DBA91C2B5A3500473779 /* AppDelegate.swift */, - ED27DBAD1C2B5A3500473779 /* ViewController.swift */, - ED27DBAC1C2B5A3500473779 /* Main.storyboard */, - ED27DBB31C2B5BFD00473779 /* LaunchScreen.storyboard */, - ED27DBAA1C2B5A3500473779 /* Images.xcassets */, - ED27DBAB1C2B5A3500473779 /* Info.plist */, - ); - name = "Example for CDCodabarView"; - path = CDCodabarView; - 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 = ( - C77FD095D673088B91734BD8 /* CDCodabarView.podspec */, - 9C4B555BC03C14D90AB468BB /* README.md */, - CA6766331E6A3567BE364353 /* LICENSE */, - ); - name = "Podspec Metadata"; - sourceTree = ""; - }; - A1DD5B385BE0080819E01FD1 /* Pods */ = { - isa = PBXGroup; - children = ( - D04B788AE0ABEC9A4A2B32E4 /* Pods-CDCodabarView_Example.debug.xcconfig */, - 0959A6BE6CCA9C96C0189A07 /* Pods-CDCodabarView_Example.release.xcconfig */, - 24583C4AC57197B29C83B373 /* Pods-CDCodabarView_Tests.debug.xcconfig */, - FD97358F6C3EDA71C2263EAE /* Pods-CDCodabarView_Tests.release.xcconfig */, - ); - name = Pods; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 607FACCF1AFB9204008FA782 /* CDCodabarView_Example */ = { - isa = PBXNativeTarget; - buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CDCodabarView_Example" */; - buildPhases = ( - 25F41FA4CD76581F7F08D592 /* Check Pods Manifest.lock */, - 607FACCC1AFB9204008FA782 /* Sources */, - 607FACCD1AFB9204008FA782 /* Frameworks */, - 607FACCE1AFB9204008FA782 /* Resources */, - 5649CF6660C9026A2C0BF023 /* Embed Pods Frameworks */, - 154A1C915E8FA2829D3376B5 /* Copy Pods Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = CDCodabarView_Example; - productName = CDCodabarView; - productReference = 607FACD01AFB9204008FA782 /* CDCodabarView_Example.app */; - productType = "com.apple.product-type.application"; - }; - 607FACE41AFB9204008FA782 /* CDCodabarView_Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CDCodabarView_Tests" */; - buildPhases = ( - BECD4430BAF043F355994220 /* Check Pods Manifest.lock */, - 607FACE11AFB9204008FA782 /* Sources */, - 607FACE21AFB9204008FA782 /* Frameworks */, - 607FACE31AFB9204008FA782 /* Resources */, - 1CE94314FA3A02E94EA75460 /* Embed Pods Frameworks */, - 7F4C0839098D6252925CD0FB /* Copy Pods Resources */, - ); - buildRules = ( - ); - dependencies = ( - 607FACE71AFB9204008FA782 /* PBXTargetDependency */, - ); - name = CDCodabarView_Tests; - productName = Tests; - productReference = 607FACE51AFB9204008FA782 /* CDCodabarView_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 = 0720; - ORGANIZATIONNAME = CocoaPods; - TargetAttributes = { - 607FACCF1AFB9204008FA782 = { - CreatedOnToolsVersion = 6.3.1; - }; - 607FACE41AFB9204008FA782 = { - CreatedOnToolsVersion = 6.3.1; - TestTargetID = 607FACCF1AFB9204008FA782; - }; - }; - }; - buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "CDCodabarView" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 607FACC71AFB9204008FA782; - productRefGroup = 607FACD11AFB9204008FA782 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 607FACCF1AFB9204008FA782 /* CDCodabarView_Example */, - 607FACE41AFB9204008FA782 /* CDCodabarView_Tests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 607FACCE1AFB9204008FA782 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ED27DBB41C2B5BFD00473779 /* LaunchScreen.storyboard in Resources */, - ED27DBB11C2B5A3500473779 /* Main.storyboard in Resources */, - ED27DBAF1C2B5A3500473779 /* Images.xcassets in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 607FACE31AFB9204008FA782 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 154A1C915E8FA2829D3376B5 /* 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-CDCodabarView_Example/Pods-CDCodabarView_Example-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; - 1CE94314FA3A02E94EA75460 /* 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-CDCodabarView_Tests/Pods-CDCodabarView_Tests-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; - 25F41FA4CD76581F7F08D592 /* 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; - }; - 5649CF6660C9026A2C0BF023 /* 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-CDCodabarView_Example/Pods-CDCodabarView_Example-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; - 7F4C0839098D6252925CD0FB /* 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-CDCodabarView_Tests/Pods-CDCodabarView_Tests-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; - BECD4430BAF043F355994220 /* 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; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 607FACCC1AFB9204008FA782 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ED27DBB21C2B5A3500473779 /* ViewController.swift in Sources */, - ED27DBAE1C2B5A3500473779 /* 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 /* CDCodabarView_Example */; - targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency 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_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - 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"; - }; - 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_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - 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; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 607FACF01AFB9204008FA782 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D04B788AE0ABEC9A4A2B32E4 /* Pods-CDCodabarView_Example.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - INFOPLIST_FILE = "$(SRCROOT)/CDCodabarView_Example/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_OPTIMIZATION_LEVEL = "-Onone"; - }; - name = Debug; - }; - 607FACF11AFB9204008FA782 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0959A6BE6CCA9C96C0189A07 /* Pods-CDCodabarView_Example.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_MODULES = YES; - INFOPLIST_FILE = "$(SRCROOT)/CDCodabarView_Example/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)"; - }; - name = Release; - }; - 607FACF31AFB9204008FA782 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 24583C4AC57197B29C83B373 /* Pods-CDCodabarView_Tests.debug.xcconfig */; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - 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)"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CDCodabarView_Example.app/CDCodabarView_Example"; - }; - name = Debug; - }; - 607FACF41AFB9204008FA782 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FD97358F6C3EDA71C2263EAE /* Pods-CDCodabarView_Tests.release.xcconfig */; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - 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)"; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CDCodabarView_Example.app/CDCodabarView_Example"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "CDCodabarView" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 607FACED1AFB9204008FA782 /* Debug */, - 607FACEE1AFB9204008FA782 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CDCodabarView_Example" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 607FACF01AFB9204008FA782 /* Debug */, - 607FACF11AFB9204008FA782 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "CDCodabarView_Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 607FACF31AFB9204008FA782 /* Debug */, - 607FACF41AFB9204008FA782 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 607FACC81AFB9204008FA782 /* Project object */; -} diff --git a/Example/CDCodabarView.xcodeproj/xcshareddata/xcschemes/CDCodabarView-Example.xcscheme b/Example/CDCodabarView.xcodeproj/xcshareddata/xcschemes/CDCodabarView-Example.xcscheme deleted file mode 100644 index e666a86..0000000 --- a/Example/CDCodabarView.xcodeproj/xcshareddata/xcschemes/CDCodabarView-Example.xcscheme +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Example/CDCodabarView.xcworkspace/contents.xcworkspacedata b/Example/CDCodabarView.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index df3243f..0000000 --- a/Example/CDCodabarView.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/Example/CDCodabarView_Example/Images.xcassets/AppIcon.appiconset/Contents.json b/Example/CDCodabarView_Example/Images.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index 118c98f..0000000 --- a/Example/CDCodabarView_Example/Images.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "images" : [ - { - "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" - } -} \ No newline at end of file diff --git a/Example/Podfile b/Example/Podfile deleted file mode 100644 index a57e405..0000000 --- a/Example/Podfile +++ /dev/null @@ -1,11 +0,0 @@ -source 'https://github.com/CocoaPods/Specs.git' - -use_frameworks! - -target 'CDCodabarView_Example', :exclusive => true do - pod "CDCodabarView", :path => "../" -end - -target 'CDCodabarView_Tests', :exclusive => true do - pod "CDCodabarView", :path => "../" -end diff --git a/Example/Podfile.lock b/Example/Podfile.lock deleted file mode 100644 index c6b7089..0000000 --- a/Example/Podfile.lock +++ /dev/null @@ -1,14 +0,0 @@ -PODS: - - CDCodabarView (0.1.0) - -DEPENDENCIES: - - CDCodabarView (from `../`) - -EXTERNAL SOURCES: - CDCodabarView: - :path: ../ - -SPEC CHECKSUMS: - CDCodabarView: f924ade0aaed5a7d558a69d25c571e30d006d3f2 - -COCOAPODS: 0.39.0 diff --git a/Example/Pods/Local Podspecs/CDCodabarView.podspec.json b/Example/Pods/Local Podspecs/CDCodabarView.podspec.json deleted file mode 100644 index b75765a..0000000 --- a/Example/Pods/Local Podspecs/CDCodabarView.podspec.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "CDCodabarView", - "version": "0.1.0", - "summary": "Codabar Barcode Generator for iOS.", - "homepage": "https://github.com/Coledunsby/CDCodabarView", - "license": "MIT", - "authors": { - "Cole Dunsby": "coledunsby@gmail.com" - }, - "source": { - "git": "https://github.com/Coledunsby/CDCodabarView.git", - "tag": "0.1.0" - }, - "platforms": { - "ios": "8.0" - }, - "requires_arc": true, - "source_files": "Pod/Classes/**/*" -} diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock deleted file mode 100644 index c6b7089..0000000 --- a/Example/Pods/Manifest.lock +++ /dev/null @@ -1,14 +0,0 @@ -PODS: - - CDCodabarView (0.1.0) - -DEPENDENCIES: - - CDCodabarView (from `../`) - -EXTERNAL SOURCES: - CDCodabarView: - :path: ../ - -SPEC CHECKSUMS: - CDCodabarView: f924ade0aaed5a7d558a69d25c571e30d006d3f2 - -COCOAPODS: 0.39.0 diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj deleted file mode 100644 index dbe0034..0000000 --- a/Example/Pods/Pods.xcodeproj/project.pbxproj +++ /dev/null @@ -1,787 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 00BBCB713AAD7647B2A5CD45D82CD2D6 /* Pods-CDCodabarView_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E5EDE90EAFFD545E3C6AC2D4535E0C9C /* Pods-CDCodabarView_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 02762635E641591A2938125D91B68792 /* CDCodabarView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C71F878F32C4563E38F814FE223109B /* CDCodabarView-dummy.m */; }; - 1E471C57987B5E3308689C43EE79ADFC /* CDCodabarView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DDD550755146375F7AEAEC61F8936589 /* CDCodabarView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 331ED064EA6B2C5B9367F0C53BCE9F71 /* Pods-CDCodabarView_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3993DAC3A0290131B1D26FE03ED22B45 /* Pods-CDCodabarView_Tests-dummy.m */; }; - 581B8636C42E95359CC608F78B81808F /* Pods-CDCodabarView_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 43BF5DE83F2CA0D4C0DFD0A662C38126 /* Pods-CDCodabarView_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B4D040AD4B4D62F723C1CB3D0323C717 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */; }; - C267E3849D74B3D1F1E19F8A132B5DFA /* CDCodabarView.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2C89E2607E9682B6E79E19004CDC6013 /* CDCodabarView.bundle */; }; - D78CEC64B739A38686ACC7CDDC60CC87 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */; }; - ED27DBA41C2B52D900473779 /* CDCodabarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED27DBA31C2B52D900473779 /* CDCodabarView.swift */; }; - F024C4AFAFE14F07BB55DB2A1AC151E2 /* Pods-CDCodabarView_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1100933E96A576819547E123D7BCD24C /* Pods-CDCodabarView_Example-dummy.m */; }; - FA9B89DA17FD447E1CEA39CD85F44EA0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 1FE789D0B44052ECFD60CA1E534AE810 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = E613C160F7F08FE40A7A68B7B0C3906D; - remoteInfo = CDCodabarView; - }; - 45684617A0CEE89C6C9237A90572A904 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3075CFD9CCA8098572C382B6AD12B7CD; - remoteInfo = "CDCodabarView-CDCodabarView"; - }; - FB8BE5F0B0E82CB05C95FA879A2EE7DC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = E613C160F7F08FE40A7A68B7B0C3906D; - remoteInfo = CDCodabarView; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 0E56ABB5C47B9E070E9EAC6FDC650120 /* Pods-CDCodabarView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CDCodabarView_Example.debug.xcconfig"; sourceTree = ""; }; - 1100933E96A576819547E123D7BCD24C /* Pods-CDCodabarView_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CDCodabarView_Example-dummy.m"; sourceTree = ""; }; - 28F8885F637D656053ECF5EC34F0CED9 /* Pods-CDCodabarView_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-CDCodabarView_Tests.modulemap"; sourceTree = ""; }; - 2C89E2607E9682B6E79E19004CDC6013 /* CDCodabarView.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CDCodabarView.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 300E8BBA6558035EBA9A43C605DB641C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 31D778A2F30BA4C793EBAD98526402F0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 3424D205B45316AF935350C4412827E5 /* Pods-CDCodabarView_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CDCodabarView_Tests-acknowledgements.markdown"; sourceTree = ""; }; - 3993DAC3A0290131B1D26FE03ED22B45 /* Pods-CDCodabarView_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CDCodabarView_Tests-dummy.m"; sourceTree = ""; }; - 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 43BF5DE83F2CA0D4C0DFD0A662C38126 /* Pods-CDCodabarView_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CDCodabarView_Example-umbrella.h"; sourceTree = ""; }; - 4910E272B11489A4F55EC7D919DF8EF6 /* CDCodabarView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = CDCodabarView.modulemap; sourceTree = ""; }; - 531A89AA8B4D4F6A3355E4DEE387F011 /* Pods-CDCodabarView_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CDCodabarView_Example-resources.sh"; sourceTree = ""; }; - 5C0A0300B92EDB2C9DDE6194BD74B910 /* Pods-CDCodabarView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CDCodabarView_Tests.release.xcconfig"; sourceTree = ""; }; - 608D6F3891C4826D871043D4045FAD68 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 6967712211C5E343C9B6330F110655B1 /* Pods-CDCodabarView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CDCodabarView_Tests.debug.xcconfig"; sourceTree = ""; }; - 70D57BA7E5EC497038477095D2BC0C38 /* Pods-CDCodabarView_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CDCodabarView_Tests-acknowledgements.plist"; sourceTree = ""; }; - 76E5D0F532DDCF739E7C50301637E92E /* CDCodabarView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CDCodabarView-prefix.pch"; sourceTree = ""; }; - 9897AF1C5BF62F20BDE4FB3DDD283D9B /* Pods_CDCodabarView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CDCodabarView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 9C71F878F32C4563E38F814FE223109B /* CDCodabarView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "CDCodabarView-dummy.m"; sourceTree = ""; }; - A2FDAE30E09EA61EEABEAA98B34BAF8E /* Pods-CDCodabarView_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CDCodabarView_Example-acknowledgements.markdown"; sourceTree = ""; }; - A8532F0D8E60901F4C612E7338B75D95 /* Pods-CDCodabarView_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CDCodabarView_Example-frameworks.sh"; sourceTree = ""; }; - AD7F8B85B85E8969FC28F801A22AB2DD /* Pods-CDCodabarView_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CDCodabarView_Tests-frameworks.sh"; sourceTree = ""; }; - BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BBB8E9DBA9E8A388F4BDA5292048EBA9 /* CDCodabarView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = CDCodabarView.xcconfig; sourceTree = ""; }; - BD0E6B14784B3C3B2FC2E9630309E768 /* Pods-CDCodabarView_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CDCodabarView_Example-acknowledgements.plist"; sourceTree = ""; }; - BE0F85B3CBDB3945C2965DC640D1B930 /* Pods_CDCodabarView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CDCodabarView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D60FC1956E39695250023428094E9222 /* Pods-CDCodabarView_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-CDCodabarView_Tests-resources.sh"; sourceTree = ""; }; - D7622CA20E45EDB4F79A50052A82C7A1 /* Pods-CDCodabarView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CDCodabarView_Example.release.xcconfig"; sourceTree = ""; }; - DDD550755146375F7AEAEC61F8936589 /* CDCodabarView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CDCodabarView-umbrella.h"; sourceTree = ""; }; - E5EDE90EAFFD545E3C6AC2D4535E0C9C /* Pods-CDCodabarView_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CDCodabarView_Tests-umbrella.h"; sourceTree = ""; }; - ED27DBA31C2B52D900473779 /* CDCodabarView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CDCodabarView.swift; sourceTree = ""; }; - FA4A4D39BFFE0AD81658931D0F991825 /* Pods-CDCodabarView_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-CDCodabarView_Example.modulemap"; sourceTree = ""; }; - FE2F83F8911F2D1D9CF39729DAF5B43D /* CDCodabarView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CDCodabarView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 4187A058D677FB06309678865816419D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4CF19FCF34EBFC5F6DC2370D2AB5A4B6 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - FA9B89DA17FD447E1CEA39CD85F44EA0 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 58EEB86F0C6068B3D9677233AD64DFC9 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - D78CEC64B739A38686ACC7CDDC60CC87 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C6E12FE3965612E4D26D25A147DCB0E5 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - B4D040AD4B4D62F723C1CB3D0323C717 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 005257AF5FDD3297F9F6D9D64FDD010F /* Products */ = { - isa = PBXGroup; - children = ( - 2C89E2607E9682B6E79E19004CDC6013 /* CDCodabarView.bundle */, - FE2F83F8911F2D1D9CF39729DAF5B43D /* CDCodabarView.framework */, - BE0F85B3CBDB3945C2965DC640D1B930 /* Pods_CDCodabarView_Example.framework */, - 9897AF1C5BF62F20BDE4FB3DDD283D9B /* Pods_CDCodabarView_Tests.framework */, - ); - name = Products; - sourceTree = ""; - }; - 11D37CA7169FD642F0E2EA057B6EB4CE /* Targets Support Files */ = { - isa = PBXGroup; - children = ( - 72C5EEC0D421CE51D7EF6729FEBD8E00 /* Pods-CDCodabarView_Example */, - BFB1F1727E033C868710D4FD46E388B9 /* Pods-CDCodabarView_Tests */, - ); - name = "Targets Support Files"; - sourceTree = ""; - }; - 72C5EEC0D421CE51D7EF6729FEBD8E00 /* Pods-CDCodabarView_Example */ = { - isa = PBXGroup; - children = ( - 300E8BBA6558035EBA9A43C605DB641C /* Info.plist */, - FA4A4D39BFFE0AD81658931D0F991825 /* Pods-CDCodabarView_Example.modulemap */, - A2FDAE30E09EA61EEABEAA98B34BAF8E /* Pods-CDCodabarView_Example-acknowledgements.markdown */, - BD0E6B14784B3C3B2FC2E9630309E768 /* Pods-CDCodabarView_Example-acknowledgements.plist */, - 1100933E96A576819547E123D7BCD24C /* Pods-CDCodabarView_Example-dummy.m */, - A8532F0D8E60901F4C612E7338B75D95 /* Pods-CDCodabarView_Example-frameworks.sh */, - 531A89AA8B4D4F6A3355E4DEE387F011 /* Pods-CDCodabarView_Example-resources.sh */, - 43BF5DE83F2CA0D4C0DFD0A662C38126 /* Pods-CDCodabarView_Example-umbrella.h */, - 0E56ABB5C47B9E070E9EAC6FDC650120 /* Pods-CDCodabarView_Example.debug.xcconfig */, - D7622CA20E45EDB4F79A50052A82C7A1 /* Pods-CDCodabarView_Example.release.xcconfig */, - ); - name = "Pods-CDCodabarView_Example"; - path = "Target Support Files/Pods-CDCodabarView_Example"; - sourceTree = ""; - }; - 79F562B3FAD0DDF68B02B531F8197FE9 /* CDCodabarView */ = { - isa = PBXGroup; - children = ( - 92E625A3EBD6AA626763221170227504 /* Pod */, - 7DF4142AE571AB7DC581182C8D74B1C2 /* Support Files */, - ); - name = CDCodabarView; - path = ../..; - sourceTree = ""; - }; - 7DB346D0F39D3F0E887471402A8071AB = { - isa = PBXGroup; - children = ( - BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */, - D26839C6ECA0705B279C8B1714BA1F8D /* Development Pods */, - BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, - 005257AF5FDD3297F9F6D9D64FDD010F /* Products */, - 11D37CA7169FD642F0E2EA057B6EB4CE /* Targets Support Files */, - ); - sourceTree = ""; - }; - 7DF4142AE571AB7DC581182C8D74B1C2 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4910E272B11489A4F55EC7D919DF8EF6 /* CDCodabarView.modulemap */, - BBB8E9DBA9E8A388F4BDA5292048EBA9 /* CDCodabarView.xcconfig */, - 9C71F878F32C4563E38F814FE223109B /* CDCodabarView-dummy.m */, - 76E5D0F532DDCF739E7C50301637E92E /* CDCodabarView-prefix.pch */, - DDD550755146375F7AEAEC61F8936589 /* CDCodabarView-umbrella.h */, - 608D6F3891C4826D871043D4045FAD68 /* Info.plist */, - ); - name = "Support Files"; - path = "Example/Pods/Target Support Files/CDCodabarView"; - sourceTree = ""; - }; - 850FB3252E63B96B3F2080C6DA1C984D /* Classes */ = { - isa = PBXGroup; - children = ( - ED27DBA31C2B52D900473779 /* CDCodabarView.swift */, - ); - path = Classes; - sourceTree = ""; - }; - 92E625A3EBD6AA626763221170227504 /* Pod */ = { - isa = PBXGroup; - children = ( - 850FB3252E63B96B3F2080C6DA1C984D /* Classes */, - ); - path = Pod; - sourceTree = ""; - }; - BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { - isa = PBXGroup; - children = ( - BF6342C8B29F4CEEA088EFF7AB4DE362 /* iOS */, - ); - name = Frameworks; - sourceTree = ""; - }; - BF6342C8B29F4CEEA088EFF7AB4DE362 /* iOS */ = { - isa = PBXGroup; - children = ( - 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */, - ); - name = iOS; - sourceTree = ""; - }; - BFB1F1727E033C868710D4FD46E388B9 /* Pods-CDCodabarView_Tests */ = { - isa = PBXGroup; - children = ( - 31D778A2F30BA4C793EBAD98526402F0 /* Info.plist */, - 28F8885F637D656053ECF5EC34F0CED9 /* Pods-CDCodabarView_Tests.modulemap */, - 3424D205B45316AF935350C4412827E5 /* Pods-CDCodabarView_Tests-acknowledgements.markdown */, - 70D57BA7E5EC497038477095D2BC0C38 /* Pods-CDCodabarView_Tests-acknowledgements.plist */, - 3993DAC3A0290131B1D26FE03ED22B45 /* Pods-CDCodabarView_Tests-dummy.m */, - AD7F8B85B85E8969FC28F801A22AB2DD /* Pods-CDCodabarView_Tests-frameworks.sh */, - D60FC1956E39695250023428094E9222 /* Pods-CDCodabarView_Tests-resources.sh */, - E5EDE90EAFFD545E3C6AC2D4535E0C9C /* Pods-CDCodabarView_Tests-umbrella.h */, - 6967712211C5E343C9B6330F110655B1 /* Pods-CDCodabarView_Tests.debug.xcconfig */, - 5C0A0300B92EDB2C9DDE6194BD74B910 /* Pods-CDCodabarView_Tests.release.xcconfig */, - ); - name = "Pods-CDCodabarView_Tests"; - path = "Target Support Files/Pods-CDCodabarView_Tests"; - sourceTree = ""; - }; - D26839C6ECA0705B279C8B1714BA1F8D /* Development Pods */ = { - isa = PBXGroup; - children = ( - 79F562B3FAD0DDF68B02B531F8197FE9 /* CDCodabarView */, - ); - name = "Development Pods"; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 57436AA677415EBBAD191D3C80870D61 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 00BBCB713AAD7647B2A5CD45D82CD2D6 /* Pods-CDCodabarView_Tests-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 83FF02575C0189B06CEBCC4C2ACFB5E9 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 581B8636C42E95359CC608F78B81808F /* Pods-CDCodabarView_Example-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E0B58FF506DD719F34FB2895A7723FF8 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 1E471C57987B5E3308689C43EE79ADFC /* CDCodabarView-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 15AA5E553CCBC9C594B9848058845D5B /* Pods-CDCodabarView_Example */ = { - isa = PBXNativeTarget; - buildConfigurationList = 72DB18BEDAE2CE7B04EF18B7E4438D39 /* Build configuration list for PBXNativeTarget "Pods-CDCodabarView_Example" */; - buildPhases = ( - 99D12308F0A032F0207377ACA3D8C088 /* Sources */, - 58EEB86F0C6068B3D9677233AD64DFC9 /* Frameworks */, - 83FF02575C0189B06CEBCC4C2ACFB5E9 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - 1DA87DB93ED24AF1A15FF1EC19821A58 /* PBXTargetDependency */, - ); - name = "Pods-CDCodabarView_Example"; - productName = "Pods-CDCodabarView_Example"; - productReference = BE0F85B3CBDB3945C2965DC640D1B930 /* Pods_CDCodabarView_Example.framework */; - productType = "com.apple.product-type.framework"; - }; - 3075CFD9CCA8098572C382B6AD12B7CD /* CDCodabarView-CDCodabarView */ = { - isa = PBXNativeTarget; - buildConfigurationList = 19B8E300D928FD0C8395E3CFE968D112 /* Build configuration list for PBXNativeTarget "CDCodabarView-CDCodabarView" */; - buildPhases = ( - 3D6B1268BC103AB2A331C83D0CB0EB0D /* Sources */, - 4187A058D677FB06309678865816419D /* Frameworks */, - B38606021CBB2A439CAF2EB214824DC6 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "CDCodabarView-CDCodabarView"; - productName = "CDCodabarView-CDCodabarView"; - productReference = 2C89E2607E9682B6E79E19004CDC6013 /* CDCodabarView.bundle */; - productType = "com.apple.product-type.bundle"; - }; - BEAC3D31206F73E251E9EB9027092142 /* Pods-CDCodabarView_Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 237C157726F9E453C43D80EAEB749C0B /* Build configuration list for PBXNativeTarget "Pods-CDCodabarView_Tests" */; - buildPhases = ( - E4C750C1A1C6A81EA0CC2DCF70A972DD /* Sources */, - C6E12FE3965612E4D26D25A147DCB0E5 /* Frameworks */, - 57436AA677415EBBAD191D3C80870D61 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - 0CB9BFE1C4AF4E9EB29E45CF3E0F9071 /* PBXTargetDependency */, - ); - name = "Pods-CDCodabarView_Tests"; - productName = "Pods-CDCodabarView_Tests"; - productReference = 9897AF1C5BF62F20BDE4FB3DDD283D9B /* Pods_CDCodabarView_Tests.framework */; - productType = "com.apple.product-type.framework"; - }; - E613C160F7F08FE40A7A68B7B0C3906D /* CDCodabarView */ = { - isa = PBXNativeTarget; - buildConfigurationList = 8AFEF0ABAB8ED8CA214AA27F718BED2B /* Build configuration list for PBXNativeTarget "CDCodabarView" */; - buildPhases = ( - 6BF8C80299F1BC89B8E8CF087497EAFE /* Sources */, - 4CF19FCF34EBFC5F6DC2370D2AB5A4B6 /* Frameworks */, - 2E61A91E790045EE48BD2D1DD8C7CEE7 /* Resources */, - E0B58FF506DD719F34FB2895A7723FF8 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - CA6F9D4CE3E7C570ABBEE526B48EE13A /* PBXTargetDependency */, - ); - name = CDCodabarView; - productName = CDCodabarView; - productReference = FE2F83F8911F2D1D9CF39729DAF5B43D /* CDCodabarView.framework */; - productType = "com.apple.product-type.framework"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 0700; - LastUpgradeCheck = 0720; - }; - buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - ); - mainGroup = 7DB346D0F39D3F0E887471402A8071AB; - productRefGroup = 005257AF5FDD3297F9F6D9D64FDD010F /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - E613C160F7F08FE40A7A68B7B0C3906D /* CDCodabarView */, - 3075CFD9CCA8098572C382B6AD12B7CD /* CDCodabarView-CDCodabarView */, - 15AA5E553CCBC9C594B9848058845D5B /* Pods-CDCodabarView_Example */, - BEAC3D31206F73E251E9EB9027092142 /* Pods-CDCodabarView_Tests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 2E61A91E790045EE48BD2D1DD8C7CEE7 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - C267E3849D74B3D1F1E19F8A132B5DFA /* CDCodabarView.bundle in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B38606021CBB2A439CAF2EB214824DC6 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 3D6B1268BC103AB2A331C83D0CB0EB0D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6BF8C80299F1BC89B8E8CF087497EAFE /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 02762635E641591A2938125D91B68792 /* CDCodabarView-dummy.m in Sources */, - ED27DBA41C2B52D900473779 /* CDCodabarView.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 99D12308F0A032F0207377ACA3D8C088 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - F024C4AFAFE14F07BB55DB2A1AC151E2 /* Pods-CDCodabarView_Example-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E4C750C1A1C6A81EA0CC2DCF70A972DD /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 331ED064EA6B2C5B9367F0C53BCE9F71 /* Pods-CDCodabarView_Tests-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 0CB9BFE1C4AF4E9EB29E45CF3E0F9071 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CDCodabarView; - target = E613C160F7F08FE40A7A68B7B0C3906D /* CDCodabarView */; - targetProxy = 1FE789D0B44052ECFD60CA1E534AE810 /* PBXContainerItemProxy */; - }; - 1DA87DB93ED24AF1A15FF1EC19821A58 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = CDCodabarView; - target = E613C160F7F08FE40A7A68B7B0C3906D /* CDCodabarView */; - targetProxy = FB8BE5F0B0E82CB05C95FA879A2EE7DC /* PBXContainerItemProxy */; - }; - CA6F9D4CE3E7C570ABBEE526B48EE13A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "CDCodabarView-CDCodabarView"; - target = 3075CFD9CCA8098572C382B6AD12B7CD /* CDCodabarView-CDCodabarView */; - targetProxy = 45684617A0CEE89C6C9237A90572A904 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 0E6A1E554202433C31B8FAFE811EDBF6 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BBB8E9DBA9E8A388F4BDA5292048EBA9 /* CDCodabarView.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - PRODUCT_NAME = CDCodabarView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 10DE1947DAC0ED28F6C0A9F9BD75D546 /* 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; - 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 = "RELEASE=1"; - 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; - }; - 552D02D5BA751AC2E8790D2811D496CA /* 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; - 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 = ( - "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; - }; - 57834C9D83FE76F234CACAE21263921E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BBB8E9DBA9E8A388F4BDA5292048EBA9 /* CDCodabarView.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/CDCodabarView/CDCodabarView-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/CDCodabarView/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.3; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/CDCodabarView/CDCodabarView.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = CDCodabarView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 77BE5D5C18A97DC7629B6E19F5505321 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0E56ABB5C47B9E070E9EAC6FDC650120 /* Pods-CDCodabarView_Example.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - INFOPLIST_FILE = "Target Support Files/Pods-CDCodabarView_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-CDCodabarView_Example/Pods-CDCodabarView_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_CDCodabarView_Example; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 84B777A40718FB22F0E7657BF7DE7627 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D7622CA20E45EDB4F79A50052A82C7A1 /* Pods-CDCodabarView_Example.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - INFOPLIST_FILE = "Target Support Files/Pods-CDCodabarView_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-CDCodabarView_Example/Pods-CDCodabarView_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_CDCodabarView_Example; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - B7FBE729C47438E8BC07EE9A367110F2 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5C0A0300B92EDB2C9DDE6194BD74B910 /* Pods-CDCodabarView_Tests.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - INFOPLIST_FILE = "Target Support Files/Pods-CDCodabarView_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-CDCodabarView_Tests/Pods-CDCodabarView_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_CDCodabarView_Tests; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - C8CF93D9CA140F5964F949A04D13BE27 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BBB8E9DBA9E8A388F4BDA5292048EBA9 /* CDCodabarView.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - PRODUCT_NAME = CDCodabarView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - E484740E06014B623A67CB3070B08A49 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BBB8E9DBA9E8A388F4BDA5292048EBA9 /* CDCodabarView.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/CDCodabarView/CDCodabarView-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/CDCodabarView/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.3; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/CDCodabarView/CDCodabarView.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = CDCodabarView; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - E9F52AD78F00D0B062E41592BDB7CC4C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6967712211C5E343C9B6330F110655B1 /* Pods-CDCodabarView_Tests.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - INFOPLIST_FILE = "Target Support Files/Pods-CDCodabarView_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-CDCodabarView_Tests/Pods-CDCodabarView_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_CDCodabarView_Tests; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 19B8E300D928FD0C8395E3CFE968D112 /* Build configuration list for PBXNativeTarget "CDCodabarView-CDCodabarView" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0E6A1E554202433C31B8FAFE811EDBF6 /* Debug */, - C8CF93D9CA140F5964F949A04D13BE27 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 237C157726F9E453C43D80EAEB749C0B /* Build configuration list for PBXNativeTarget "Pods-CDCodabarView_Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E9F52AD78F00D0B062E41592BDB7CC4C /* Debug */, - B7FBE729C47438E8BC07EE9A367110F2 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 552D02D5BA751AC2E8790D2811D496CA /* Debug */, - 10DE1947DAC0ED28F6C0A9F9BD75D546 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 72DB18BEDAE2CE7B04EF18B7E4438D39 /* Build configuration list for PBXNativeTarget "Pods-CDCodabarView_Example" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 77BE5D5C18A97DC7629B6E19F5505321 /* Debug */, - 84B777A40718FB22F0E7657BF7DE7627 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 8AFEF0ABAB8ED8CA214AA27F718BED2B /* Build configuration list for PBXNativeTarget "CDCodabarView" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 57834C9D83FE76F234CACAE21263921E /* Debug */, - E484740E06014B623A67CB3070B08A49 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; -} diff --git a/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/CDCodabarView.xcscheme b/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/CDCodabarView.xcscheme deleted file mode 100644 index ecc4750..0000000 --- a/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/CDCodabarView.xcscheme +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Example/Pods/Target Support Files/CDCodabarView/CDCodabarView-dummy.m b/Example/Pods/Target Support Files/CDCodabarView/CDCodabarView-dummy.m deleted file mode 100644 index fc9a428..0000000 --- a/Example/Pods/Target Support Files/CDCodabarView/CDCodabarView-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_CDCodabarView : NSObject -@end -@implementation PodsDummy_CDCodabarView -@end diff --git a/Example/Pods/Target Support Files/CDCodabarView/CDCodabarView-prefix.pch b/Example/Pods/Target Support Files/CDCodabarView/CDCodabarView-prefix.pch deleted file mode 100644 index aa992a4..0000000 --- a/Example/Pods/Target Support Files/CDCodabarView/CDCodabarView-prefix.pch +++ /dev/null @@ -1,4 +0,0 @@ -#ifdef __OBJC__ -#import -#endif - diff --git a/Example/Pods/Target Support Files/CDCodabarView/CDCodabarView-umbrella.h b/Example/Pods/Target Support Files/CDCodabarView/CDCodabarView-umbrella.h deleted file mode 100644 index b9354f0..0000000 --- a/Example/Pods/Target Support Files/CDCodabarView/CDCodabarView-umbrella.h +++ /dev/null @@ -1,6 +0,0 @@ -#import - - -FOUNDATION_EXPORT double CDCodabarViewVersionNumber; -FOUNDATION_EXPORT const unsigned char CDCodabarViewVersionString[]; - diff --git a/Example/Pods/Target Support Files/CDCodabarView/CDCodabarView.modulemap b/Example/Pods/Target Support Files/CDCodabarView/CDCodabarView.modulemap deleted file mode 100644 index c12c153..0000000 --- a/Example/Pods/Target Support Files/CDCodabarView/CDCodabarView.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module CDCodabarView { - umbrella header "CDCodabarView-umbrella.h" - - export * - module * { export * } -} diff --git a/Example/Pods/Target Support Files/CDCodabarView/CDCodabarView.xcconfig b/Example/Pods/Target Support Files/CDCodabarView/CDCodabarView.xcconfig deleted file mode 100644 index 3284280..0000000 --- a/Example/Pods/Target Support Files/CDCodabarView/CDCodabarView.xcconfig +++ /dev/null @@ -1,5 +0,0 @@ -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/CDCodabarView" "${PODS_ROOT}/Headers/Public" -OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" -PODS_ROOT = ${SRCROOT} -SKIP_INSTALL = YES \ No newline at end of file diff --git a/Example/Pods/Target Support Files/CDCodabarView/Info.plist b/Example/Pods/Target Support Files/CDCodabarView/Info.plist deleted file mode 100644 index aa182b6..0000000 --- a/Example/Pods/Target Support Files/CDCodabarView/Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - 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 - - - diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Info.plist b/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Info.plist deleted file mode 100644 index 11db4b7..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - 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 - - - diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-acknowledgements.markdown deleted file mode 100644 index e87963c..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-acknowledgements.markdown +++ /dev/null @@ -1,26 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: - -## CDCodabarView - -Copyright (c) 2015 Cole Dunsby - -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 - http://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-acknowledgements.plist deleted file mode 100644 index b0355e6..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-acknowledgements.plist +++ /dev/null @@ -1,56 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2015 Cole Dunsby <coledunsby@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 - CDCodabarView - Type - PSGroupSpecifier - - - FooterText - Generated by CocoaPods - http://cocoapods.org - Title - - Type - PSGroupSpecifier - - - StringsTable - Acknowledgements - Title - Acknowledgements - - diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-dummy.m b/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-dummy.m deleted file mode 100644 index e522c15..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_CDCodabarView_Example : NSObject -@end -@implementation PodsDummy_Pods_CDCodabarView_Example -@end diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-frameworks.sh b/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-frameworks.sh deleted file mode 100755 index bdf1fe6..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-frameworks.sh +++ /dev/null @@ -1,91 +0,0 @@ -#!/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="${CONFIGURATION_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} --preserve-metadata=identifier,entitlements \"$1\"" - /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --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 "Pods-CDCodabarView_Example/CDCodabarView.framework" -fi -if [[ "$CONFIGURATION" == "Release" ]]; then - install_framework "Pods-CDCodabarView_Example/CDCodabarView.framework" -fi diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-resources.sh b/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-resources.sh deleted file mode 100755 index 16774fb..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-resources.sh +++ /dev/null @@ -1,95 +0,0 @@ -#!/bin/sh -set -e - -mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - -RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt -> "$RESOURCES_TO_COPY" - -XCASSET_FILES=() - -realpath() { - DIRECTORY="$(cd "${1%/*}" && pwd)" - FILENAME="${1##*/}" - echo "$DIRECTORY/$FILENAME" -} - -install_resource() -{ - case $1 in - *.storyboard) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" - ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" - ;; - *.xib) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" - ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" - ;; - *.framework) - echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - ;; - *.xcdatamodel) - echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" - xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" - ;; - *.xcdatamodeld) - echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" - xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" - ;; - *.xcmappingmodel) - echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" - xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" - ;; - *.xcassets) - ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") - XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") - ;; - /*) - echo "$1" - echo "$1" >> "$RESOURCES_TO_COPY" - ;; - *) - echo "${PODS_ROOT}/$1" - echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" - ;; - esac -} - -mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_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 - 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 - - # 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 "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -fi diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-umbrella.h b/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-umbrella.h deleted file mode 100644 index 4e178f6..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example-umbrella.h +++ /dev/null @@ -1,6 +0,0 @@ -#import - - -FOUNDATION_EXPORT double Pods_CDCodabarView_ExampleVersionNumber; -FOUNDATION_EXPORT const unsigned char Pods_CDCodabarView_ExampleVersionString[]; - diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example.debug.xcconfig b/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example.debug.xcconfig deleted file mode 100644 index c05c25c..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example.debug.xcconfig +++ /dev/null @@ -1,8 +0,0 @@ -EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/CDCodabarView.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "CDCodabarView" -OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" -PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-CDCodabarView_Example -PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example.modulemap b/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example.modulemap deleted file mode 100644 index e32c3ae..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Pods_CDCodabarView_Example { - umbrella header "Pods-CDCodabarView_Example-umbrella.h" - - export * - module * { export * } -} diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example.release.xcconfig b/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example.release.xcconfig deleted file mode 100644 index c05c25c..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Example/Pods-CDCodabarView_Example.release.xcconfig +++ /dev/null @@ -1,8 +0,0 @@ -EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/CDCodabarView.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "CDCodabarView" -OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" -PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-CDCodabarView_Example -PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Info.plist b/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Info.plist deleted file mode 100644 index 11db4b7..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - 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 - - - diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-acknowledgements.markdown deleted file mode 100644 index e87963c..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-acknowledgements.markdown +++ /dev/null @@ -1,26 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: - -## CDCodabarView - -Copyright (c) 2015 Cole Dunsby - -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 - http://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-acknowledgements.plist deleted file mode 100644 index b0355e6..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-acknowledgements.plist +++ /dev/null @@ -1,56 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2015 Cole Dunsby <coledunsby@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 - CDCodabarView - Type - PSGroupSpecifier - - - FooterText - Generated by CocoaPods - http://cocoapods.org - Title - - Type - PSGroupSpecifier - - - StringsTable - Acknowledgements - Title - Acknowledgements - - diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-dummy.m b/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-dummy.m deleted file mode 100644 index 79b8947..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_CDCodabarView_Tests : NSObject -@end -@implementation PodsDummy_Pods_CDCodabarView_Tests -@end diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-frameworks.sh b/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-frameworks.sh deleted file mode 100755 index 10ac841..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-frameworks.sh +++ /dev/null @@ -1,91 +0,0 @@ -#!/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="${CONFIGURATION_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} --preserve-metadata=identifier,entitlements \"$1\"" - /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} --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 "Pods-CDCodabarView_Tests/CDCodabarView.framework" -fi -if [[ "$CONFIGURATION" == "Release" ]]; then - install_framework "Pods-CDCodabarView_Tests/CDCodabarView.framework" -fi diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-resources.sh b/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-resources.sh deleted file mode 100755 index 16774fb..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-resources.sh +++ /dev/null @@ -1,95 +0,0 @@ -#!/bin/sh -set -e - -mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - -RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt -> "$RESOURCES_TO_COPY" - -XCASSET_FILES=() - -realpath() { - DIRECTORY="$(cd "${1%/*}" && pwd)" - FILENAME="${1##*/}" - echo "$DIRECTORY/$FILENAME" -} - -install_resource() -{ - case $1 in - *.storyboard) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" - ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" - ;; - *.xib) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" - ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" - ;; - *.framework) - echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - ;; - *.xcdatamodel) - echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" - xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" - ;; - *.xcdatamodeld) - echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" - xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" - ;; - *.xcmappingmodel) - echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" - xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" - ;; - *.xcassets) - ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") - XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") - ;; - /*) - echo "$1" - echo "$1" >> "$RESOURCES_TO_COPY" - ;; - *) - echo "${PODS_ROOT}/$1" - echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" - ;; - esac -} - -mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_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 - 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 - - # 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 "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -fi diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-umbrella.h b/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-umbrella.h deleted file mode 100644 index 51c0380..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests-umbrella.h +++ /dev/null @@ -1,6 +0,0 @@ -#import - - -FOUNDATION_EXPORT double Pods_CDCodabarView_TestsVersionNumber; -FOUNDATION_EXPORT const unsigned char Pods_CDCodabarView_TestsVersionString[]; - diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests.debug.xcconfig deleted file mode 100644 index a063bec..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests.debug.xcconfig +++ /dev/null @@ -1,8 +0,0 @@ -EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/CDCodabarView.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "CDCodabarView" -OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" -PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-CDCodabarView_Tests -PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests.modulemap b/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests.modulemap deleted file mode 100644 index df5b7c7..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Pods_CDCodabarView_Tests { - umbrella header "Pods-CDCodabarView_Tests-umbrella.h" - - export * - module * { export * } -} diff --git a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests.release.xcconfig b/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests.release.xcconfig deleted file mode 100644 index a063bec..0000000 --- a/Example/Pods/Target Support Files/Pods-CDCodabarView_Tests/Pods-CDCodabarView_Tests.release.xcconfig +++ /dev/null @@ -1,8 +0,0 @@ -EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/CDCodabarView.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "CDCodabarView" -OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" -PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-CDCodabarView_Tests -PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file diff --git a/Example/Tests/Info.plist b/Example/Tests/Info.plist deleted file mode 100644 index ba72822..0000000 --- a/Example/Tests/Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - - diff --git a/Example/Tests/Tests.swift b/Example/Tests/Tests.swift deleted file mode 100644 index 19123c6..0000000 --- a/Example/Tests/Tests.swift +++ /dev/null @@ -1,29 +0,0 @@ -import UIKit -import XCTest -import CDCodabarView - -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") - } - - func testPerformanceExample() { - // This is an example of a performance test case. - self.measureBlock() { - // Put the code you want to measure the time of here. - } - } - -} diff --git a/Pod/Assets/.gitkeep b/Pod/Assets/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/Pod/Classes/.gitkeep b/Pod/Classes/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/README.md b/README.md index db59114..10f95ad 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ CDCodabarView is a [Codabar](https://en.wikipedia.org/wiki/Codabar) barcode generator for iOS. -It is written in Swift 2 and uses `IBDesignable`, `IBInspectable` and Core Graphics. +It is written in Swift 3 and uses `IBDesignable`, `IBInspectable` and Core Graphics. ## Installation @@ -21,7 +21,7 @@ CDCodabarView is available through [CocoaPods](http://cocoapods.org). To install pod 'CDCodabarView' ``` -Alternatively, you can install it manually by copying the file `Pod/Classes/CDCodabarView.swift` into your project. +Alternatively, you can install it manually by copying the file `CDCodabarView.swift` into your project. ## Usage (Storyboards) @@ -46,14 +46,14 @@ Alternatively, you can install it manually by copying the file `Pod/Classes/CDCo let codabarView = CDCodabarView() codabarView.frame = CGRect(x: 0, y: 0, width: 200, height: 100) codabarView.code = "A12345B" - codabarView.backgroundColor = .whiteColor() + codabarView.backgroundColor = .white ``` 3. Customize the barcode: ``` - codabarView.barColor = .blueColor() - codabarView.textColor = .redColor() + codabarView.barColor = .blue + codabarView.textColor = .red codabarView.padding = 5 codabarView.hideCode = false codabarView.font = UIFont(name: "AvenirNext-Regular", size: 15.0)! diff --git a/_Pods.xcodeproj b/_Pods.xcodeproj deleted file mode 120000 index 3c5a8e7..0000000 --- a/_Pods.xcodeproj +++ /dev/null @@ -1 +0,0 @@ -Example/Pods/Pods.xcodeproj \ No newline at end of file