├── .gitignore ├── .travis.yml ├── DimensionsPickerView.podspec ├── DimensionsPickerView ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── DimensionsPickerView.swift ├── Example ├── DimensionsPickerView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── DimensionsPickerView-Example.xcscheme ├── DimensionsPickerView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── DimensionsPickerView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── SizeDimensionsPickerView.swift │ ├── UnderlineTextField.swift │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── DimensionsPickerView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── DimensionsPickerView │ │ ├── DimensionsPickerView-Info.plist │ │ ├── DimensionsPickerView-dummy.m │ │ ├── DimensionsPickerView-prefix.pch │ │ ├── DimensionsPickerView-umbrella.h │ │ ├── DimensionsPickerView.modulemap │ │ └── DimensionsPickerView.xcconfig │ │ ├── Pods-DimensionsPickerView_Example │ │ ├── Pods-DimensionsPickerView_Example-Info.plist │ │ ├── Pods-DimensionsPickerView_Example-acknowledgements.markdown │ │ ├── Pods-DimensionsPickerView_Example-acknowledgements.plist │ │ ├── Pods-DimensionsPickerView_Example-dummy.m │ │ ├── Pods-DimensionsPickerView_Example-frameworks.sh │ │ ├── Pods-DimensionsPickerView_Example-umbrella.h │ │ ├── Pods-DimensionsPickerView_Example.debug.xcconfig │ │ ├── Pods-DimensionsPickerView_Example.modulemap │ │ └── Pods-DimensionsPickerView_Example.release.xcconfig │ │ └── Pods-DimensionsPickerView_Tests │ │ ├── Pods-DimensionsPickerView_Tests-Info.plist │ │ ├── Pods-DimensionsPickerView_Tests-acknowledgements.markdown │ │ ├── Pods-DimensionsPickerView_Tests-acknowledgements.plist │ │ ├── Pods-DimensionsPickerView_Tests-dummy.m │ │ ├── Pods-DimensionsPickerView_Tests-umbrella.h │ │ ├── Pods-DimensionsPickerView_Tests.debug.xcconfig │ │ ├── Pods-DimensionsPickerView_Tests.modulemap │ │ └── Pods-DimensionsPickerView_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── Header.jpg ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata/ 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 26 | # Carthage/Checkouts 27 | 28 | Carthage/Build 29 | 30 | # We recommend against adding the Pods directory to your .gitignore. However 31 | # you should judge for yourself, the pros and cons are mentioned at: 32 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 33 | # 34 | # Note: if you ignore the Pods directory, make sure to uncomment 35 | # `pod install` in .travis.yml 36 | # 37 | # Pods/ 38 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * https://www.objc.io/issues/6-build-tools/travis-ci/ 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode10.2 6 | language: objective-c 7 | xcode_workspace: Example/DimensionsPickerView.xcworkspace 8 | xcode_scheme: DimensionsPickerView-Example 9 | xcode_sdk: iphonesimulator12.2 10 | -------------------------------------------------------------------------------- /DimensionsPickerView.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint DimensionsPickerView.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'DimensionsPickerView' 11 | s.version = '0.0.1' 12 | s.summary = 'A Simple Highly Customizable Dimensions Picker ( Weight, Size, Speed, ... ) view for iOS' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = <<-DESC 21 | A Simple Highly Customizable Dimensions Picker control for iOS, 22 | with support for a wide range of unit selection, like: 23 | - Mass 24 | - Speed 25 | - Sizes ( 1, 2, 3 dimensions, or even more ) 26 | 27 | DESC 28 | 29 | s.homepage = 'https://github.com/hussc/DimensionsPickerView' 30 | s.screenshots = 'https://i.postimg.cc/G2JhLHCB/Simulator-Screen-Shot-My-i-Phone-SE-2019-11-08-at-07-12-34.png' 31 | s.license = { :type => 'MIT', :file => 'LICENSE' } 32 | s.author = { 'hussc' => 'hus.sc@aol.com' } 33 | s.source = { :git => 'https://github.com/hussc/DimensionsPickerView.git', :tag => s.version.to_s } 34 | s.social_media_url = 'https://facebook.com/hussc' 35 | 36 | s.ios.deployment_target = '10.0' 37 | s.swift_version = '5.0' 38 | 39 | s.source_files = 'DimensionsPickerView/Classes/**/*' 40 | 41 | # s.resource_bundles = { 42 | # 'DimensionsPickerView' => ['DimensionsPickerView/Assets/*.png'] 43 | # } 44 | 45 | # s.public_header_files = 'Pod/Classes/**/*.h' 46 | s.frameworks = 'UIKit' 47 | end 48 | -------------------------------------------------------------------------------- /DimensionsPickerView/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussc/DimensionsPickerView/bdc9e47cae54c0a5a1c25cd76f541b04fce8d9b8/DimensionsPickerView/Assets/.gitkeep -------------------------------------------------------------------------------- /DimensionsPickerView/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussc/DimensionsPickerView/bdc9e47cae54c0a5a1c25cd76f541b04fce8d9b8/DimensionsPickerView/Classes/.gitkeep -------------------------------------------------------------------------------- /DimensionsPickerView/Classes/DimensionsPickerView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DimensionalTextField.swift 3 | // DimensionTextField 4 | // 5 | // Created by Hussein AlRyalat on 11/6/19. 6 | // Copyright © 2019 Hussein AlRyalat. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | 12 | /** 13 | Can someone put a pull request to suggest a description of the class? 🤷‍♂️ 14 | */ 15 | @IBDesignable open class DimensionsPickerView: UIControl { 16 | 17 | /** 18 | Represents the text fields count ( excluding the unit text field ), the minimum value is 1, any value less than this raises an exception. 19 | */ 20 | @IBInspectable open var inputFieldsCount: Int = 2 { 21 | didSet { 22 | reloadViewsWithDefaultParameters() 23 | } 24 | } 25 | 26 | 27 | /** 28 | Controls the visability of labels between the text fields, like the x between the width and height dimensions. 29 | */ 30 | @IBInspectable open var hasLabels: Bool = true { 31 | didSet { 32 | reloadApperanceOfLabels() 33 | } 34 | } 35 | 36 | /** 37 | The unit field appears at the trailing of the view and shows a simple non-editable unit text, like m or km. 38 | */ 39 | @IBInspectable open var hasUnitField: Bool = true { 40 | didSet { 41 | reloadUnitFieldApperance() 42 | } 43 | } 44 | 45 | @IBInspectable open var spacingBetweenValueFields: CGFloat = 5 { 46 | didSet { 47 | textFieldsStackView.spacing = spacingBetweenValueFields 48 | } 49 | } 50 | 51 | @IBInspectable open var spacingBetweenUnitAndValues: CGFloat = 5 { 52 | didSet { 53 | containerStackView.spacing = spacingBetweenUnitAndValues 54 | } 55 | } 56 | 57 | /** 58 | A helper variable which let's you get the values from the text fields, because the view has multiple text fields, one may not have the value inputted in, so whenever the user did not enter a value in one of the fields, it will have a null value. 59 | 60 | Note: The count of the `values` array will always be the same as the `textFields` property and the `inputFieldsCount` property. 61 | */ 62 | public var values: [Double?] { 63 | set { 64 | // trim the array so it's large or equal the text fields count. 65 | let trimmed = newValue.refilled(with: inputFieldsCount) 66 | let texts: [String?] 67 | 68 | // map the values into strings 69 | if let valueFormatter = self.valueToStringFormatter { 70 | texts = trimmed.map { valueFormatter(trimmed.firstIndex(of: $0)!, $0) } 71 | } else { 72 | texts = trimmed.map { 73 | if let value = $0 { 74 | return self.numberFormatter.string(from: NSNumber(value: value)) 75 | } else { 76 | return nil 77 | } 78 | } 79 | } 80 | 81 | for (index, textField) in valuesTextFields.enumerated() { 82 | textField.text = texts[index] 83 | } 84 | 85 | sendActions(for: .valueChanged) 86 | } get { 87 | // return the texts of the text fields mapped to double values :) 88 | let texts = valuesTextFields.map { $0.text } 89 | let values: [Double?] 90 | 91 | if let valueFormatter = self.stringToValueFormatter { 92 | values = texts.map { valueFormatter(texts.firstIndex(of: $0)!, $0) } 93 | } else { 94 | values = texts.map { 95 | if let value = $0 { 96 | return self.numberFormatter.number(from: value)?.doubleValue 97 | } else { 98 | return nil 99 | } 100 | } 101 | } 102 | 103 | return values 104 | } 105 | } 106 | 107 | /** 108 | Use this property to insure all values are correct and entered by the user. 109 | */ 110 | public var isValidContent: Bool { 111 | return values.filter { $0 == nil }.isEmpty 112 | } 113 | 114 | /** 115 | Computed property to get the value fields in the reciever, the fields count will always be equal to the input fields property. 116 | */ 117 | public var valuesTextFields: [UITextField] { 118 | return textFieldsStackView.arrangedSubviews.compactMap { $0 as? UITextField } 119 | } 120 | 121 | /** 122 | Computed property to get the labels between the value fields if there is any, if the reciever `hasLabels` is true, the count of the labels will be `inputFieldsCount` - 1, and if not, the count will be zero. 123 | */ 124 | public var labels: [UILabel] { 125 | return textFieldsStackView.arrangedSubviews.compactMap { $0 as? UILabel } 126 | } 127 | 128 | /** 129 | The unit text field that represents the unit value displayed in the trailing of the reciever, the view is nil if the reciever `hasUnitField` is off. 130 | */ 131 | public var unitTextField: UITextField? { 132 | return pickersStackView.arrangedSubviews.compactMap { $0 as? UITextField }.first 133 | } 134 | 135 | /** 136 | Just like any regular iOS Control, this value controls the internal text fields `isEnabled` property 137 | */ 138 | open override var isEnabled: Bool { 139 | didSet { 140 | for textField in valuesTextFields { 141 | textField.isEnabled = isEnabled 142 | } 143 | } 144 | } 145 | 146 | /** 147 | Customization block when converting from a value to a text displayed in the text field, this block will be called when you set the values of the reciever, which converts the the given values into strings to display. 148 | 149 | Note: the default number formatter will be used if the block is nil. 150 | */ 151 | open var valueToStringFormatter: ((Int, Double?) -> String?)? 152 | 153 | /** 154 | Customization block to convert a string from the user input into a value, this block is called whenever you try to access the values property of the reciever, which takes the input the user has written and transforms it into double values 155 | 156 | Note: the default number formatter will be used if the block is nil. 157 | */ 158 | open var stringToValueFormatter: ((Int, String?) -> Double?)? 159 | 160 | 161 | open var textFieldConfigureBlock: ((Int, UITextField) -> Void)? { 162 | didSet { 163 | for (index, field) in valuesTextFields.enumerated() { 164 | textFieldConfigureBlock?(index, field) 165 | } 166 | } 167 | } 168 | 169 | 170 | open var labelConfigureBlock: ((Int, UILabel) -> Void)? { 171 | didSet { 172 | for (index, label) in labels.enumerated() { 173 | labelConfigureBlock?(index, label) 174 | } 175 | } 176 | } 177 | 178 | 179 | open var pickerFieldConfigureBlock: ((UITextField) -> Void)? { 180 | didSet { 181 | if let field = unitTextField { 182 | pickerFieldConfigureBlock?(field) 183 | } 184 | } 185 | } 186 | 187 | 188 | public var numberFormatter: NumberFormatter = { 189 | let numberFormatter = NumberFormatter() 190 | numberFormatter.maximumIntegerDigits = 2 191 | return numberFormatter 192 | }() 193 | 194 | fileprivate let containerStackView: UIStackView = { 195 | let stackView = UIStackView() 196 | stackView.alignment = .fill 197 | stackView.axis = .horizontal 198 | stackView.spacing = 5 199 | stackView.translatesAutoresizingMaskIntoConstraints = false 200 | 201 | return stackView 202 | }() 203 | 204 | fileprivate let textFieldsStackView: UIStackView = { 205 | let stackView = UIStackView() 206 | stackView.axis = .horizontal 207 | stackView.alignment = .fill 208 | stackView.spacing = 5 209 | stackView.distribution = .fillProportionally 210 | return stackView 211 | }() 212 | 213 | fileprivate let pickersStackView: UIStackView = { 214 | let stackView = UIStackView() 215 | stackView.alignment = .fill 216 | stackView.axis = .horizontal 217 | stackView.distribution = .fillEqually 218 | stackView.setContentHuggingPriority(.required, for: .horizontal) 219 | stackView.setContentCompressionResistancePriority(.defaultLow, for: .horizontal) 220 | return stackView 221 | }() 222 | 223 | 224 | override public init(frame: CGRect) { 225 | super.init(frame: frame) 226 | basicSetup() 227 | } 228 | 229 | required public init?(coder: NSCoder) { 230 | super.init(coder: coder) 231 | basicSetup() 232 | } 233 | 234 | fileprivate func basicSetup(){ 235 | addSubview(containerStackView) 236 | 237 | containerStackView.topAnchor.constraint(equalTo: self.topAnchor).isActive = true 238 | containerStackView.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true 239 | containerStackView.leadingAnchor.constraint(equalTo: self.leadingAnchor).isActive = true 240 | containerStackView.trailingAnchor.constraint(equalTo: self.trailingAnchor).isActive = true 241 | 242 | 243 | containerStackView.addArrangedSubview(textFieldsStackView) 244 | containerStackView.addArrangedSubview(pickersStackView) 245 | 246 | /* listen to changes to the notification center notification recieved from the text fields */ 247 | reloadViewsWithDefaultParameters() 248 | } 249 | 250 | fileprivate func reloadViewsWithDefaultParameters(){ 251 | reloadViews(with: max(1, inputFieldsCount), hasLabels: self.hasLabels, hasPickerTextField: self.hasUnitField) 252 | } 253 | 254 | fileprivate func reloadUnitFieldApperance(){ 255 | pickersStackView.isHidden = !hasUnitField 256 | } 257 | 258 | fileprivate func reloadApperanceOfLabels(){ 259 | self.labels.forEach { 260 | $0.isHidden = !self.hasLabels 261 | } 262 | } 263 | 264 | fileprivate func reloadViews(with textFieldsCount: Int, 265 | hasLabels: Bool, 266 | hasPickerTextField: Bool){ 267 | 268 | 269 | clearTextFieldsStack() 270 | clearPickersStack() 271 | 272 | setupTextFieldsWithLabels(of: textFieldsCount, hasLabels: hasLabels) 273 | 274 | setupPickerTextField() 275 | 276 | if let firstTextField = valuesTextFields.first { 277 | pickersStackView.widthAnchor.constraint(equalTo: firstTextField.widthAnchor).isActive = true 278 | return 279 | } 280 | } 281 | 282 | fileprivate func customizeNumberField(textField: UITextField, for index: Int){ 283 | textField.font = UIFont(name: "AvenirNext-Medium", size: 15) 284 | textField.textAlignment = .center 285 | textField.setContentCompressionResistancePriority(.required, for: .horizontal) 286 | textField.setContentHuggingPriority(.defaultLow, for: .horizontal) 287 | textField.keyboardType = .numberPad 288 | 289 | self.textFieldConfigureBlock?(index, textField) 290 | 291 | NotificationCenter.default.addObserver(self, selector: #selector(textFieldTextDidChange(notification:)), name: UITextField.textDidChangeNotification, object: textField) 292 | textField.delegate = self 293 | } 294 | 295 | fileprivate func customizePickerField(textField: UITextField){ 296 | textField.textAlignment = .center 297 | textField.font = UIFont(name: "AvenirNext-Medium", size: 15) 298 | textField.isEnabled = false 299 | 300 | self.pickerFieldConfigureBlock?(textField) 301 | 302 | textField.delegate = self 303 | } 304 | 305 | fileprivate func customizeLabel(label: UILabel, for index: Int){ 306 | label.text = "x" 307 | label.textAlignment = .center 308 | label.font = UIFont(name: "AvenirNext-Medium", size: 15) 309 | label.setContentCompressionResistancePriority(.defaultLow, for: .horizontal) 310 | label.setContentHuggingPriority(.defaultHigh, for: .horizontal) 311 | 312 | label.widthAnchor.constraint(equalToConstant: 20).isActive = true 313 | 314 | self.labelConfigureBlock?(index, label) 315 | } 316 | 317 | fileprivate func clearTextFieldsStack(){ 318 | // remove all text fields and labels 319 | textFieldsStackView.arrangedSubviews.forEach { 320 | textFieldsStackView.removeArrangedSubview($0) 321 | $0.removeFromSuperview() 322 | } 323 | } 324 | 325 | fileprivate func clearPickersStack(){ 326 | pickersStackView.arrangedSubviews.forEach { 327 | pickersStackView.removeArrangedSubview($0) 328 | $0.removeFromSuperview() 329 | } 330 | } 331 | 332 | fileprivate func setupTextFieldsWithLabels(of count: Int, hasLabels: Bool){ 333 | // we need to add (n) text fields, and (n - 1) labels. 334 | // as we always need to start with text field and then a label, we need to put a text field whenever i % 2 == 0 ( or i == 0 ), and a label whenever i % 2 != 0. 335 | for i in 0..<(count + (count - 1)) { 336 | if i == 0 || i % 2 == 0 { 337 | // put a textField 338 | let textField = self.buildValueTextField() 339 | 340 | // and how to compute the i? we did it :) 341 | customizeNumberField(textField: textField, for: max(0, i - 1)) 342 | textFieldsStackView.addArrangedSubview(textField) 343 | 344 | // and if the text field is not the first one, make sure it's size equals the first text field :) 345 | if i != 0 { 346 | textField.widthAnchor.constraint(equalTo: valuesTextFields.first!.widthAnchor).isActive = true 347 | } 348 | } else { 349 | // put a label 350 | let label = self.buildLabel() 351 | customizeLabel(label: label, for: i - 1) 352 | label.isHidden = !hasLabels 353 | textFieldsStackView.addArrangedSubview(label) 354 | } 355 | } 356 | } 357 | 358 | // adds the picker text field to the view. 359 | fileprivate func setupPickerTextField(){ 360 | let textField = self.buildPickerTextField() 361 | customizePickerField(textField: textField) 362 | pickersStackView.addArrangedSubview(textField) 363 | } 364 | 365 | //MARK: Building Elements 366 | open func buildValueTextField() -> UITextField { 367 | let textField = UITextField() 368 | return textField 369 | } 370 | 371 | open func buildPickerTextField() -> UITextField { 372 | let textField = UITextField() 373 | return textField 374 | } 375 | 376 | open func buildLabel() -> UILabel { 377 | let label = UILabel() 378 | return label 379 | } 380 | } 381 | 382 | //MARK: UITextField Delegate 383 | extension DimensionsPickerView: UITextFieldDelegate { 384 | public func textFieldShouldReturn(_ textField: UITextField) -> Bool { 385 | sendActions(for: .valueChanged) 386 | 387 | if textField == unitTextField { 388 | // return. just ended editing. 389 | return textField.resignFirstResponder() 390 | } 391 | 392 | if let index = valuesTextFields.firstIndex(of: textField){ 393 | // do we have a next index to switch to? 394 | let nextIndex = index + 1 395 | if nextIndex < inputFieldsCount { 396 | let nextTextField = valuesTextFields[nextIndex] 397 | return nextTextField.becomeFirstResponder() 398 | } else { 399 | if let pickerField = self.unitTextField { 400 | if !pickerField.becomeFirstResponder(){ 401 | textField.resignFirstResponder() 402 | } else { 403 | return true 404 | } 405 | } else { 406 | textField.resignFirstResponder() 407 | } 408 | } 409 | } else { 410 | return textField.resignFirstResponder() 411 | } 412 | 413 | return textField.resignFirstResponder() 414 | } 415 | 416 | public func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool { 417 | 418 | 419 | // always allow editing for picker text field 420 | if textField == unitTextField { 421 | return true 422 | } 423 | 424 | // Handle backspace/delete 425 | guard !string.isEmpty else { 426 | // Backspace detected, allow text change, no need to process the text any further 427 | return true 428 | } 429 | 430 | 431 | // Need to convert the NSRange to a Swift-appropriate type 432 | if let text = textField.text, let range = Range(range, in: text) { 433 | 434 | let proposedText = text.replacingCharacters(in: range, with: string) 435 | 436 | guard numberFormatter.number(from: proposedText) != nil else { 437 | return false 438 | } 439 | 440 | return true 441 | } 442 | 443 | // Allow text change 444 | return true 445 | } 446 | 447 | @objc func textFieldTextDidChange(notification: NSNotification){ 448 | if let textField = notification.object as? UITextField { 449 | if valuesTextFields.contains(textField){ 450 | self.sendActions(for: .valueChanged) 451 | } 452 | } 453 | } 454 | } 455 | 456 | internal extension Array where Element == Optional { 457 | func refilled(with desiredCount: Int) -> [Double?] { 458 | var finalArray = [Double?](repeating: nil, count: desiredCount) 459 | 460 | 461 | if count < desiredCount { 462 | // fill the array with the items from the given array, or null for empty positions 463 | 464 | for (index, item) in self.enumerated() { 465 | finalArray[index] = item 466 | } 467 | 468 | return finalArray 469 | } else { 470 | // the count of the array is more than the desired count, so we need to trim the array. 471 | return Array(self[0.. /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 300 | showEnvVarsInLog = 0; 301 | }; 302 | 9FA8B85C52A3FB90813940BF /* [CP] Check Pods Manifest.lock */ = { 303 | isa = PBXShellScriptBuildPhase; 304 | buildActionMask = 2147483647; 305 | files = ( 306 | ); 307 | inputFileListPaths = ( 308 | ); 309 | inputPaths = ( 310 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 311 | "${PODS_ROOT}/Manifest.lock", 312 | ); 313 | name = "[CP] Check Pods Manifest.lock"; 314 | outputFileListPaths = ( 315 | ); 316 | outputPaths = ( 317 | "$(DERIVED_FILE_DIR)/Pods-DimensionsPickerView_Tests-checkManifestLockResult.txt", 318 | ); 319 | runOnlyForDeploymentPostprocessing = 0; 320 | shellPath = /bin/sh; 321 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 322 | showEnvVarsInLog = 0; 323 | }; 324 | F4E6E7DCAD2B6D22E269E0F6 /* [CP] Embed Pods Frameworks */ = { 325 | isa = PBXShellScriptBuildPhase; 326 | buildActionMask = 2147483647; 327 | files = ( 328 | ); 329 | inputPaths = ( 330 | "${PODS_ROOT}/Target Support Files/Pods-DimensionsPickerView_Example/Pods-DimensionsPickerView_Example-frameworks.sh", 331 | "${BUILT_PRODUCTS_DIR}/DimensionsPickerView/DimensionsPickerView.framework", 332 | ); 333 | name = "[CP] Embed Pods Frameworks"; 334 | outputPaths = ( 335 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DimensionsPickerView.framework", 336 | ); 337 | runOnlyForDeploymentPostprocessing = 0; 338 | shellPath = /bin/sh; 339 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DimensionsPickerView_Example/Pods-DimensionsPickerView_Example-frameworks.sh\"\n"; 340 | showEnvVarsInLog = 0; 341 | }; 342 | /* End PBXShellScriptBuildPhase section */ 343 | 344 | /* Begin PBXSourcesBuildPhase section */ 345 | 607FACCC1AFB9204008FA782 /* Sources */ = { 346 | isa = PBXSourcesBuildPhase; 347 | buildActionMask = 2147483647; 348 | files = ( 349 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 350 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 351 | E40F3D202374283400E38EC3 /* SizeDimensionsPickerView.swift in Sources */, 352 | E40F3D1D237427D500E38EC3 /* UnderlineTextField.swift in Sources */, 353 | ); 354 | runOnlyForDeploymentPostprocessing = 0; 355 | }; 356 | 607FACE11AFB9204008FA782 /* Sources */ = { 357 | isa = PBXSourcesBuildPhase; 358 | buildActionMask = 2147483647; 359 | files = ( 360 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 361 | ); 362 | runOnlyForDeploymentPostprocessing = 0; 363 | }; 364 | /* End PBXSourcesBuildPhase section */ 365 | 366 | /* Begin PBXTargetDependency section */ 367 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 368 | isa = PBXTargetDependency; 369 | target = 607FACCF1AFB9204008FA782 /* DimensionsPickerView_Example */; 370 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 371 | }; 372 | /* End PBXTargetDependency section */ 373 | 374 | /* Begin PBXVariantGroup section */ 375 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 376 | isa = PBXVariantGroup; 377 | children = ( 378 | 607FACDA1AFB9204008FA782 /* Base */, 379 | ); 380 | name = Main.storyboard; 381 | sourceTree = ""; 382 | }; 383 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 384 | isa = PBXVariantGroup; 385 | children = ( 386 | 607FACDF1AFB9204008FA782 /* Base */, 387 | ); 388 | name = LaunchScreen.xib; 389 | sourceTree = ""; 390 | }; 391 | /* End PBXVariantGroup section */ 392 | 393 | /* Begin XCBuildConfiguration section */ 394 | 607FACED1AFB9204008FA782 /* Debug */ = { 395 | isa = XCBuildConfiguration; 396 | buildSettings = { 397 | ALWAYS_SEARCH_USER_PATHS = NO; 398 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 399 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 400 | CLANG_CXX_LIBRARY = "libc++"; 401 | CLANG_ENABLE_MODULES = YES; 402 | CLANG_ENABLE_OBJC_ARC = YES; 403 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 404 | CLANG_WARN_BOOL_CONVERSION = YES; 405 | CLANG_WARN_COMMA = YES; 406 | CLANG_WARN_CONSTANT_CONVERSION = YES; 407 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 408 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 409 | CLANG_WARN_EMPTY_BODY = YES; 410 | CLANG_WARN_ENUM_CONVERSION = YES; 411 | CLANG_WARN_INFINITE_RECURSION = YES; 412 | CLANG_WARN_INT_CONVERSION = YES; 413 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 414 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 415 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 416 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 417 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 418 | CLANG_WARN_STRICT_PROTOTYPES = YES; 419 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 420 | CLANG_WARN_UNREACHABLE_CODE = YES; 421 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 422 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 423 | COPY_PHASE_STRIP = NO; 424 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 425 | ENABLE_STRICT_OBJC_MSGSEND = YES; 426 | ENABLE_TESTABILITY = YES; 427 | GCC_C_LANGUAGE_STANDARD = gnu99; 428 | GCC_DYNAMIC_NO_PIC = NO; 429 | GCC_NO_COMMON_BLOCKS = YES; 430 | GCC_OPTIMIZATION_LEVEL = 0; 431 | GCC_PREPROCESSOR_DEFINITIONS = ( 432 | "DEBUG=1", 433 | "$(inherited)", 434 | ); 435 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 436 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 437 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 438 | GCC_WARN_UNDECLARED_SELECTOR = YES; 439 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 440 | GCC_WARN_UNUSED_FUNCTION = YES; 441 | GCC_WARN_UNUSED_VARIABLE = YES; 442 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 443 | MTL_ENABLE_DEBUG_INFO = YES; 444 | ONLY_ACTIVE_ARCH = YES; 445 | SDKROOT = iphoneos; 446 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 447 | }; 448 | name = Debug; 449 | }; 450 | 607FACEE1AFB9204008FA782 /* Release */ = { 451 | isa = XCBuildConfiguration; 452 | buildSettings = { 453 | ALWAYS_SEARCH_USER_PATHS = NO; 454 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 455 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 456 | CLANG_CXX_LIBRARY = "libc++"; 457 | CLANG_ENABLE_MODULES = YES; 458 | CLANG_ENABLE_OBJC_ARC = YES; 459 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 460 | CLANG_WARN_BOOL_CONVERSION = YES; 461 | CLANG_WARN_COMMA = YES; 462 | CLANG_WARN_CONSTANT_CONVERSION = YES; 463 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 464 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 465 | CLANG_WARN_EMPTY_BODY = YES; 466 | CLANG_WARN_ENUM_CONVERSION = YES; 467 | CLANG_WARN_INFINITE_RECURSION = YES; 468 | CLANG_WARN_INT_CONVERSION = YES; 469 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 470 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 471 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 472 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 473 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 474 | CLANG_WARN_STRICT_PROTOTYPES = YES; 475 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 476 | CLANG_WARN_UNREACHABLE_CODE = YES; 477 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 478 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 479 | COPY_PHASE_STRIP = NO; 480 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 481 | ENABLE_NS_ASSERTIONS = NO; 482 | ENABLE_STRICT_OBJC_MSGSEND = YES; 483 | GCC_C_LANGUAGE_STANDARD = gnu99; 484 | GCC_NO_COMMON_BLOCKS = YES; 485 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 486 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 487 | GCC_WARN_UNDECLARED_SELECTOR = YES; 488 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 489 | GCC_WARN_UNUSED_FUNCTION = YES; 490 | GCC_WARN_UNUSED_VARIABLE = YES; 491 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 492 | MTL_ENABLE_DEBUG_INFO = NO; 493 | SDKROOT = iphoneos; 494 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 495 | VALIDATE_PRODUCT = YES; 496 | }; 497 | name = Release; 498 | }; 499 | 607FACF01AFB9204008FA782 /* Debug */ = { 500 | isa = XCBuildConfiguration; 501 | baseConfigurationReference = 14EDA2BBF4F0E075397563AE /* Pods-DimensionsPickerView_Example.debug.xcconfig */; 502 | buildSettings = { 503 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 504 | DEVELOPMENT_TEAM = 6VU6999229; 505 | INFOPLIST_FILE = DimensionsPickerView/Info.plist; 506 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 507 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 508 | MODULE_NAME = ExampleApp; 509 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 510 | PRODUCT_NAME = "$(TARGET_NAME)"; 511 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 512 | SWIFT_VERSION = 5.0; 513 | }; 514 | name = Debug; 515 | }; 516 | 607FACF11AFB9204008FA782 /* Release */ = { 517 | isa = XCBuildConfiguration; 518 | baseConfigurationReference = 1BC45B039314ADE4DDEFF98A /* Pods-DimensionsPickerView_Example.release.xcconfig */; 519 | buildSettings = { 520 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 521 | DEVELOPMENT_TEAM = 6VU6999229; 522 | INFOPLIST_FILE = DimensionsPickerView/Info.plist; 523 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 524 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 525 | MODULE_NAME = ExampleApp; 526 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 527 | PRODUCT_NAME = "$(TARGET_NAME)"; 528 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 529 | SWIFT_VERSION = 5.0; 530 | }; 531 | name = Release; 532 | }; 533 | 607FACF31AFB9204008FA782 /* Debug */ = { 534 | isa = XCBuildConfiguration; 535 | baseConfigurationReference = 96C0AF1684CAE7086C226AC6 /* Pods-DimensionsPickerView_Tests.debug.xcconfig */; 536 | buildSettings = { 537 | DEVELOPMENT_TEAM = 6VU6999229; 538 | FRAMEWORK_SEARCH_PATHS = ( 539 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 540 | "$(inherited)", 541 | ); 542 | GCC_PREPROCESSOR_DEFINITIONS = ( 543 | "DEBUG=1", 544 | "$(inherited)", 545 | ); 546 | INFOPLIST_FILE = Tests/Info.plist; 547 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 548 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 549 | PRODUCT_NAME = "$(TARGET_NAME)"; 550 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 551 | SWIFT_VERSION = 5.0; 552 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DimensionsPickerView_Example.app/DimensionsPickerView_Example"; 553 | }; 554 | name = Debug; 555 | }; 556 | 607FACF41AFB9204008FA782 /* Release */ = { 557 | isa = XCBuildConfiguration; 558 | baseConfigurationReference = 2FF1066491F8136FD82CA3EA /* Pods-DimensionsPickerView_Tests.release.xcconfig */; 559 | buildSettings = { 560 | DEVELOPMENT_TEAM = 6VU6999229; 561 | FRAMEWORK_SEARCH_PATHS = ( 562 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 563 | "$(inherited)", 564 | ); 565 | INFOPLIST_FILE = Tests/Info.plist; 566 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 567 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 568 | PRODUCT_NAME = "$(TARGET_NAME)"; 569 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 570 | SWIFT_VERSION = 5.0; 571 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DimensionsPickerView_Example.app/DimensionsPickerView_Example"; 572 | }; 573 | name = Release; 574 | }; 575 | /* End XCBuildConfiguration section */ 576 | 577 | /* Begin XCConfigurationList section */ 578 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "DimensionsPickerView" */ = { 579 | isa = XCConfigurationList; 580 | buildConfigurations = ( 581 | 607FACED1AFB9204008FA782 /* Debug */, 582 | 607FACEE1AFB9204008FA782 /* Release */, 583 | ); 584 | defaultConfigurationIsVisible = 0; 585 | defaultConfigurationName = Release; 586 | }; 587 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "DimensionsPickerView_Example" */ = { 588 | isa = XCConfigurationList; 589 | buildConfigurations = ( 590 | 607FACF01AFB9204008FA782 /* Debug */, 591 | 607FACF11AFB9204008FA782 /* Release */, 592 | ); 593 | defaultConfigurationIsVisible = 0; 594 | defaultConfigurationName = Release; 595 | }; 596 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "DimensionsPickerView_Tests" */ = { 597 | isa = XCConfigurationList; 598 | buildConfigurations = ( 599 | 607FACF31AFB9204008FA782 /* Debug */, 600 | 607FACF41AFB9204008FA782 /* Release */, 601 | ); 602 | defaultConfigurationIsVisible = 0; 603 | defaultConfigurationName = Release; 604 | }; 605 | /* End XCConfigurationList section */ 606 | }; 607 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 608 | } 609 | -------------------------------------------------------------------------------- /Example/DimensionsPickerView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/DimensionsPickerView.xcodeproj/xcshareddata/xcschemes/DimensionsPickerView-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 51 | 52 | 53 | 54 | 56 | 62 | 63 | 64 | 65 | 66 | 76 | 78 | 84 | 85 | 86 | 87 | 93 | 95 | 101 | 102 | 103 | 104 | 106 | 107 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /Example/DimensionsPickerView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/DimensionsPickerView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/DimensionsPickerView/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // DimensionsPickerView 4 | // 5 | // Created by hussc on 11/07/2019. 6 | // Copyright (c) 2019 hussc. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/DimensionsPickerView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Example/DimensionsPickerView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 35 | 48 | 49 | 50 | 51 | 57 | 63 | 64 | 65 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | -------------------------------------------------------------------------------- /Example/DimensionsPickerView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "size" : "1024x1024", 46 | "scale" : "1x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /Example/DimensionsPickerView/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example/DimensionsPickerView/SizeDimensionsPickerView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SizeDimensionsPickerView.swift 3 | // DimensionsPickerView_Example 4 | // 5 | // Created by Hussein AlRyalat on 11/7/19. 6 | // Copyright © 2019 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import DimensionsPickerView 11 | 12 | class SizeDimensionsPickerView: DimensionsPickerView { 13 | 14 | // you know, just saying that we can 15 | override func buildValueTextField() -> UITextField { 16 | let field = UnderlineTextField() 17 | field.underlineView.backgroundColor = UIColor(white: 0.96, alpha: 1) 18 | return field 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Example/DimensionsPickerView/UnderlineTextField.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UnderlineTextField.swift 3 | // DimensionsPickerView_Example 4 | // 5 | // Created by Hussein AlRyalat on 11/7/19. 6 | // Copyright © 2019 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @IBDesignable class UnderlineTextField: UITextField { 12 | 13 | fileprivate var insets: UIEdgeInsets { 14 | .init(top: 0, left: 0, bottom: underlineHeight, right: 0) 15 | } 16 | 17 | var underlineHeight: CGFloat = 0 { 18 | didSet { 19 | setNeedsLayout() 20 | setNeedsDisplay() 21 | } 22 | } 23 | 24 | let underlineView: UIView = { 25 | let view = UIView() 26 | view.backgroundColor = UIColor(white: 0.96, alpha: 1) 27 | return view 28 | }() 29 | 30 | override init(frame: CGRect) { 31 | super.init(frame: frame) 32 | setup() 33 | } 34 | 35 | required init?(coder: NSCoder) { 36 | super.init(coder: coder) 37 | setup() 38 | } 39 | 40 | override func layoutSubviews() { 41 | super.layoutSubviews() 42 | 43 | underlineView.frame = CGRect(x: 0, y: bounds.height - underlineHeight, width: bounds.width, height: underlineHeight) 44 | } 45 | 46 | override func textRect(forBounds bounds: CGRect) -> CGRect { 47 | return bounds.inset(by: insets) 48 | } 49 | 50 | override func placeholderRect(forBounds bounds: CGRect) -> CGRect { 51 | return bounds.inset(by: insets) 52 | } 53 | 54 | override func editingRect(forBounds bounds: CGRect) -> CGRect { 55 | return bounds.inset(by: insets) 56 | } 57 | 58 | fileprivate func setup(){ 59 | addSubview(underlineView) 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /Example/DimensionsPickerView/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // DimensionsPickerView 4 | // 5 | // Created by hussc on 11/07/2019. 6 | // Copyright (c) 2019 hussc. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UIViewController { 12 | 13 | @IBOutlet weak var sizePickerView: SizeDimensionsPickerView! 14 | 15 | override func viewDidLoad() { 16 | super.viewDidLoad() 17 | // Do any additional setup after loading the view, typically from a nib. 18 | 19 | 20 | setupApperanceOfSizePicker() 21 | sizePickerView.addTarget(self, action: #selector(sizePickerValueChanged), for: .valueChanged) 22 | } 23 | 24 | fileprivate func setupApperanceOfSizePicker(){ 25 | sizePickerView.textFieldConfigureBlock = { index, field in 26 | switch index { 27 | case 0: 28 | field.placeholder = "w" 29 | case 1: 30 | field.placeholder = "h" 31 | default: 32 | break 33 | } 34 | } 35 | 36 | sizePickerView.pickerFieldConfigureBlock = { field in 37 | field.text = "m" 38 | } 39 | 40 | 41 | sizePickerView.tintColor = UIColor(red: 0.10588235408067703, green: 0.7372549176216125, blue: 0.6117647290229797, alpha: 1.0) 42 | sizePickerView.spacingBetweenValueFields = 0 43 | sizePickerView.spacingBetweenUnitAndValues = 15 44 | 45 | sizePickerView.layer.cornerRadius = 6 46 | sizePickerView.layer.borderColor = UIColor(white: 0.96, alpha: 1).cgColor 47 | sizePickerView.layer.borderWidth = 1.5 48 | } 49 | 50 | fileprivate func reloadButtonState(){ 51 | 52 | } 53 | 54 | override func didReceiveMemoryWarning() { 55 | super.didReceiveMemoryWarning() 56 | // Dispose of any resources that can be recreated. 57 | } 58 | 59 | @objc func sizePickerValueChanged(){ 60 | print(sizePickerView.values) 61 | print(sizePickerView.isValidContent) 62 | } 63 | } 64 | 65 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'DimensionsPickerView_Example' do 4 | pod 'DimensionsPickerView', :path => '../' 5 | 6 | target 'DimensionsPickerView_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - DimensionsPickerView (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - DimensionsPickerView (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | DimensionsPickerView: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | DimensionsPickerView: 7afa43f95ec2156f6710182f6ff5f8547b0597e2 13 | 14 | PODFILE CHECKSUM: c3fdb4aaa27bf36299234cb8ab04d5647eddbfce 15 | 16 | COCOAPODS: 1.7.4 17 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/DimensionsPickerView.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "DimensionsPickerView", 3 | "version": "0.1.0", 4 | "summary": "A short description of DimensionsPickerView.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/hussc/DimensionsPickerView", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "hussc": "hus.sc@aol.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/hussc/DimensionsPickerView.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "DimensionsPickerView/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - DimensionsPickerView (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - DimensionsPickerView (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | DimensionsPickerView: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | DimensionsPickerView: 7afa43f95ec2156f6710182f6ff5f8547b0597e2 13 | 14 | PODFILE CHECKSUM: c3fdb4aaa27bf36299234cb8ab04d5647eddbfce 15 | 16 | COCOAPODS: 1.7.4 17 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1A3940373AEEF7C345929AA94822C33B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 11 | 341C9EE2327538EEA719409F98917D41 /* DimensionsPickerView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 262C681D8F5F1BAE6FC46A0E7DC4742C /* DimensionsPickerView-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 12 | 457331B5CC2CCE0676CF4EC067EE87B9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 13 | 609142543F4B783ECC2BC2A8E0CBB3AC /* Pods-DimensionsPickerView_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F5D258D613B06B450A0EF9AC38467F18 /* Pods-DimensionsPickerView_Tests-dummy.m */; }; 14 | 64C381C90233959F8255FD2FBD3D500D /* Pods-DimensionsPickerView_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C38B5FCC8A4905556975BCB0A7E605ED /* Pods-DimensionsPickerView_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 | 674BA195D7BC5F4AFC00AE63A5A661EA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 16 | 8D6AA6C06419B4DDDCA6C2747FCC756E /* Pods-DimensionsPickerView_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 67EDAA4394DCDBC30783AA800DEA725C /* Pods-DimensionsPickerView_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | 9ABA999A45897F12F44DA1734E2355F6 /* Pods-DimensionsPickerView_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A28BFEAFFF411C404ECB703E77340EC5 /* Pods-DimensionsPickerView_Example-dummy.m */; }; 18 | BD48318DD39D798D35B82C2564C00FF9 /* DimensionsPickerView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EC7D4095759D6F4D0BC246473AC6A07 /* DimensionsPickerView-dummy.m */; }; 19 | E40F3D1B2374116E00E38EC3 /* DimensionsPickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E40F3D1A2374116E00E38EC3 /* DimensionsPickerView.swift */; }; 20 | /* End PBXBuildFile section */ 21 | 22 | /* Begin PBXContainerItemProxy section */ 23 | CE12310B0EE044E2A72C96513F1C8076 /* PBXContainerItemProxy */ = { 24 | isa = PBXContainerItemProxy; 25 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 26 | proxyType = 1; 27 | remoteGlobalIDString = 15BE4E41423CD02786EF3A66F4B3ACE1; 28 | remoteInfo = DimensionsPickerView; 29 | }; 30 | EA1F9B08F909D6945BF67EF74C182E95 /* PBXContainerItemProxy */ = { 31 | isa = PBXContainerItemProxy; 32 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 33 | proxyType = 1; 34 | remoteGlobalIDString = 8804CB04A53BDBF840BDB398F4D36675; 35 | remoteInfo = "Pods-DimensionsPickerView_Example"; 36 | }; 37 | /* End PBXContainerItemProxy section */ 38 | 39 | /* Begin PBXFileReference section */ 40 | 0E516285F94BD9862B8F5CC8B5D5073D /* Pods-DimensionsPickerView_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DimensionsPickerView_Tests-acknowledgements.plist"; sourceTree = ""; }; 41 | 0FFA089A27FB25879AE675190F4547A6 /* DimensionsPickerView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DimensionsPickerView-prefix.pch"; sourceTree = ""; }; 42 | 262C681D8F5F1BAE6FC46A0E7DC4742C /* DimensionsPickerView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DimensionsPickerView-umbrella.h"; sourceTree = ""; }; 43 | 26B9695452A40D8A0E622A2CD8F50512 /* Pods-DimensionsPickerView_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DimensionsPickerView_Tests.modulemap"; sourceTree = ""; }; 44 | 2EC7D4095759D6F4D0BC246473AC6A07 /* DimensionsPickerView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DimensionsPickerView-dummy.m"; sourceTree = ""; }; 45 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 46 | 321A53B80F047AE93795574C666B4B20 /* Pods-DimensionsPickerView_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DimensionsPickerView_Tests-acknowledgements.markdown"; sourceTree = ""; }; 47 | 362BDF61B163B393367CD7492231B337 /* Pods-DimensionsPickerView_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DimensionsPickerView_Example.release.xcconfig"; sourceTree = ""; }; 48 | 3A6EBDDBE7CD5154D05FCF6708928095 /* Pods_DimensionsPickerView_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DimensionsPickerView_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 49 | 3EC08BF29438BF3520CFDAF3CE73BBA4 /* Pods-DimensionsPickerView_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DimensionsPickerView_Tests.debug.xcconfig"; sourceTree = ""; }; 50 | 473582B3F4AD345DC866DBFD1F7D5FB5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 51 | 59A4ABD121B8B7E37B6AD539EEA488DA /* DimensionsPickerView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DimensionsPickerView.xcconfig; sourceTree = ""; }; 52 | 5BDC8497BDA3DB333387F48FB5CFF264 /* Pods-DimensionsPickerView_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DimensionsPickerView_Tests.release.xcconfig"; sourceTree = ""; }; 53 | 5D4A696FFFC2099CD521E4BAA6F950A3 /* DimensionsPickerView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = DimensionsPickerView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 54 | 5DAA621E092711E5DA8DD52C9C53C26F /* Pods-DimensionsPickerView_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DimensionsPickerView_Tests-Info.plist"; sourceTree = ""; }; 55 | 6663B86440FA5802F00E0EE1CB17096A /* DimensionsPickerView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DimensionsPickerView.modulemap; sourceTree = ""; }; 56 | 67EDAA4394DCDBC30783AA800DEA725C /* Pods-DimensionsPickerView_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DimensionsPickerView_Tests-umbrella.h"; sourceTree = ""; }; 57 | 733315D19B55E688372D57CDD9982A35 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 58 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 59 | A28BFEAFFF411C404ECB703E77340EC5 /* Pods-DimensionsPickerView_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DimensionsPickerView_Example-dummy.m"; sourceTree = ""; }; 60 | A502B78C1038F09C4CB9C6411D8021FB /* Pods-DimensionsPickerView_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DimensionsPickerView_Example-acknowledgements.markdown"; sourceTree = ""; }; 61 | BACF79D77C8C5BF5A44DD66B538FD35C /* Pods-DimensionsPickerView_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-DimensionsPickerView_Example-frameworks.sh"; sourceTree = ""; }; 62 | C38B5FCC8A4905556975BCB0A7E605ED /* Pods-DimensionsPickerView_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DimensionsPickerView_Example-umbrella.h"; sourceTree = ""; }; 63 | C4DFFB309B19C2F1664D75D456B94742 /* Pods-DimensionsPickerView_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DimensionsPickerView_Example.debug.xcconfig"; sourceTree = ""; }; 64 | D531B161916C02C45FF4F061F1E3000C /* Pods-DimensionsPickerView_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DimensionsPickerView_Example-acknowledgements.plist"; sourceTree = ""; }; 65 | D5D4484DC0304330555C475BE6172D57 /* Pods_DimensionsPickerView_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DimensionsPickerView_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 66 | D618D83E6C8911683A10794697672012 /* Pods-DimensionsPickerView_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DimensionsPickerView_Example.modulemap"; sourceTree = ""; }; 67 | D95C349C49A4AE537CD000DD0E877DAE /* DimensionsPickerView-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DimensionsPickerView-Info.plist"; sourceTree = ""; }; 68 | E3D8BCDC7065F2BB51A14EA352E34BC8 /* DimensionsPickerView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = DimensionsPickerView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 69 | E40F3D1A2374116E00E38EC3 /* DimensionsPickerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = DimensionsPickerView.swift; path = DimensionsPickerView/Classes/DimensionsPickerView.swift; sourceTree = ""; }; 70 | F5D258D613B06B450A0EF9AC38467F18 /* Pods-DimensionsPickerView_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DimensionsPickerView_Tests-dummy.m"; sourceTree = ""; }; 71 | FE82F6B84D0F0FAA2E26044B181BE19D /* Pods-DimensionsPickerView_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DimensionsPickerView_Example-Info.plist"; sourceTree = ""; }; 72 | /* End PBXFileReference section */ 73 | 74 | /* Begin PBXFrameworksBuildPhase section */ 75 | AB297F61AB0C98211E56FEBC28D79F8D /* Frameworks */ = { 76 | isa = PBXFrameworksBuildPhase; 77 | buildActionMask = 2147483647; 78 | files = ( 79 | 1A3940373AEEF7C345929AA94822C33B /* Foundation.framework in Frameworks */, 80 | ); 81 | runOnlyForDeploymentPostprocessing = 0; 82 | }; 83 | ABC9CFCE7D6C0A50DD5555BBA4C44A19 /* Frameworks */ = { 84 | isa = PBXFrameworksBuildPhase; 85 | buildActionMask = 2147483647; 86 | files = ( 87 | 674BA195D7BC5F4AFC00AE63A5A661EA /* Foundation.framework in Frameworks */, 88 | ); 89 | runOnlyForDeploymentPostprocessing = 0; 90 | }; 91 | DD588A5270BA7A9AD1915487FA9F06D3 /* Frameworks */ = { 92 | isa = PBXFrameworksBuildPhase; 93 | buildActionMask = 2147483647; 94 | files = ( 95 | 457331B5CC2CCE0676CF4EC067EE87B9 /* Foundation.framework in Frameworks */, 96 | ); 97 | runOnlyForDeploymentPostprocessing = 0; 98 | }; 99 | /* End PBXFrameworksBuildPhase section */ 100 | 101 | /* Begin PBXGroup section */ 102 | 1ABF464FA0FABEEC1A6BFA7A915F4AB9 /* Pods-DimensionsPickerView_Tests */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 26B9695452A40D8A0E622A2CD8F50512 /* Pods-DimensionsPickerView_Tests.modulemap */, 106 | 321A53B80F047AE93795574C666B4B20 /* Pods-DimensionsPickerView_Tests-acknowledgements.markdown */, 107 | 0E516285F94BD9862B8F5CC8B5D5073D /* Pods-DimensionsPickerView_Tests-acknowledgements.plist */, 108 | F5D258D613B06B450A0EF9AC38467F18 /* Pods-DimensionsPickerView_Tests-dummy.m */, 109 | 5DAA621E092711E5DA8DD52C9C53C26F /* Pods-DimensionsPickerView_Tests-Info.plist */, 110 | 67EDAA4394DCDBC30783AA800DEA725C /* Pods-DimensionsPickerView_Tests-umbrella.h */, 111 | 3EC08BF29438BF3520CFDAF3CE73BBA4 /* Pods-DimensionsPickerView_Tests.debug.xcconfig */, 112 | 5BDC8497BDA3DB333387F48FB5CFF264 /* Pods-DimensionsPickerView_Tests.release.xcconfig */, 113 | ); 114 | name = "Pods-DimensionsPickerView_Tests"; 115 | path = "Target Support Files/Pods-DimensionsPickerView_Tests"; 116 | sourceTree = ""; 117 | }; 118 | 23874798560936D4EE5688F70669D963 /* Pod */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | E3D8BCDC7065F2BB51A14EA352E34BC8 /* DimensionsPickerView.podspec */, 122 | 473582B3F4AD345DC866DBFD1F7D5FB5 /* LICENSE */, 123 | 733315D19B55E688372D57CDD9982A35 /* README.md */, 124 | ); 125 | name = Pod; 126 | sourceTree = ""; 127 | }; 128 | 25F59A4E70DF39E57CE3424625B23905 /* Products */ = { 129 | isa = PBXGroup; 130 | children = ( 131 | 5D4A696FFFC2099CD521E4BAA6F950A3 /* DimensionsPickerView.framework */, 132 | D5D4484DC0304330555C475BE6172D57 /* Pods_DimensionsPickerView_Example.framework */, 133 | 3A6EBDDBE7CD5154D05FCF6708928095 /* Pods_DimensionsPickerView_Tests.framework */, 134 | ); 135 | name = Products; 136 | sourceTree = ""; 137 | }; 138 | 571005217B13894D65A5B4AC3D86BDBF /* Support Files */ = { 139 | isa = PBXGroup; 140 | children = ( 141 | 6663B86440FA5802F00E0EE1CB17096A /* DimensionsPickerView.modulemap */, 142 | 59A4ABD121B8B7E37B6AD539EEA488DA /* DimensionsPickerView.xcconfig */, 143 | 2EC7D4095759D6F4D0BC246473AC6A07 /* DimensionsPickerView-dummy.m */, 144 | D95C349C49A4AE537CD000DD0E877DAE /* DimensionsPickerView-Info.plist */, 145 | 0FFA089A27FB25879AE675190F4547A6 /* DimensionsPickerView-prefix.pch */, 146 | 262C681D8F5F1BAE6FC46A0E7DC4742C /* DimensionsPickerView-umbrella.h */, 147 | ); 148 | name = "Support Files"; 149 | path = "Example/Pods/Target Support Files/DimensionsPickerView"; 150 | sourceTree = ""; 151 | }; 152 | 9431E05634804A7ADA9830C17D89909E /* Development Pods */ = { 153 | isa = PBXGroup; 154 | children = ( 155 | F130282705D3D0609DE82EE745062786 /* DimensionsPickerView */, 156 | ); 157 | name = "Development Pods"; 158 | sourceTree = ""; 159 | }; 160 | 9F3C3E252D110EB24FA396657E0B400B /* Pods-DimensionsPickerView_Example */ = { 161 | isa = PBXGroup; 162 | children = ( 163 | D618D83E6C8911683A10794697672012 /* Pods-DimensionsPickerView_Example.modulemap */, 164 | A502B78C1038F09C4CB9C6411D8021FB /* Pods-DimensionsPickerView_Example-acknowledgements.markdown */, 165 | D531B161916C02C45FF4F061F1E3000C /* Pods-DimensionsPickerView_Example-acknowledgements.plist */, 166 | A28BFEAFFF411C404ECB703E77340EC5 /* Pods-DimensionsPickerView_Example-dummy.m */, 167 | BACF79D77C8C5BF5A44DD66B538FD35C /* Pods-DimensionsPickerView_Example-frameworks.sh */, 168 | FE82F6B84D0F0FAA2E26044B181BE19D /* Pods-DimensionsPickerView_Example-Info.plist */, 169 | C38B5FCC8A4905556975BCB0A7E605ED /* Pods-DimensionsPickerView_Example-umbrella.h */, 170 | C4DFFB309B19C2F1664D75D456B94742 /* Pods-DimensionsPickerView_Example.debug.xcconfig */, 171 | 362BDF61B163B393367CD7492231B337 /* Pods-DimensionsPickerView_Example.release.xcconfig */, 172 | ); 173 | name = "Pods-DimensionsPickerView_Example"; 174 | path = "Target Support Files/Pods-DimensionsPickerView_Example"; 175 | sourceTree = ""; 176 | }; 177 | C0834CEBB1379A84116EF29F93051C60 /* iOS */ = { 178 | isa = PBXGroup; 179 | children = ( 180 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */, 181 | ); 182 | name = iOS; 183 | sourceTree = ""; 184 | }; 185 | CF1408CF629C7361332E53B88F7BD30C = { 186 | isa = PBXGroup; 187 | children = ( 188 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 189 | 9431E05634804A7ADA9830C17D89909E /* Development Pods */, 190 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 191 | 25F59A4E70DF39E57CE3424625B23905 /* Products */, 192 | E4EAFBCD2A22595CA264A9DCBFDCB42D /* Targets Support Files */, 193 | ); 194 | sourceTree = ""; 195 | }; 196 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { 197 | isa = PBXGroup; 198 | children = ( 199 | C0834CEBB1379A84116EF29F93051C60 /* iOS */, 200 | ); 201 | name = Frameworks; 202 | sourceTree = ""; 203 | }; 204 | E4EAFBCD2A22595CA264A9DCBFDCB42D /* Targets Support Files */ = { 205 | isa = PBXGroup; 206 | children = ( 207 | 9F3C3E252D110EB24FA396657E0B400B /* Pods-DimensionsPickerView_Example */, 208 | 1ABF464FA0FABEEC1A6BFA7A915F4AB9 /* Pods-DimensionsPickerView_Tests */, 209 | ); 210 | name = "Targets Support Files"; 211 | sourceTree = ""; 212 | }; 213 | F130282705D3D0609DE82EE745062786 /* DimensionsPickerView */ = { 214 | isa = PBXGroup; 215 | children = ( 216 | E40F3D1A2374116E00E38EC3 /* DimensionsPickerView.swift */, 217 | 23874798560936D4EE5688F70669D963 /* Pod */, 218 | 571005217B13894D65A5B4AC3D86BDBF /* Support Files */, 219 | ); 220 | name = DimensionsPickerView; 221 | path = ../..; 222 | sourceTree = ""; 223 | }; 224 | /* End PBXGroup section */ 225 | 226 | /* Begin PBXHeadersBuildPhase section */ 227 | 2313DB2391F4D154EB111D1B53676D4B /* Headers */ = { 228 | isa = PBXHeadersBuildPhase; 229 | buildActionMask = 2147483647; 230 | files = ( 231 | 64C381C90233959F8255FD2FBD3D500D /* Pods-DimensionsPickerView_Example-umbrella.h in Headers */, 232 | ); 233 | runOnlyForDeploymentPostprocessing = 0; 234 | }; 235 | 85B13E64B3DA89832A11D7C63E1BC3BB /* Headers */ = { 236 | isa = PBXHeadersBuildPhase; 237 | buildActionMask = 2147483647; 238 | files = ( 239 | 341C9EE2327538EEA719409F98917D41 /* DimensionsPickerView-umbrella.h in Headers */, 240 | ); 241 | runOnlyForDeploymentPostprocessing = 0; 242 | }; 243 | F595A576571DB31AEDEFB95E4A879D9E /* Headers */ = { 244 | isa = PBXHeadersBuildPhase; 245 | buildActionMask = 2147483647; 246 | files = ( 247 | 8D6AA6C06419B4DDDCA6C2747FCC756E /* Pods-DimensionsPickerView_Tests-umbrella.h in Headers */, 248 | ); 249 | runOnlyForDeploymentPostprocessing = 0; 250 | }; 251 | /* End PBXHeadersBuildPhase section */ 252 | 253 | /* Begin PBXNativeTarget section */ 254 | 15BE4E41423CD02786EF3A66F4B3ACE1 /* DimensionsPickerView */ = { 255 | isa = PBXNativeTarget; 256 | buildConfigurationList = A99BFC3117A8135D2AE05E2AF986278D /* Build configuration list for PBXNativeTarget "DimensionsPickerView" */; 257 | buildPhases = ( 258 | 85B13E64B3DA89832A11D7C63E1BC3BB /* Headers */, 259 | 138C9AA33A1487A0D60F636BE62F7CB9 /* Sources */, 260 | ABC9CFCE7D6C0A50DD5555BBA4C44A19 /* Frameworks */, 261 | 7D4800955824CC7DC4689CA1A468D470 /* Resources */, 262 | ); 263 | buildRules = ( 264 | ); 265 | dependencies = ( 266 | ); 267 | name = DimensionsPickerView; 268 | productName = DimensionsPickerView; 269 | productReference = 5D4A696FFFC2099CD521E4BAA6F950A3 /* DimensionsPickerView.framework */; 270 | productType = "com.apple.product-type.framework"; 271 | }; 272 | 84884B2350016C35E8C79EE0B9C0E836 /* Pods-DimensionsPickerView_Tests */ = { 273 | isa = PBXNativeTarget; 274 | buildConfigurationList = D5649BDB395794C4A44D17211B1C9BA9 /* Build configuration list for PBXNativeTarget "Pods-DimensionsPickerView_Tests" */; 275 | buildPhases = ( 276 | F595A576571DB31AEDEFB95E4A879D9E /* Headers */, 277 | D9CD9E917780764CA4E3D540A7394C9A /* Sources */, 278 | AB297F61AB0C98211E56FEBC28D79F8D /* Frameworks */, 279 | 177C61389B43D1D6A9332030E453E456 /* Resources */, 280 | ); 281 | buildRules = ( 282 | ); 283 | dependencies = ( 284 | 6BA6D5D5F1879A4561158B5D96EC5DDC /* PBXTargetDependency */, 285 | ); 286 | name = "Pods-DimensionsPickerView_Tests"; 287 | productName = "Pods-DimensionsPickerView_Tests"; 288 | productReference = 3A6EBDDBE7CD5154D05FCF6708928095 /* Pods_DimensionsPickerView_Tests.framework */; 289 | productType = "com.apple.product-type.framework"; 290 | }; 291 | 8804CB04A53BDBF840BDB398F4D36675 /* Pods-DimensionsPickerView_Example */ = { 292 | isa = PBXNativeTarget; 293 | buildConfigurationList = 365E35D463E21C77AB632B0D8A01DD0D /* Build configuration list for PBXNativeTarget "Pods-DimensionsPickerView_Example" */; 294 | buildPhases = ( 295 | 2313DB2391F4D154EB111D1B53676D4B /* Headers */, 296 | 5FC7623106E64FC3566D45B367AA196B /* Sources */, 297 | DD588A5270BA7A9AD1915487FA9F06D3 /* Frameworks */, 298 | 873C52179DA3543FE4144CEE99D6B1A2 /* Resources */, 299 | ); 300 | buildRules = ( 301 | ); 302 | dependencies = ( 303 | D9E63A76DF471C8A2DD1F5C0AEE340D3 /* PBXTargetDependency */, 304 | ); 305 | name = "Pods-DimensionsPickerView_Example"; 306 | productName = "Pods-DimensionsPickerView_Example"; 307 | productReference = D5D4484DC0304330555C475BE6172D57 /* Pods_DimensionsPickerView_Example.framework */; 308 | productType = "com.apple.product-type.framework"; 309 | }; 310 | /* End PBXNativeTarget section */ 311 | 312 | /* Begin PBXProject section */ 313 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 314 | isa = PBXProject; 315 | attributes = { 316 | LastSwiftUpdateCheck = 1100; 317 | LastUpgradeCheck = 1100; 318 | }; 319 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 320 | compatibilityVersion = "Xcode 3.2"; 321 | developmentRegion = en; 322 | hasScannedForEncodings = 0; 323 | knownRegions = ( 324 | en, 325 | ); 326 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 327 | productRefGroup = 25F59A4E70DF39E57CE3424625B23905 /* Products */; 328 | projectDirPath = ""; 329 | projectRoot = ""; 330 | targets = ( 331 | 15BE4E41423CD02786EF3A66F4B3ACE1 /* DimensionsPickerView */, 332 | 8804CB04A53BDBF840BDB398F4D36675 /* Pods-DimensionsPickerView_Example */, 333 | 84884B2350016C35E8C79EE0B9C0E836 /* Pods-DimensionsPickerView_Tests */, 334 | ); 335 | }; 336 | /* End PBXProject section */ 337 | 338 | /* Begin PBXResourcesBuildPhase section */ 339 | 177C61389B43D1D6A9332030E453E456 /* Resources */ = { 340 | isa = PBXResourcesBuildPhase; 341 | buildActionMask = 2147483647; 342 | files = ( 343 | ); 344 | runOnlyForDeploymentPostprocessing = 0; 345 | }; 346 | 7D4800955824CC7DC4689CA1A468D470 /* Resources */ = { 347 | isa = PBXResourcesBuildPhase; 348 | buildActionMask = 2147483647; 349 | files = ( 350 | ); 351 | runOnlyForDeploymentPostprocessing = 0; 352 | }; 353 | 873C52179DA3543FE4144CEE99D6B1A2 /* Resources */ = { 354 | isa = PBXResourcesBuildPhase; 355 | buildActionMask = 2147483647; 356 | files = ( 357 | ); 358 | runOnlyForDeploymentPostprocessing = 0; 359 | }; 360 | /* End PBXResourcesBuildPhase section */ 361 | 362 | /* Begin PBXSourcesBuildPhase section */ 363 | 138C9AA33A1487A0D60F636BE62F7CB9 /* Sources */ = { 364 | isa = PBXSourcesBuildPhase; 365 | buildActionMask = 2147483647; 366 | files = ( 367 | BD48318DD39D798D35B82C2564C00FF9 /* DimensionsPickerView-dummy.m in Sources */, 368 | E40F3D1B2374116E00E38EC3 /* DimensionsPickerView.swift in Sources */, 369 | ); 370 | runOnlyForDeploymentPostprocessing = 0; 371 | }; 372 | 5FC7623106E64FC3566D45B367AA196B /* Sources */ = { 373 | isa = PBXSourcesBuildPhase; 374 | buildActionMask = 2147483647; 375 | files = ( 376 | 9ABA999A45897F12F44DA1734E2355F6 /* Pods-DimensionsPickerView_Example-dummy.m in Sources */, 377 | ); 378 | runOnlyForDeploymentPostprocessing = 0; 379 | }; 380 | D9CD9E917780764CA4E3D540A7394C9A /* Sources */ = { 381 | isa = PBXSourcesBuildPhase; 382 | buildActionMask = 2147483647; 383 | files = ( 384 | 609142543F4B783ECC2BC2A8E0CBB3AC /* Pods-DimensionsPickerView_Tests-dummy.m in Sources */, 385 | ); 386 | runOnlyForDeploymentPostprocessing = 0; 387 | }; 388 | /* End PBXSourcesBuildPhase section */ 389 | 390 | /* Begin PBXTargetDependency section */ 391 | 6BA6D5D5F1879A4561158B5D96EC5DDC /* PBXTargetDependency */ = { 392 | isa = PBXTargetDependency; 393 | name = "Pods-DimensionsPickerView_Example"; 394 | target = 8804CB04A53BDBF840BDB398F4D36675 /* Pods-DimensionsPickerView_Example */; 395 | targetProxy = EA1F9B08F909D6945BF67EF74C182E95 /* PBXContainerItemProxy */; 396 | }; 397 | D9E63A76DF471C8A2DD1F5C0AEE340D3 /* PBXTargetDependency */ = { 398 | isa = PBXTargetDependency; 399 | name = DimensionsPickerView; 400 | target = 15BE4E41423CD02786EF3A66F4B3ACE1 /* DimensionsPickerView */; 401 | targetProxy = CE12310B0EE044E2A72C96513F1C8076 /* PBXContainerItemProxy */; 402 | }; 403 | /* End PBXTargetDependency section */ 404 | 405 | /* Begin XCBuildConfiguration section */ 406 | 39464003B8EAE39F8C10EAB147DE826B /* Release */ = { 407 | isa = XCBuildConfiguration; 408 | baseConfigurationReference = 5BDC8497BDA3DB333387F48FB5CFF264 /* Pods-DimensionsPickerView_Tests.release.xcconfig */; 409 | buildSettings = { 410 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 411 | CODE_SIGN_IDENTITY = ""; 412 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 413 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 414 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 415 | CURRENT_PROJECT_VERSION = 1; 416 | DEFINES_MODULE = YES; 417 | DYLIB_COMPATIBILITY_VERSION = 1; 418 | DYLIB_CURRENT_VERSION = 1; 419 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 420 | INFOPLIST_FILE = "Target Support Files/Pods-DimensionsPickerView_Tests/Pods-DimensionsPickerView_Tests-Info.plist"; 421 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 422 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 423 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 424 | MACH_O_TYPE = staticlib; 425 | MODULEMAP_FILE = "Target Support Files/Pods-DimensionsPickerView_Tests/Pods-DimensionsPickerView_Tests.modulemap"; 426 | OTHER_LDFLAGS = ""; 427 | OTHER_LIBTOOLFLAGS = ""; 428 | PODS_ROOT = "$(SRCROOT)"; 429 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 430 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 431 | SDKROOT = iphoneos; 432 | SKIP_INSTALL = YES; 433 | TARGETED_DEVICE_FAMILY = "1,2"; 434 | VALIDATE_PRODUCT = YES; 435 | VERSIONING_SYSTEM = "apple-generic"; 436 | VERSION_INFO_PREFIX = ""; 437 | }; 438 | name = Release; 439 | }; 440 | 43B4D78E76986B63CEF90EA2D6CC90BE /* Debug */ = { 441 | isa = XCBuildConfiguration; 442 | baseConfigurationReference = 59A4ABD121B8B7E37B6AD539EEA488DA /* DimensionsPickerView.xcconfig */; 443 | buildSettings = { 444 | CODE_SIGN_IDENTITY = ""; 445 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 446 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 447 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 448 | CURRENT_PROJECT_VERSION = 1; 449 | DEFINES_MODULE = YES; 450 | DYLIB_COMPATIBILITY_VERSION = 1; 451 | DYLIB_CURRENT_VERSION = 1; 452 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 453 | GCC_PREFIX_HEADER = "Target Support Files/DimensionsPickerView/DimensionsPickerView-prefix.pch"; 454 | INFOPLIST_FILE = "Target Support Files/DimensionsPickerView/DimensionsPickerView-Info.plist"; 455 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 456 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 457 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 458 | MODULEMAP_FILE = "Target Support Files/DimensionsPickerView/DimensionsPickerView.modulemap"; 459 | PRODUCT_MODULE_NAME = DimensionsPickerView; 460 | PRODUCT_NAME = DimensionsPickerView; 461 | SDKROOT = iphoneos; 462 | SKIP_INSTALL = YES; 463 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 464 | SWIFT_VERSION = 5.0; 465 | TARGETED_DEVICE_FAMILY = "1,2"; 466 | VERSIONING_SYSTEM = "apple-generic"; 467 | VERSION_INFO_PREFIX = ""; 468 | }; 469 | name = Debug; 470 | }; 471 | 4F10BE0BCB99B08675920B118D36CAF9 /* Release */ = { 472 | isa = XCBuildConfiguration; 473 | baseConfigurationReference = 362BDF61B163B393367CD7492231B337 /* Pods-DimensionsPickerView_Example.release.xcconfig */; 474 | buildSettings = { 475 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 476 | CODE_SIGN_IDENTITY = ""; 477 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 478 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 479 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 480 | CURRENT_PROJECT_VERSION = 1; 481 | DEFINES_MODULE = YES; 482 | DYLIB_COMPATIBILITY_VERSION = 1; 483 | DYLIB_CURRENT_VERSION = 1; 484 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 485 | INFOPLIST_FILE = "Target Support Files/Pods-DimensionsPickerView_Example/Pods-DimensionsPickerView_Example-Info.plist"; 486 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 487 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 488 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 489 | MACH_O_TYPE = staticlib; 490 | MODULEMAP_FILE = "Target Support Files/Pods-DimensionsPickerView_Example/Pods-DimensionsPickerView_Example.modulemap"; 491 | OTHER_LDFLAGS = ""; 492 | OTHER_LIBTOOLFLAGS = ""; 493 | PODS_ROOT = "$(SRCROOT)"; 494 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 495 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 496 | SDKROOT = iphoneos; 497 | SKIP_INSTALL = YES; 498 | TARGETED_DEVICE_FAMILY = "1,2"; 499 | VALIDATE_PRODUCT = YES; 500 | VERSIONING_SYSTEM = "apple-generic"; 501 | VERSION_INFO_PREFIX = ""; 502 | }; 503 | name = Release; 504 | }; 505 | 51263E1A415824A9ACCAA00F5E7A90FB /* Debug */ = { 506 | isa = XCBuildConfiguration; 507 | baseConfigurationReference = 3EC08BF29438BF3520CFDAF3CE73BBA4 /* Pods-DimensionsPickerView_Tests.debug.xcconfig */; 508 | buildSettings = { 509 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 510 | CODE_SIGN_IDENTITY = ""; 511 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 512 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 513 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 514 | CURRENT_PROJECT_VERSION = 1; 515 | DEFINES_MODULE = YES; 516 | DYLIB_COMPATIBILITY_VERSION = 1; 517 | DYLIB_CURRENT_VERSION = 1; 518 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 519 | INFOPLIST_FILE = "Target Support Files/Pods-DimensionsPickerView_Tests/Pods-DimensionsPickerView_Tests-Info.plist"; 520 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 521 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 522 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 523 | MACH_O_TYPE = staticlib; 524 | MODULEMAP_FILE = "Target Support Files/Pods-DimensionsPickerView_Tests/Pods-DimensionsPickerView_Tests.modulemap"; 525 | OTHER_LDFLAGS = ""; 526 | OTHER_LIBTOOLFLAGS = ""; 527 | PODS_ROOT = "$(SRCROOT)"; 528 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 529 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 530 | SDKROOT = iphoneos; 531 | SKIP_INSTALL = YES; 532 | TARGETED_DEVICE_FAMILY = "1,2"; 533 | VERSIONING_SYSTEM = "apple-generic"; 534 | VERSION_INFO_PREFIX = ""; 535 | }; 536 | name = Debug; 537 | }; 538 | 8442B4410C4D7EA4960B2972DCA21FFC /* Debug */ = { 539 | isa = XCBuildConfiguration; 540 | baseConfigurationReference = C4DFFB309B19C2F1664D75D456B94742 /* Pods-DimensionsPickerView_Example.debug.xcconfig */; 541 | buildSettings = { 542 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 543 | CODE_SIGN_IDENTITY = ""; 544 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 545 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 546 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 547 | CURRENT_PROJECT_VERSION = 1; 548 | DEFINES_MODULE = YES; 549 | DYLIB_COMPATIBILITY_VERSION = 1; 550 | DYLIB_CURRENT_VERSION = 1; 551 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 552 | INFOPLIST_FILE = "Target Support Files/Pods-DimensionsPickerView_Example/Pods-DimensionsPickerView_Example-Info.plist"; 553 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 554 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 555 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 556 | MACH_O_TYPE = staticlib; 557 | MODULEMAP_FILE = "Target Support Files/Pods-DimensionsPickerView_Example/Pods-DimensionsPickerView_Example.modulemap"; 558 | OTHER_LDFLAGS = ""; 559 | OTHER_LIBTOOLFLAGS = ""; 560 | PODS_ROOT = "$(SRCROOT)"; 561 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 562 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 563 | SDKROOT = iphoneos; 564 | SKIP_INSTALL = YES; 565 | TARGETED_DEVICE_FAMILY = "1,2"; 566 | VERSIONING_SYSTEM = "apple-generic"; 567 | VERSION_INFO_PREFIX = ""; 568 | }; 569 | name = Debug; 570 | }; 571 | B0087CB4594321EF41619F3181FE120E /* Release */ = { 572 | isa = XCBuildConfiguration; 573 | buildSettings = { 574 | ALWAYS_SEARCH_USER_PATHS = NO; 575 | CLANG_ANALYZER_NONNULL = YES; 576 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 577 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 578 | CLANG_CXX_LIBRARY = "libc++"; 579 | CLANG_ENABLE_MODULES = YES; 580 | CLANG_ENABLE_OBJC_ARC = YES; 581 | CLANG_ENABLE_OBJC_WEAK = YES; 582 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 583 | CLANG_WARN_BOOL_CONVERSION = YES; 584 | CLANG_WARN_COMMA = YES; 585 | CLANG_WARN_CONSTANT_CONVERSION = YES; 586 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 587 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 588 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 589 | CLANG_WARN_EMPTY_BODY = YES; 590 | CLANG_WARN_ENUM_CONVERSION = YES; 591 | CLANG_WARN_INFINITE_RECURSION = YES; 592 | CLANG_WARN_INT_CONVERSION = YES; 593 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 594 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 595 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 596 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 597 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 598 | CLANG_WARN_STRICT_PROTOTYPES = YES; 599 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 600 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 601 | CLANG_WARN_UNREACHABLE_CODE = YES; 602 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 603 | COPY_PHASE_STRIP = NO; 604 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 605 | ENABLE_NS_ASSERTIONS = NO; 606 | ENABLE_STRICT_OBJC_MSGSEND = YES; 607 | GCC_C_LANGUAGE_STANDARD = gnu11; 608 | GCC_NO_COMMON_BLOCKS = YES; 609 | GCC_PREPROCESSOR_DEFINITIONS = ( 610 | "POD_CONFIGURATION_RELEASE=1", 611 | "$(inherited)", 612 | ); 613 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 614 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 615 | GCC_WARN_UNDECLARED_SELECTOR = YES; 616 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 617 | GCC_WARN_UNUSED_FUNCTION = YES; 618 | GCC_WARN_UNUSED_VARIABLE = YES; 619 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 620 | MTL_ENABLE_DEBUG_INFO = NO; 621 | MTL_FAST_MATH = YES; 622 | PRODUCT_NAME = "$(TARGET_NAME)"; 623 | STRIP_INSTALLED_PRODUCT = NO; 624 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 625 | SWIFT_VERSION = 5.0; 626 | SYMROOT = "${SRCROOT}/../build"; 627 | }; 628 | name = Release; 629 | }; 630 | B2CF406BBA4588493B973A5A6533C77A /* Release */ = { 631 | isa = XCBuildConfiguration; 632 | baseConfigurationReference = 59A4ABD121B8B7E37B6AD539EEA488DA /* DimensionsPickerView.xcconfig */; 633 | buildSettings = { 634 | CODE_SIGN_IDENTITY = ""; 635 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 636 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 637 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 638 | CURRENT_PROJECT_VERSION = 1; 639 | DEFINES_MODULE = YES; 640 | DYLIB_COMPATIBILITY_VERSION = 1; 641 | DYLIB_CURRENT_VERSION = 1; 642 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 643 | GCC_PREFIX_HEADER = "Target Support Files/DimensionsPickerView/DimensionsPickerView-prefix.pch"; 644 | INFOPLIST_FILE = "Target Support Files/DimensionsPickerView/DimensionsPickerView-Info.plist"; 645 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 646 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 647 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 648 | MODULEMAP_FILE = "Target Support Files/DimensionsPickerView/DimensionsPickerView.modulemap"; 649 | PRODUCT_MODULE_NAME = DimensionsPickerView; 650 | PRODUCT_NAME = DimensionsPickerView; 651 | SDKROOT = iphoneos; 652 | SKIP_INSTALL = YES; 653 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 654 | SWIFT_VERSION = 5.0; 655 | TARGETED_DEVICE_FAMILY = "1,2"; 656 | VALIDATE_PRODUCT = YES; 657 | VERSIONING_SYSTEM = "apple-generic"; 658 | VERSION_INFO_PREFIX = ""; 659 | }; 660 | name = Release; 661 | }; 662 | B8BCBD0110C2658BB5DAADB9B7D97B92 /* Debug */ = { 663 | isa = XCBuildConfiguration; 664 | buildSettings = { 665 | ALWAYS_SEARCH_USER_PATHS = NO; 666 | CLANG_ANALYZER_NONNULL = YES; 667 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 668 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 669 | CLANG_CXX_LIBRARY = "libc++"; 670 | CLANG_ENABLE_MODULES = YES; 671 | CLANG_ENABLE_OBJC_ARC = YES; 672 | CLANG_ENABLE_OBJC_WEAK = YES; 673 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 674 | CLANG_WARN_BOOL_CONVERSION = YES; 675 | CLANG_WARN_COMMA = YES; 676 | CLANG_WARN_CONSTANT_CONVERSION = YES; 677 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 678 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 679 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 680 | CLANG_WARN_EMPTY_BODY = YES; 681 | CLANG_WARN_ENUM_CONVERSION = YES; 682 | CLANG_WARN_INFINITE_RECURSION = YES; 683 | CLANG_WARN_INT_CONVERSION = YES; 684 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 685 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 686 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 687 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 688 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 689 | CLANG_WARN_STRICT_PROTOTYPES = YES; 690 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 691 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 692 | CLANG_WARN_UNREACHABLE_CODE = YES; 693 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 694 | COPY_PHASE_STRIP = NO; 695 | DEBUG_INFORMATION_FORMAT = dwarf; 696 | ENABLE_STRICT_OBJC_MSGSEND = YES; 697 | ENABLE_TESTABILITY = YES; 698 | GCC_C_LANGUAGE_STANDARD = gnu11; 699 | GCC_DYNAMIC_NO_PIC = NO; 700 | GCC_NO_COMMON_BLOCKS = YES; 701 | GCC_OPTIMIZATION_LEVEL = 0; 702 | GCC_PREPROCESSOR_DEFINITIONS = ( 703 | "POD_CONFIGURATION_DEBUG=1", 704 | "DEBUG=1", 705 | "$(inherited)", 706 | ); 707 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 708 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 709 | GCC_WARN_UNDECLARED_SELECTOR = YES; 710 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 711 | GCC_WARN_UNUSED_FUNCTION = YES; 712 | GCC_WARN_UNUSED_VARIABLE = YES; 713 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 714 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 715 | MTL_FAST_MATH = YES; 716 | ONLY_ACTIVE_ARCH = YES; 717 | PRODUCT_NAME = "$(TARGET_NAME)"; 718 | STRIP_INSTALLED_PRODUCT = NO; 719 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 720 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 721 | SWIFT_VERSION = 5.0; 722 | SYMROOT = "${SRCROOT}/../build"; 723 | }; 724 | name = Debug; 725 | }; 726 | /* End XCBuildConfiguration section */ 727 | 728 | /* Begin XCConfigurationList section */ 729 | 365E35D463E21C77AB632B0D8A01DD0D /* Build configuration list for PBXNativeTarget "Pods-DimensionsPickerView_Example" */ = { 730 | isa = XCConfigurationList; 731 | buildConfigurations = ( 732 | 8442B4410C4D7EA4960B2972DCA21FFC /* Debug */, 733 | 4F10BE0BCB99B08675920B118D36CAF9 /* Release */, 734 | ); 735 | defaultConfigurationIsVisible = 0; 736 | defaultConfigurationName = Release; 737 | }; 738 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 739 | isa = XCConfigurationList; 740 | buildConfigurations = ( 741 | B8BCBD0110C2658BB5DAADB9B7D97B92 /* Debug */, 742 | B0087CB4594321EF41619F3181FE120E /* Release */, 743 | ); 744 | defaultConfigurationIsVisible = 0; 745 | defaultConfigurationName = Release; 746 | }; 747 | A99BFC3117A8135D2AE05E2AF986278D /* Build configuration list for PBXNativeTarget "DimensionsPickerView" */ = { 748 | isa = XCConfigurationList; 749 | buildConfigurations = ( 750 | 43B4D78E76986B63CEF90EA2D6CC90BE /* Debug */, 751 | B2CF406BBA4588493B973A5A6533C77A /* Release */, 752 | ); 753 | defaultConfigurationIsVisible = 0; 754 | defaultConfigurationName = Release; 755 | }; 756 | D5649BDB395794C4A44D17211B1C9BA9 /* Build configuration list for PBXNativeTarget "Pods-DimensionsPickerView_Tests" */ = { 757 | isa = XCConfigurationList; 758 | buildConfigurations = ( 759 | 51263E1A415824A9ACCAA00F5E7A90FB /* Debug */, 760 | 39464003B8EAE39F8C10EAB147DE826B /* Release */, 761 | ); 762 | defaultConfigurationIsVisible = 0; 763 | defaultConfigurationName = Release; 764 | }; 765 | /* End XCConfigurationList section */ 766 | }; 767 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 768 | } 769 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DimensionsPickerView/DimensionsPickerView-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DimensionsPickerView/DimensionsPickerView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_DimensionsPickerView : NSObject 3 | @end 4 | @implementation PodsDummy_DimensionsPickerView 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DimensionsPickerView/DimensionsPickerView-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DimensionsPickerView/DimensionsPickerView-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double DimensionsPickerViewVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char DimensionsPickerViewVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DimensionsPickerView/DimensionsPickerView.modulemap: -------------------------------------------------------------------------------- 1 | framework module DimensionsPickerView { 2 | umbrella header "DimensionsPickerView-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/DimensionsPickerView/DimensionsPickerView.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/DimensionsPickerView 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Example/Pods-DimensionsPickerView_Example-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Example/Pods-DimensionsPickerView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## DimensionsPickerView 5 | 6 | Copyright (c) 2019 hussc 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Example/Pods-DimensionsPickerView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2019 hussc <hus.sc@aol.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | DimensionsPickerView 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Example/Pods-DimensionsPickerView_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_DimensionsPickerView_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_DimensionsPickerView_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Example/Pods-DimensionsPickerView_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | function on_error { 7 | echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" 8 | } 9 | trap 'on_error $LINENO' ERR 10 | 11 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 12 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 13 | # frameworks to, so exit 0 (signalling the script phase was successful). 14 | exit 0 15 | fi 16 | 17 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 18 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 19 | 20 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 21 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 22 | 23 | # Used as a return value for each invocation of `strip_invalid_archs` function. 24 | STRIP_BINARY_RETVAL=0 25 | 26 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 27 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 28 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 29 | 30 | # Copies and strips a vendored framework 31 | install_framework() 32 | { 33 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 34 | local source="${BUILT_PRODUCTS_DIR}/$1" 35 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 36 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 37 | elif [ -r "$1" ]; then 38 | local source="$1" 39 | fi 40 | 41 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 42 | 43 | if [ -L "${source}" ]; then 44 | echo "Symlinked..." 45 | source="$(readlink "${source}")" 46 | fi 47 | 48 | # Use filter instead of exclude so missing patterns don't throw errors. 49 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 50 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 51 | 52 | local basename 53 | basename="$(basename -s .framework "$1")" 54 | binary="${destination}/${basename}.framework/${basename}" 55 | 56 | if ! [ -r "$binary" ]; then 57 | binary="${destination}/${basename}" 58 | elif [ -L "${binary}" ]; then 59 | echo "Destination binary is symlinked..." 60 | dirname="$(dirname "${binary}")" 61 | binary="${dirname}/$(readlink "${binary}")" 62 | fi 63 | 64 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 65 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 66 | strip_invalid_archs "$binary" 67 | fi 68 | 69 | # Resign the code if required by the build settings to avoid unstable apps 70 | code_sign_if_enabled "${destination}/$(basename "$1")" 71 | 72 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 73 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 74 | local swift_runtime_libs 75 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) 76 | for lib in $swift_runtime_libs; do 77 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 78 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 79 | code_sign_if_enabled "${destination}/${lib}" 80 | done 81 | fi 82 | } 83 | 84 | # Copies and strips a vendored dSYM 85 | install_dsym() { 86 | local source="$1" 87 | if [ -r "$source" ]; then 88 | # Copy the dSYM into a the targets temp dir. 89 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" 90 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" 91 | 92 | local basename 93 | basename="$(basename -s .framework.dSYM "$source")" 94 | binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" 95 | 96 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 97 | if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then 98 | strip_invalid_archs "$binary" 99 | fi 100 | 101 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 102 | # Move the stripped file into its final destination. 103 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 104 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 105 | else 106 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. 107 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" 108 | fi 109 | fi 110 | } 111 | 112 | # Copies the bcsymbolmap files of a vendored framework 113 | install_bcsymbolmap() { 114 | local bcsymbolmap_path="$1" 115 | local destination="${BUILT_PRODUCTS_DIR}" 116 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"" 117 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" 118 | } 119 | 120 | # Signs a framework with the provided identity 121 | code_sign_if_enabled() { 122 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 123 | # Use the current code_sign_identity 124 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 125 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 126 | 127 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 128 | code_sign_cmd="$code_sign_cmd &" 129 | fi 130 | echo "$code_sign_cmd" 131 | eval "$code_sign_cmd" 132 | fi 133 | } 134 | 135 | # Strip invalid architectures 136 | strip_invalid_archs() { 137 | binary="$1" 138 | # Get architectures for current target binary 139 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 140 | # Intersect them with the architectures we are building for 141 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 142 | # If there are no archs supported by this binary then warn the user 143 | if [[ -z "$intersected_archs" ]]; then 144 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 145 | STRIP_BINARY_RETVAL=0 146 | return 147 | fi 148 | stripped="" 149 | for arch in $binary_archs; do 150 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 151 | # Strip non-valid architectures in-place 152 | lipo -remove "$arch" -output "$binary" "$binary" 153 | stripped="$stripped $arch" 154 | fi 155 | done 156 | if [[ "$stripped" ]]; then 157 | echo "Stripped $binary of architectures:$stripped" 158 | fi 159 | STRIP_BINARY_RETVAL=1 160 | } 161 | 162 | 163 | if [[ "$CONFIGURATION" == "Debug" ]]; then 164 | install_framework "${BUILT_PRODUCTS_DIR}/DimensionsPickerView/DimensionsPickerView.framework" 165 | fi 166 | if [[ "$CONFIGURATION" == "Release" ]]; then 167 | install_framework "${BUILT_PRODUCTS_DIR}/DimensionsPickerView/DimensionsPickerView.framework" 168 | fi 169 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 170 | wait 171 | fi 172 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Example/Pods-DimensionsPickerView_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_DimensionsPickerView_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_DimensionsPickerView_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Example/Pods-DimensionsPickerView_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DimensionsPickerView" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DimensionsPickerView/DimensionsPickerView.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "DimensionsPickerView" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Example/Pods-DimensionsPickerView_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_DimensionsPickerView_Example { 2 | umbrella header "Pods-DimensionsPickerView_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Example/Pods-DimensionsPickerView_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DimensionsPickerView" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DimensionsPickerView/DimensionsPickerView.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "DimensionsPickerView" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Tests/Pods-DimensionsPickerView_Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Tests/Pods-DimensionsPickerView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Tests/Pods-DimensionsPickerView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Tests/Pods-DimensionsPickerView_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_DimensionsPickerView_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_DimensionsPickerView_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Tests/Pods-DimensionsPickerView_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_DimensionsPickerView_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_DimensionsPickerView_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Tests/Pods-DimensionsPickerView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DimensionsPickerView" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DimensionsPickerView/DimensionsPickerView.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "DimensionsPickerView" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Tests/Pods-DimensionsPickerView_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_DimensionsPickerView_Tests { 2 | umbrella header "Pods-DimensionsPickerView_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-DimensionsPickerView_Tests/Pods-DimensionsPickerView_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DimensionsPickerView" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DimensionsPickerView/DimensionsPickerView.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "DimensionsPickerView" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | import DimensionsPickerView 3 | 4 | class Tests: XCTestCase { 5 | 6 | override func setUp() { 7 | super.setUp() 8 | // Put setup code here. This method is called before the invocation of each test method in the class. 9 | } 10 | 11 | override func tearDown() { 12 | // Put teardown code here. This method is called after the invocation of each test method in the class. 13 | super.tearDown() 14 | } 15 | 16 | func testExample() { 17 | // This is an example of a functional test case. 18 | XCTAssert(true, "Pass") 19 | } 20 | 21 | func testPerformanceExample() { 22 | // This is an example of a performance test case. 23 | self.measure() { 24 | // Put the code you want to measure the time of here. 25 | } 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /Header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussc/DimensionsPickerView/bdc9e47cae54c0a5a1c25cd76f541b04fce8d9b8/Header.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 hussc 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DimensionsPickerView 2 | 3 | [![CI Status](https://img.shields.io/travis/hussc/DimensionsPickerView.svg?style=flat)](https://travis-ci.org/hussc/DimensionsPickerView) 4 | [![Version](https://img.shields.io/cocoapods/v/DimensionsPickerView.svg?style=flat)](https://cocoapods.org/pods/DimensionsPickerView) 5 | [![License](https://img.shields.io/cocoapods/l/DimensionsPickerView.svg?style=flat)](https://cocoapods.org/pods/DimensionsPickerView) 6 | [![Platform](https://img.shields.io/cocoapods/p/DimensionsPickerView.svg?style=flat)](https://cocoapods.org/pods/DimensionsPickerView) 7 | 8 | ![dimensions-picker](Header.jpg) 9 | 10 | ## Example 11 | 12 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 13 | 14 | ## Requirements 15 | 16 | ## Installation 17 | 18 | DimensionsPickerView is available through [CocoaPods](https://cocoapods.org). To install 19 | it, simply add the following line to your Podfile: 20 | 21 | ```ruby 22 | pod 'DimensionsPickerView' 23 | ``` 24 | 25 | ## Author 26 | 27 | hussc, hus.sc@aol.com 28 | 29 | ## License 30 | 31 | DimensionsPickerView is available under the MIT license. See the LICENSE file for more info. 32 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------