├── .gitignore ├── AnimatedFormFieldTableViewCell.podspec ├── AnimatedFormFieldTableViewCell ├── AnimatedFormFieldTableViewCell.swift ├── AnimatedFormFieldTableViewCell.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AnimatedFormFieldTableViewCell.xib └── AnimatedFormFieldTableViewCell │ ├── AnimatedFormFieldTableViewCell.h │ └── Info.plist ├── Example ├── AnimatedFormFieldTableViewCell.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AnimatedFormFieldTableViewCell.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AnimatedFormFieldTableViewCell │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── FormViewController.swift │ ├── FormViewController.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Main.storyboard │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── AnimatedFormFieldTableViewCell.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── AnimatedFormFieldTableViewCell │ │ ├── AnimatedFormFieldTableViewCell-Info.plist │ │ ├── AnimatedFormFieldTableViewCell-dummy.m │ │ ├── AnimatedFormFieldTableViewCell-prefix.pch │ │ ├── AnimatedFormFieldTableViewCell-umbrella.h │ │ ├── AnimatedFormFieldTableViewCell.modulemap │ │ └── AnimatedFormFieldTableViewCell.xcconfig │ │ └── Pods-AnimatedFormFieldTableViewCell_Example │ │ ├── Pods-AnimatedFormFieldTableViewCell_Example-Info.plist │ │ ├── Pods-AnimatedFormFieldTableViewCell_Example-acknowledgements.markdown │ │ ├── Pods-AnimatedFormFieldTableViewCell_Example-acknowledgements.plist │ │ ├── Pods-AnimatedFormFieldTableViewCell_Example-dummy.m │ │ ├── Pods-AnimatedFormFieldTableViewCell_Example-frameworks.sh │ │ ├── Pods-AnimatedFormFieldTableViewCell_Example-umbrella.h │ │ ├── Pods-AnimatedFormFieldTableViewCell_Example.debug.xcconfig │ │ ├── Pods-AnimatedFormFieldTableViewCell_Example.modulemap │ │ └── Pods-AnimatedFormFieldTableViewCell_Example.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── 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 | -------------------------------------------------------------------------------- /AnimatedFormFieldTableViewCell.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = 'AnimatedFormFieldTableViewCell' 3 | s.version = '1.0.0' 4 | s.summary = 'UITextField Implementation with built in placeholder scaling animation' 5 | s.description = <<-DESC 6 | The AnimatedFormFieldTableViewCell allows you to implement a UITableViewCell with an embedded UITextField that automatically scales the textfield's placeholder upon user interaction. 7 | DESC 8 | s.homepage = 'https://github.com/intuit/AnimatedFormFieldTableViewCell' 9 | s.screenshots = 'https://camo.githubusercontent.com/b149a9177c5c4448dcb15dddd7e54b9063f2aa34/687474703a2f2f692e696d6775722e636f6d2f464d6654434d542e676966' 10 | s.license = { :type => 'MIT', :file => 'LICENSE' } 11 | s.author = { 'Ido Zaltzberg' => 'zaltzy@gmail.com' } 12 | s.source = { :git => 'https://github.com/intuit/AnimatedFormFieldTableViewCell.git', :tag => s.version.to_s } 13 | s.ios.deployment_target = '8.0' 14 | s.source_files = 'AnimatedFormFieldTableViewCell/*' 15 | s.swift_version = '5.0' 16 | end 17 | -------------------------------------------------------------------------------- /AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AnimatedFormFieldTableViewCell.swift 3 | // AnimatedFormFieldTableViewCell 4 | // 5 | // Created by Zaltzberg, Ido on 25/07/2016. 6 | // Copyright © 2016 Intuit. All rights reserved. 7 | // 8 | import UIKit 9 | 10 | public class AnimatedFormFieldTableViewCell: UITableViewCell, UITextFieldDelegate { 11 | public var delegate: UITextFieldDelegate? 12 | @IBOutlet weak private var cellLabel: UILabel! 13 | @IBOutlet weak var cellTextfield: UITextField! 14 | @IBOutlet weak var textFieldDistanceFromTopConstraint: NSLayoutConstraint! 15 | var scaledLabelMode = false 16 | 17 | 18 | 19 | override public func awakeFromNib() { 20 | super.awakeFromNib() 21 | cellTextfield.delegate = self 22 | cellLabel.textColor = UIColor.gray 23 | textFieldDistanceFromTopConstraint.constant = 0 24 | cellTextfield.addTarget(self, action: #selector(textFieldDidChange), for: .editingChanged) 25 | cellLabel.translatesAutoresizingMaskIntoConstraints = true 26 | cellLabel.sizeToFit() 27 | } 28 | 29 | func shrinkLabel(animated: Bool = true) { 30 | guard !scaledLabelMode else { return } 31 | scaledLabelMode = true 32 | 33 | DispatchQueue.main.async { 34 | self.textFieldDistanceFromTopConstraint.constant = 10 35 | 36 | let scaleLabelBlock = { 37 | self.cellLabel.transform = CGAffineTransform(scaleX: 0.6, y: 0.6) 38 | self.cellLabel.frame.origin = CGPoint(x: 15, y: 14) 39 | self.layoutIfNeeded() 40 | } 41 | 42 | animated ? UIView.animate(withDuration: 0.3, 43 | delay: 0, 44 | options: .curveEaseOut, 45 | animations:scaleLabelBlock, 46 | completion: nil) : scaleLabelBlock() 47 | } 48 | } 49 | 50 | func growLabel(){ 51 | guard scaledLabelMode else { return } 52 | scaledLabelMode = false 53 | guard let cellLabel = self.cellLabel else { return } 54 | DispatchQueue.main.async { 55 | self.textFieldDistanceFromTopConstraint.constant = 0 56 | UIView.animate(withDuration: 0.3, 57 | delay: 0, 58 | options: .curveEaseOut, 59 | animations: { 60 | cellLabel.transform = CGAffineTransform(scaleX: 1,y: 1) 61 | cellLabel.frame.origin = CGPoint(x: 15, y: 20) 62 | self.layoutIfNeeded() 63 | },completion: nil) 64 | } 65 | } 66 | 67 | public func setLabelText(text: String?) { 68 | cellLabel.text = text 69 | cellLabel.translatesAutoresizingMaskIntoConstraints = true 70 | cellLabel.sizeToFit() 71 | } 72 | 73 | @objc func textFieldDidChange(textField: UITextField) { 74 | if textField.text == "" { 75 | growLabel() 76 | } else { 77 | shrinkLabel() 78 | } 79 | } 80 | 81 | // MARK: UITextFieldDelegate 82 | 83 | public func textFieldDidBeginEditing(_ textField: UITextField) { 84 | delegate?.textFieldDidBeginEditing?(textField) 85 | } 86 | 87 | public func textFieldDidEndEditing(_ textField: UITextField) { 88 | delegate?.textFieldDidEndEditing?(textField) 89 | } 90 | 91 | public func textFieldShouldReturn(_ textField: UITextField) -> Bool { 92 | return delegate?.textFieldShouldReturn?(textField) ?? false 93 | 94 | } 95 | 96 | public func textField(_ textField: UITextField, 97 | shouldChangeCharactersIn range: NSRange, 98 | replacementString string: String) -> Bool { 99 | return delegate?.textField?(textField, shouldChangeCharactersIn: range, replacementString: string) ?? true 100 | } 101 | 102 | } 103 | -------------------------------------------------------------------------------- /AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00162F48229F3D1300A4D080 /* AnimatedFormFieldTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 00162F46229F3D1300A4D080 /* AnimatedFormFieldTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | 00162F50229F3D4300A4D080 /* AnimatedFormFieldTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00162F4E229F3D4300A4D080 /* AnimatedFormFieldTableViewCell.swift */; }; 12 | 00162F51229F3D4300A4D080 /* AnimatedFormFieldTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 00162F4F229F3D4300A4D080 /* AnimatedFormFieldTableViewCell.xib */; }; 13 | /* End PBXBuildFile section */ 14 | 15 | /* Begin PBXFileReference section */ 16 | 00162F43229F3D1300A4D080 /* AnimatedFormFieldTableViewCell.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AnimatedFormFieldTableViewCell.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 17 | 00162F46229F3D1300A4D080 /* AnimatedFormFieldTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AnimatedFormFieldTableViewCell.h; sourceTree = ""; }; 18 | 00162F47229F3D1300A4D080 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 19 | 00162F4E229F3D4300A4D080 /* AnimatedFormFieldTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnimatedFormFieldTableViewCell.swift; sourceTree = SOURCE_ROOT; }; 20 | 00162F4F229F3D4300A4D080 /* AnimatedFormFieldTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AnimatedFormFieldTableViewCell.xib; sourceTree = SOURCE_ROOT; }; 21 | /* End PBXFileReference section */ 22 | 23 | /* Begin PBXFrameworksBuildPhase section */ 24 | 00162F40229F3D1300A4D080 /* Frameworks */ = { 25 | isa = PBXFrameworksBuildPhase; 26 | buildActionMask = 2147483647; 27 | files = ( 28 | ); 29 | runOnlyForDeploymentPostprocessing = 0; 30 | }; 31 | /* End PBXFrameworksBuildPhase section */ 32 | 33 | /* Begin PBXGroup section */ 34 | 00162F39229F3D1300A4D080 = { 35 | isa = PBXGroup; 36 | children = ( 37 | 00162F45229F3D1300A4D080 /* AnimatedFormFieldTableViewCell */, 38 | 00162F44229F3D1300A4D080 /* Products */, 39 | ); 40 | sourceTree = ""; 41 | }; 42 | 00162F44229F3D1300A4D080 /* Products */ = { 43 | isa = PBXGroup; 44 | children = ( 45 | 00162F43229F3D1300A4D080 /* AnimatedFormFieldTableViewCell.framework */, 46 | ); 47 | name = Products; 48 | sourceTree = ""; 49 | }; 50 | 00162F45229F3D1300A4D080 /* AnimatedFormFieldTableViewCell */ = { 51 | isa = PBXGroup; 52 | children = ( 53 | 00162F4E229F3D4300A4D080 /* AnimatedFormFieldTableViewCell.swift */, 54 | 00162F4F229F3D4300A4D080 /* AnimatedFormFieldTableViewCell.xib */, 55 | 00162F46229F3D1300A4D080 /* AnimatedFormFieldTableViewCell.h */, 56 | 00162F47229F3D1300A4D080 /* Info.plist */, 57 | ); 58 | path = AnimatedFormFieldTableViewCell; 59 | sourceTree = ""; 60 | }; 61 | /* End PBXGroup section */ 62 | 63 | /* Begin PBXHeadersBuildPhase section */ 64 | 00162F3E229F3D1300A4D080 /* Headers */ = { 65 | isa = PBXHeadersBuildPhase; 66 | buildActionMask = 2147483647; 67 | files = ( 68 | 00162F48229F3D1300A4D080 /* AnimatedFormFieldTableViewCell.h in Headers */, 69 | ); 70 | runOnlyForDeploymentPostprocessing = 0; 71 | }; 72 | /* End PBXHeadersBuildPhase section */ 73 | 74 | /* Begin PBXNativeTarget section */ 75 | 00162F42229F3D1300A4D080 /* AnimatedFormFieldTableViewCell */ = { 76 | isa = PBXNativeTarget; 77 | buildConfigurationList = 00162F4B229F3D1300A4D080 /* Build configuration list for PBXNativeTarget "AnimatedFormFieldTableViewCell" */; 78 | buildPhases = ( 79 | 00162F3E229F3D1300A4D080 /* Headers */, 80 | 00162F3F229F3D1300A4D080 /* Sources */, 81 | 00162F40229F3D1300A4D080 /* Frameworks */, 82 | 00162F41229F3D1300A4D080 /* Resources */, 83 | ); 84 | buildRules = ( 85 | ); 86 | dependencies = ( 87 | ); 88 | name = AnimatedFormFieldTableViewCell; 89 | productName = AnimatedFormFieldTableViewCell; 90 | productReference = 00162F43229F3D1300A4D080 /* AnimatedFormFieldTableViewCell.framework */; 91 | productType = "com.apple.product-type.framework"; 92 | }; 93 | /* End PBXNativeTarget section */ 94 | 95 | /* Begin PBXProject section */ 96 | 00162F3A229F3D1300A4D080 /* Project object */ = { 97 | isa = PBXProject; 98 | attributes = { 99 | LastUpgradeCheck = 1020; 100 | ORGANIZATIONNAME = "Ido Zaltzberg"; 101 | TargetAttributes = { 102 | 00162F42229F3D1300A4D080 = { 103 | CreatedOnToolsVersion = 10.2.1; 104 | LastSwiftMigration = 1020; 105 | }; 106 | }; 107 | }; 108 | buildConfigurationList = 00162F3D229F3D1300A4D080 /* Build configuration list for PBXProject "AnimatedFormFieldTableViewCell" */; 109 | compatibilityVersion = "Xcode 9.3"; 110 | developmentRegion = en; 111 | hasScannedForEncodings = 0; 112 | knownRegions = ( 113 | en, 114 | ); 115 | mainGroup = 00162F39229F3D1300A4D080; 116 | productRefGroup = 00162F44229F3D1300A4D080 /* Products */; 117 | projectDirPath = ""; 118 | projectRoot = ""; 119 | targets = ( 120 | 00162F42229F3D1300A4D080 /* AnimatedFormFieldTableViewCell */, 121 | ); 122 | }; 123 | /* End PBXProject section */ 124 | 125 | /* Begin PBXResourcesBuildPhase section */ 126 | 00162F41229F3D1300A4D080 /* Resources */ = { 127 | isa = PBXResourcesBuildPhase; 128 | buildActionMask = 2147483647; 129 | files = ( 130 | 00162F51229F3D4300A4D080 /* AnimatedFormFieldTableViewCell.xib in Resources */, 131 | ); 132 | runOnlyForDeploymentPostprocessing = 0; 133 | }; 134 | /* End PBXResourcesBuildPhase section */ 135 | 136 | /* Begin PBXSourcesBuildPhase section */ 137 | 00162F3F229F3D1300A4D080 /* Sources */ = { 138 | isa = PBXSourcesBuildPhase; 139 | buildActionMask = 2147483647; 140 | files = ( 141 | 00162F50229F3D4300A4D080 /* AnimatedFormFieldTableViewCell.swift in Sources */, 142 | ); 143 | runOnlyForDeploymentPostprocessing = 0; 144 | }; 145 | /* End PBXSourcesBuildPhase section */ 146 | 147 | /* Begin XCBuildConfiguration section */ 148 | 00162F49229F3D1300A4D080 /* Debug */ = { 149 | isa = XCBuildConfiguration; 150 | buildSettings = { 151 | ALWAYS_SEARCH_USER_PATHS = NO; 152 | CLANG_ANALYZER_NONNULL = YES; 153 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 154 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 155 | CLANG_CXX_LIBRARY = "libc++"; 156 | CLANG_ENABLE_MODULES = YES; 157 | CLANG_ENABLE_OBJC_ARC = YES; 158 | CLANG_ENABLE_OBJC_WEAK = YES; 159 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 160 | CLANG_WARN_BOOL_CONVERSION = YES; 161 | CLANG_WARN_COMMA = YES; 162 | CLANG_WARN_CONSTANT_CONVERSION = YES; 163 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 164 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 165 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 166 | CLANG_WARN_EMPTY_BODY = YES; 167 | CLANG_WARN_ENUM_CONVERSION = YES; 168 | CLANG_WARN_INFINITE_RECURSION = YES; 169 | CLANG_WARN_INT_CONVERSION = YES; 170 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 171 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 172 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 173 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 174 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 175 | CLANG_WARN_STRICT_PROTOTYPES = YES; 176 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 177 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 178 | CLANG_WARN_UNREACHABLE_CODE = YES; 179 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 180 | CODE_SIGN_IDENTITY = "iPhone Developer"; 181 | COPY_PHASE_STRIP = NO; 182 | CURRENT_PROJECT_VERSION = 1; 183 | DEBUG_INFORMATION_FORMAT = dwarf; 184 | ENABLE_STRICT_OBJC_MSGSEND = YES; 185 | ENABLE_TESTABILITY = YES; 186 | GCC_C_LANGUAGE_STANDARD = gnu11; 187 | GCC_DYNAMIC_NO_PIC = NO; 188 | GCC_NO_COMMON_BLOCKS = YES; 189 | GCC_OPTIMIZATION_LEVEL = 0; 190 | GCC_PREPROCESSOR_DEFINITIONS = ( 191 | "DEBUG=1", 192 | "$(inherited)", 193 | ); 194 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 195 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 196 | GCC_WARN_UNDECLARED_SELECTOR = YES; 197 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 198 | GCC_WARN_UNUSED_FUNCTION = YES; 199 | GCC_WARN_UNUSED_VARIABLE = YES; 200 | IPHONEOS_DEPLOYMENT_TARGET = 12.2; 201 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 202 | MTL_FAST_MATH = YES; 203 | ONLY_ACTIVE_ARCH = YES; 204 | SDKROOT = iphoneos; 205 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 206 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 207 | VERSIONING_SYSTEM = "apple-generic"; 208 | VERSION_INFO_PREFIX = ""; 209 | }; 210 | name = Debug; 211 | }; 212 | 00162F4A229F3D1300A4D080 /* Release */ = { 213 | isa = XCBuildConfiguration; 214 | buildSettings = { 215 | ALWAYS_SEARCH_USER_PATHS = NO; 216 | CLANG_ANALYZER_NONNULL = YES; 217 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 218 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 219 | CLANG_CXX_LIBRARY = "libc++"; 220 | CLANG_ENABLE_MODULES = YES; 221 | CLANG_ENABLE_OBJC_ARC = YES; 222 | CLANG_ENABLE_OBJC_WEAK = YES; 223 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 224 | CLANG_WARN_BOOL_CONVERSION = YES; 225 | CLANG_WARN_COMMA = YES; 226 | CLANG_WARN_CONSTANT_CONVERSION = YES; 227 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 228 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 229 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 230 | CLANG_WARN_EMPTY_BODY = YES; 231 | CLANG_WARN_ENUM_CONVERSION = YES; 232 | CLANG_WARN_INFINITE_RECURSION = YES; 233 | CLANG_WARN_INT_CONVERSION = YES; 234 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 235 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 236 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 237 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 238 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 239 | CLANG_WARN_STRICT_PROTOTYPES = YES; 240 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 241 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 242 | CLANG_WARN_UNREACHABLE_CODE = YES; 243 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 244 | CODE_SIGN_IDENTITY = "iPhone Developer"; 245 | COPY_PHASE_STRIP = NO; 246 | CURRENT_PROJECT_VERSION = 1; 247 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 248 | ENABLE_NS_ASSERTIONS = NO; 249 | ENABLE_STRICT_OBJC_MSGSEND = YES; 250 | GCC_C_LANGUAGE_STANDARD = gnu11; 251 | GCC_NO_COMMON_BLOCKS = YES; 252 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 253 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 254 | GCC_WARN_UNDECLARED_SELECTOR = YES; 255 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 256 | GCC_WARN_UNUSED_FUNCTION = YES; 257 | GCC_WARN_UNUSED_VARIABLE = YES; 258 | IPHONEOS_DEPLOYMENT_TARGET = 12.2; 259 | MTL_ENABLE_DEBUG_INFO = NO; 260 | MTL_FAST_MATH = YES; 261 | SDKROOT = iphoneos; 262 | SWIFT_COMPILATION_MODE = wholemodule; 263 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 264 | VALIDATE_PRODUCT = YES; 265 | VERSIONING_SYSTEM = "apple-generic"; 266 | VERSION_INFO_PREFIX = ""; 267 | }; 268 | name = Release; 269 | }; 270 | 00162F4C229F3D1300A4D080 /* Debug */ = { 271 | isa = XCBuildConfiguration; 272 | buildSettings = { 273 | CLANG_ENABLE_MODULES = YES; 274 | CODE_SIGN_IDENTITY = ""; 275 | CODE_SIGN_STYLE = Automatic; 276 | DEFINES_MODULE = YES; 277 | DYLIB_COMPATIBILITY_VERSION = 1; 278 | DYLIB_CURRENT_VERSION = 1; 279 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 280 | INFOPLIST_FILE = AnimatedFormFieldTableViewCell/Info.plist; 281 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 282 | LD_RUNPATH_SEARCH_PATHS = ( 283 | "$(inherited)", 284 | "@executable_path/Frameworks", 285 | "@loader_path/Frameworks", 286 | ); 287 | PRODUCT_BUNDLE_IDENTIFIER = com.intuit.AnimatedFormFieldTableViewCell; 288 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 289 | SKIP_INSTALL = YES; 290 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 291 | SWIFT_VERSION = 5.0; 292 | TARGETED_DEVICE_FAMILY = "1,2"; 293 | }; 294 | name = Debug; 295 | }; 296 | 00162F4D229F3D1300A4D080 /* Release */ = { 297 | isa = XCBuildConfiguration; 298 | buildSettings = { 299 | CLANG_ENABLE_MODULES = YES; 300 | CODE_SIGN_IDENTITY = ""; 301 | CODE_SIGN_STYLE = Automatic; 302 | DEFINES_MODULE = YES; 303 | DYLIB_COMPATIBILITY_VERSION = 1; 304 | DYLIB_CURRENT_VERSION = 1; 305 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 306 | INFOPLIST_FILE = AnimatedFormFieldTableViewCell/Info.plist; 307 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 308 | LD_RUNPATH_SEARCH_PATHS = ( 309 | "$(inherited)", 310 | "@executable_path/Frameworks", 311 | "@loader_path/Frameworks", 312 | ); 313 | PRODUCT_BUNDLE_IDENTIFIER = com.intuit.AnimatedFormFieldTableViewCell; 314 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 315 | SKIP_INSTALL = YES; 316 | SWIFT_VERSION = 5.0; 317 | TARGETED_DEVICE_FAMILY = "1,2"; 318 | }; 319 | name = Release; 320 | }; 321 | /* End XCBuildConfiguration section */ 322 | 323 | /* Begin XCConfigurationList section */ 324 | 00162F3D229F3D1300A4D080 /* Build configuration list for PBXProject "AnimatedFormFieldTableViewCell" */ = { 325 | isa = XCConfigurationList; 326 | buildConfigurations = ( 327 | 00162F49229F3D1300A4D080 /* Debug */, 328 | 00162F4A229F3D1300A4D080 /* Release */, 329 | ); 330 | defaultConfigurationIsVisible = 0; 331 | defaultConfigurationName = Release; 332 | }; 333 | 00162F4B229F3D1300A4D080 /* Build configuration list for PBXNativeTarget "AnimatedFormFieldTableViewCell" */ = { 334 | isa = XCConfigurationList; 335 | buildConfigurations = ( 336 | 00162F4C229F3D1300A4D080 /* Debug */, 337 | 00162F4D229F3D1300A4D080 /* Release */, 338 | ); 339 | defaultConfigurationIsVisible = 0; 340 | defaultConfigurationName = Release; 341 | }; 342 | /* End XCConfigurationList section */ 343 | }; 344 | rootObject = 00162F3A229F3D1300A4D080 /* Project object */; 345 | } 346 | -------------------------------------------------------------------------------- /AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // AnimatedFormFieldTableViewCell.h 3 | // AnimatedFormFieldTableViewCell 4 | // 5 | // Created by Ido Zaltzberg on 30/05/2019. 6 | // Copyright © 2019 Ido Zaltzberg. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for AnimatedFormFieldTableViewCell. 12 | FOUNDATION_EXPORT double AnimatedFormFieldTableViewCellVersionNumber; 13 | 14 | //! Project version string for AnimatedFormFieldTableViewCell. 15 | FOUNDATION_EXPORT const unsigned char AnimatedFormFieldTableViewCellVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 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 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | 22 | 23 | -------------------------------------------------------------------------------- /Example/AnimatedFormFieldTableViewCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00BD25A0229F23780007F60A /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 00BD259C229F23780007F60A /* LaunchScreen.storyboard */; }; 11 | 00BD25A1229F23780007F60A /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 00BD259E229F23780007F60A /* Main.storyboard */; }; 12 | 00BD25E3229F27AC0007F60A /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 00BD25E1229F27AC0007F60A /* Assets.xcassets */; }; 13 | 1CE136F71E3E8B4E00EB7A8A /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CE136F61E3E8B4E00EB7A8A /* AppDelegate.swift */; }; 14 | 1CE136F91E3E8B4E00EB7A8A /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CE136F81E3E8B4E00EB7A8A /* ViewController.swift */; }; 15 | 1CE1370A1E3E8BB600EB7A8A /* FormViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CE137081E3E8BB600EB7A8A /* FormViewController.swift */; }; 16 | 1CE1370B1E3E8BB600EB7A8A /* FormViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1CE137091E3E8BB600EB7A8A /* FormViewController.xib */; }; 17 | E740BFD2A27C52D548B10DC8 /* Pods_AnimatedFormFieldTableViewCell_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B3115352EE3570293E89DC17 /* Pods_AnimatedFormFieldTableViewCell_Example.framework */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXFileReference section */ 21 | 00BD259D229F23780007F60A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = LaunchScreen.storyboard; sourceTree = ""; }; 22 | 00BD259F229F23780007F60A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Main.storyboard; sourceTree = ""; }; 23 | 00BD25E2229F27AC0007F60A /* Base */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Base; path = Assets.xcassets; sourceTree = ""; }; 24 | 1CE136F31E3E8B4E00EB7A8A /* AnimatedFormFieldTableViewCell_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AnimatedFormFieldTableViewCell_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 25 | 1CE136F61E3E8B4E00EB7A8A /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 26 | 1CE136F81E3E8B4E00EB7A8A /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 27 | 1CE137021E3E8B4E00EB7A8A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 28 | 1CE137081E3E8BB600EB7A8A /* FormViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FormViewController.swift; sourceTree = ""; }; 29 | 1CE137091E3E8BB600EB7A8A /* FormViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FormViewController.xib; sourceTree = ""; }; 30 | 5B17A8E8536EFCAD90892EC3 /* Pods-AnimatedFormFieldTableViewCell_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnimatedFormFieldTableViewCell_Example.debug.xcconfig"; path = "Target Support Files/Pods-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_Example.debug.xcconfig"; sourceTree = ""; }; 31 | B3115352EE3570293E89DC17 /* Pods_AnimatedFormFieldTableViewCell_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AnimatedFormFieldTableViewCell_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 32 | C48468DED851F1A6CEB5CD44 /* Pods-AnimatedFormFieldTableViewCell_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AnimatedFormFieldTableViewCell_Example.release.xcconfig"; path = "Target Support Files/Pods-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_Example.release.xcconfig"; sourceTree = ""; }; 33 | /* End PBXFileReference section */ 34 | 35 | /* Begin PBXFrameworksBuildPhase section */ 36 | 1CE136F01E3E8B4E00EB7A8A /* Frameworks */ = { 37 | isa = PBXFrameworksBuildPhase; 38 | buildActionMask = 2147483647; 39 | files = ( 40 | E740BFD2A27C52D548B10DC8 /* Pods_AnimatedFormFieldTableViewCell_Example.framework in Frameworks */, 41 | ); 42 | runOnlyForDeploymentPostprocessing = 0; 43 | }; 44 | /* End PBXFrameworksBuildPhase section */ 45 | 46 | /* Begin PBXGroup section */ 47 | 1CE136EA1E3E8B4E00EB7A8A = { 48 | isa = PBXGroup; 49 | children = ( 50 | 1CE136F51E3E8B4E00EB7A8A /* AnimatedFormFieldTableViewCell */, 51 | 1CE136F41E3E8B4E00EB7A8A /* Products */, 52 | 7F6FDA38F866E0E301670155 /* Pods */, 53 | C6255D6176B0CCFA4D6219AB /* Frameworks */, 54 | ); 55 | sourceTree = ""; 56 | }; 57 | 1CE136F41E3E8B4E00EB7A8A /* Products */ = { 58 | isa = PBXGroup; 59 | children = ( 60 | 1CE136F31E3E8B4E00EB7A8A /* AnimatedFormFieldTableViewCell_Example.app */, 61 | ); 62 | name = Products; 63 | sourceTree = ""; 64 | }; 65 | 1CE136F51E3E8B4E00EB7A8A /* AnimatedFormFieldTableViewCell */ = { 66 | isa = PBXGroup; 67 | children = ( 68 | 1CE137131E3E918900EB7A8A /* Main Files */, 69 | ); 70 | path = AnimatedFormFieldTableViewCell; 71 | sourceTree = ""; 72 | }; 73 | 1CE137131E3E918900EB7A8A /* Main Files */ = { 74 | isa = PBXGroup; 75 | children = ( 76 | 00BD25E1229F27AC0007F60A /* Assets.xcassets */, 77 | 00BD259C229F23780007F60A /* LaunchScreen.storyboard */, 78 | 00BD259E229F23780007F60A /* Main.storyboard */, 79 | 1CE137081E3E8BB600EB7A8A /* FormViewController.swift */, 80 | 1CE137091E3E8BB600EB7A8A /* FormViewController.xib */, 81 | 1CE136F61E3E8B4E00EB7A8A /* AppDelegate.swift */, 82 | 1CE136F81E3E8B4E00EB7A8A /* ViewController.swift */, 83 | 1CE137021E3E8B4E00EB7A8A /* Info.plist */, 84 | ); 85 | name = "Main Files"; 86 | sourceTree = ""; 87 | }; 88 | 7F6FDA38F866E0E301670155 /* Pods */ = { 89 | isa = PBXGroup; 90 | children = ( 91 | 5B17A8E8536EFCAD90892EC3 /* Pods-AnimatedFormFieldTableViewCell_Example.debug.xcconfig */, 92 | C48468DED851F1A6CEB5CD44 /* Pods-AnimatedFormFieldTableViewCell_Example.release.xcconfig */, 93 | ); 94 | path = Pods; 95 | sourceTree = ""; 96 | }; 97 | C6255D6176B0CCFA4D6219AB /* Frameworks */ = { 98 | isa = PBXGroup; 99 | children = ( 100 | B3115352EE3570293E89DC17 /* Pods_AnimatedFormFieldTableViewCell_Example.framework */, 101 | ); 102 | name = Frameworks; 103 | sourceTree = ""; 104 | }; 105 | /* End PBXGroup section */ 106 | 107 | /* Begin PBXNativeTarget section */ 108 | 1CE136F21E3E8B4E00EB7A8A /* AnimatedFormFieldTableViewCell_Example */ = { 109 | isa = PBXNativeTarget; 110 | buildConfigurationList = 1CE137051E3E8B4E00EB7A8A /* Build configuration list for PBXNativeTarget "AnimatedFormFieldTableViewCell_Example" */; 111 | buildPhases = ( 112 | 732A0F8CAFCCF68D987F87DC /* [CP] Check Pods Manifest.lock */, 113 | 1CE136EF1E3E8B4E00EB7A8A /* Sources */, 114 | 1CE136F01E3E8B4E00EB7A8A /* Frameworks */, 115 | 1CE136F11E3E8B4E00EB7A8A /* Resources */, 116 | 62AA0AB28BCCFA9206F5DD14 /* [CP] Embed Pods Frameworks */, 117 | ); 118 | buildRules = ( 119 | ); 120 | dependencies = ( 121 | ); 122 | name = AnimatedFormFieldTableViewCell_Example; 123 | productName = AnimatedFormFieldDemo; 124 | productReference = 1CE136F31E3E8B4E00EB7A8A /* AnimatedFormFieldTableViewCell_Example.app */; 125 | productType = "com.apple.product-type.application"; 126 | }; 127 | /* End PBXNativeTarget section */ 128 | 129 | /* Begin PBXProject section */ 130 | 1CE136EB1E3E8B4E00EB7A8A /* Project object */ = { 131 | isa = PBXProject; 132 | attributes = { 133 | LastSwiftUpdateCheck = 0820; 134 | LastUpgradeCheck = 1020; 135 | ORGANIZATIONNAME = "Zaltzberg, Ido"; 136 | TargetAttributes = { 137 | 1CE136F21E3E8B4E00EB7A8A = { 138 | CreatedOnToolsVersion = 8.2.1; 139 | DevelopmentTeam = AHR2UGS6WJ; 140 | ProvisioningStyle = Automatic; 141 | }; 142 | }; 143 | }; 144 | buildConfigurationList = 1CE136EE1E3E8B4E00EB7A8A /* Build configuration list for PBXProject "AnimatedFormFieldTableViewCell" */; 145 | compatibilityVersion = "Xcode 3.2"; 146 | developmentRegion = en; 147 | hasScannedForEncodings = 0; 148 | knownRegions = ( 149 | en, 150 | Base, 151 | global, 152 | ); 153 | mainGroup = 1CE136EA1E3E8B4E00EB7A8A; 154 | productRefGroup = 1CE136F41E3E8B4E00EB7A8A /* Products */; 155 | projectDirPath = ""; 156 | projectRoot = ""; 157 | targets = ( 158 | 1CE136F21E3E8B4E00EB7A8A /* AnimatedFormFieldTableViewCell_Example */, 159 | ); 160 | }; 161 | /* End PBXProject section */ 162 | 163 | /* Begin PBXResourcesBuildPhase section */ 164 | 1CE136F11E3E8B4E00EB7A8A /* Resources */ = { 165 | isa = PBXResourcesBuildPhase; 166 | buildActionMask = 2147483647; 167 | files = ( 168 | 00BD25A0229F23780007F60A /* LaunchScreen.storyboard in Resources */, 169 | 1CE1370B1E3E8BB600EB7A8A /* FormViewController.xib in Resources */, 170 | 00BD25A1229F23780007F60A /* Main.storyboard in Resources */, 171 | 00BD25E3229F27AC0007F60A /* Assets.xcassets in Resources */, 172 | ); 173 | runOnlyForDeploymentPostprocessing = 0; 174 | }; 175 | /* End PBXResourcesBuildPhase section */ 176 | 177 | /* Begin PBXShellScriptBuildPhase section */ 178 | 62AA0AB28BCCFA9206F5DD14 /* [CP] Embed Pods Frameworks */ = { 179 | isa = PBXShellScriptBuildPhase; 180 | buildActionMask = 2147483647; 181 | files = ( 182 | ); 183 | inputPaths = ( 184 | "${PODS_ROOT}/Target Support Files/Pods-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_Example-frameworks.sh", 185 | "${BUILT_PRODUCTS_DIR}/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.framework", 186 | ); 187 | name = "[CP] Embed Pods Frameworks"; 188 | outputPaths = ( 189 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/AnimatedFormFieldTableViewCell.framework", 190 | ); 191 | runOnlyForDeploymentPostprocessing = 0; 192 | shellPath = /bin/sh; 193 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_Example-frameworks.sh\"\n"; 194 | showEnvVarsInLog = 0; 195 | }; 196 | 732A0F8CAFCCF68D987F87DC /* [CP] Check Pods Manifest.lock */ = { 197 | isa = PBXShellScriptBuildPhase; 198 | buildActionMask = 2147483647; 199 | files = ( 200 | ); 201 | inputFileListPaths = ( 202 | ); 203 | inputPaths = ( 204 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 205 | "${PODS_ROOT}/Manifest.lock", 206 | ); 207 | name = "[CP] Check Pods Manifest.lock"; 208 | outputFileListPaths = ( 209 | ); 210 | outputPaths = ( 211 | "$(DERIVED_FILE_DIR)/Pods-AnimatedFormFieldTableViewCell_Example-checkManifestLockResult.txt", 212 | ); 213 | runOnlyForDeploymentPostprocessing = 0; 214 | shellPath = /bin/sh; 215 | 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"; 216 | showEnvVarsInLog = 0; 217 | }; 218 | /* End PBXShellScriptBuildPhase section */ 219 | 220 | /* Begin PBXSourcesBuildPhase section */ 221 | 1CE136EF1E3E8B4E00EB7A8A /* Sources */ = { 222 | isa = PBXSourcesBuildPhase; 223 | buildActionMask = 2147483647; 224 | files = ( 225 | 1CE1370A1E3E8BB600EB7A8A /* FormViewController.swift in Sources */, 226 | 1CE136F91E3E8B4E00EB7A8A /* ViewController.swift in Sources */, 227 | 1CE136F71E3E8B4E00EB7A8A /* AppDelegate.swift in Sources */, 228 | ); 229 | runOnlyForDeploymentPostprocessing = 0; 230 | }; 231 | /* End PBXSourcesBuildPhase section */ 232 | 233 | /* Begin PBXVariantGroup section */ 234 | 00BD259C229F23780007F60A /* LaunchScreen.storyboard */ = { 235 | isa = PBXVariantGroup; 236 | children = ( 237 | 00BD259D229F23780007F60A /* Base */, 238 | ); 239 | name = LaunchScreen.storyboard; 240 | sourceTree = ""; 241 | }; 242 | 00BD259E229F23780007F60A /* Main.storyboard */ = { 243 | isa = PBXVariantGroup; 244 | children = ( 245 | 00BD259F229F23780007F60A /* Base */, 246 | ); 247 | name = Main.storyboard; 248 | sourceTree = ""; 249 | }; 250 | 00BD25E1229F27AC0007F60A /* Assets.xcassets */ = { 251 | isa = PBXVariantGroup; 252 | children = ( 253 | 00BD25E2229F27AC0007F60A /* Base */, 254 | ); 255 | name = Assets.xcassets; 256 | sourceTree = ""; 257 | }; 258 | /* End PBXVariantGroup section */ 259 | 260 | /* Begin XCBuildConfiguration section */ 261 | 1CE137031E3E8B4E00EB7A8A /* Debug */ = { 262 | isa = XCBuildConfiguration; 263 | buildSettings = { 264 | ALWAYS_SEARCH_USER_PATHS = NO; 265 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 266 | CLANG_ANALYZER_NONNULL = YES; 267 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 268 | CLANG_CXX_LIBRARY = "libc++"; 269 | CLANG_ENABLE_MODULES = YES; 270 | CLANG_ENABLE_OBJC_ARC = YES; 271 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 272 | CLANG_WARN_BOOL_CONVERSION = YES; 273 | CLANG_WARN_COMMA = YES; 274 | CLANG_WARN_CONSTANT_CONVERSION = YES; 275 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 276 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 277 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 278 | CLANG_WARN_EMPTY_BODY = YES; 279 | CLANG_WARN_ENUM_CONVERSION = YES; 280 | CLANG_WARN_INFINITE_RECURSION = YES; 281 | CLANG_WARN_INT_CONVERSION = YES; 282 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 283 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 284 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 285 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 286 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 287 | CLANG_WARN_STRICT_PROTOTYPES = YES; 288 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 289 | CLANG_WARN_UNREACHABLE_CODE = YES; 290 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 291 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 292 | COPY_PHASE_STRIP = NO; 293 | DEBUG_INFORMATION_FORMAT = dwarf; 294 | ENABLE_STRICT_OBJC_MSGSEND = YES; 295 | ENABLE_TESTABILITY = YES; 296 | GCC_C_LANGUAGE_STANDARD = gnu99; 297 | GCC_DYNAMIC_NO_PIC = NO; 298 | GCC_NO_COMMON_BLOCKS = YES; 299 | GCC_OPTIMIZATION_LEVEL = 0; 300 | GCC_PREPROCESSOR_DEFINITIONS = ( 301 | "DEBUG=1", 302 | "$(inherited)", 303 | ); 304 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 305 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 306 | GCC_WARN_UNDECLARED_SELECTOR = YES; 307 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 308 | GCC_WARN_UNUSED_FUNCTION = YES; 309 | GCC_WARN_UNUSED_VARIABLE = YES; 310 | IPHONEOS_DEPLOYMENT_TARGET = 10.2; 311 | MTL_ENABLE_DEBUG_INFO = YES; 312 | ONLY_ACTIVE_ARCH = YES; 313 | SDKROOT = iphoneos; 314 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 315 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 316 | SWIFT_VERSION = 5.0; 317 | TARGETED_DEVICE_FAMILY = "1,2"; 318 | }; 319 | name = Debug; 320 | }; 321 | 1CE137041E3E8B4E00EB7A8A /* Release */ = { 322 | isa = XCBuildConfiguration; 323 | buildSettings = { 324 | ALWAYS_SEARCH_USER_PATHS = NO; 325 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 326 | CLANG_ANALYZER_NONNULL = YES; 327 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 328 | CLANG_CXX_LIBRARY = "libc++"; 329 | CLANG_ENABLE_MODULES = YES; 330 | CLANG_ENABLE_OBJC_ARC = YES; 331 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 332 | CLANG_WARN_BOOL_CONVERSION = YES; 333 | CLANG_WARN_COMMA = YES; 334 | CLANG_WARN_CONSTANT_CONVERSION = YES; 335 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 336 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 337 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 338 | CLANG_WARN_EMPTY_BODY = YES; 339 | CLANG_WARN_ENUM_CONVERSION = YES; 340 | CLANG_WARN_INFINITE_RECURSION = YES; 341 | CLANG_WARN_INT_CONVERSION = YES; 342 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 343 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 344 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 345 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 346 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 347 | CLANG_WARN_STRICT_PROTOTYPES = YES; 348 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 349 | CLANG_WARN_UNREACHABLE_CODE = YES; 350 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 351 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 352 | COPY_PHASE_STRIP = NO; 353 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 354 | ENABLE_NS_ASSERTIONS = NO; 355 | ENABLE_STRICT_OBJC_MSGSEND = YES; 356 | GCC_C_LANGUAGE_STANDARD = gnu99; 357 | GCC_NO_COMMON_BLOCKS = YES; 358 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 359 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 360 | GCC_WARN_UNDECLARED_SELECTOR = YES; 361 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 362 | GCC_WARN_UNUSED_FUNCTION = YES; 363 | GCC_WARN_UNUSED_VARIABLE = YES; 364 | IPHONEOS_DEPLOYMENT_TARGET = 10.2; 365 | MTL_ENABLE_DEBUG_INFO = NO; 366 | SDKROOT = iphoneos; 367 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 368 | SWIFT_VERSION = 5.0; 369 | TARGETED_DEVICE_FAMILY = "1,2"; 370 | VALIDATE_PRODUCT = YES; 371 | }; 372 | name = Release; 373 | }; 374 | 1CE137061E3E8B4E00EB7A8A /* Debug */ = { 375 | isa = XCBuildConfiguration; 376 | baseConfigurationReference = 5B17A8E8536EFCAD90892EC3 /* Pods-AnimatedFormFieldTableViewCell_Example.debug.xcconfig */; 377 | buildSettings = { 378 | DEVELOPMENT_TEAM = AHR2UGS6WJ; 379 | INFOPLIST_FILE = "$(SRCROOT)/AnimatedFormFieldTableViewCell/Info.plist"; 380 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 381 | PRODUCT_BUNDLE_IDENTIFIER = com.mint.internal.AnimatedFormFieldDemo; 382 | PRODUCT_NAME = "$(TARGET_NAME)"; 383 | SWIFT_VERSION = 5.0; 384 | }; 385 | name = Debug; 386 | }; 387 | 1CE137071E3E8B4E00EB7A8A /* Release */ = { 388 | isa = XCBuildConfiguration; 389 | baseConfigurationReference = C48468DED851F1A6CEB5CD44 /* Pods-AnimatedFormFieldTableViewCell_Example.release.xcconfig */; 390 | buildSettings = { 391 | DEVELOPMENT_TEAM = AHR2UGS6WJ; 392 | INFOPLIST_FILE = "$(SRCROOT)/AnimatedFormFieldTableViewCell/Info.plist"; 393 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 394 | PRODUCT_BUNDLE_IDENTIFIER = com.mint.internal.AnimatedFormFieldDemo; 395 | PRODUCT_NAME = "$(TARGET_NAME)"; 396 | SWIFT_VERSION = 5.0; 397 | }; 398 | name = Release; 399 | }; 400 | /* End XCBuildConfiguration section */ 401 | 402 | /* Begin XCConfigurationList section */ 403 | 1CE136EE1E3E8B4E00EB7A8A /* Build configuration list for PBXProject "AnimatedFormFieldTableViewCell" */ = { 404 | isa = XCConfigurationList; 405 | buildConfigurations = ( 406 | 1CE137031E3E8B4E00EB7A8A /* Debug */, 407 | 1CE137041E3E8B4E00EB7A8A /* Release */, 408 | ); 409 | defaultConfigurationIsVisible = 0; 410 | defaultConfigurationName = Release; 411 | }; 412 | 1CE137051E3E8B4E00EB7A8A /* Build configuration list for PBXNativeTarget "AnimatedFormFieldTableViewCell_Example" */ = { 413 | isa = XCConfigurationList; 414 | buildConfigurations = ( 415 | 1CE137061E3E8B4E00EB7A8A /* Debug */, 416 | 1CE137071E3E8B4E00EB7A8A /* Release */, 417 | ); 418 | defaultConfigurationIsVisible = 0; 419 | defaultConfigurationName = Release; 420 | }; 421 | /* End XCConfigurationList section */ 422 | }; 423 | rootObject = 1CE136EB1E3E8B4E00EB7A8A /* Project object */; 424 | } 425 | -------------------------------------------------------------------------------- /Example/AnimatedFormFieldTableViewCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/AnimatedFormFieldTableViewCell.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/AnimatedFormFieldTableViewCell.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/AnimatedFormFieldTableViewCell.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/AnimatedFormFieldTableViewCell/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // AnimatedFormFieldDemo 4 | // 5 | // Created by Zaltzberg, Ido on 29/01/2017. 6 | // Copyright © 2017 Zaltzberg, Ido. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | 13 | class AppDelegate: UIResponder, UIApplicationDelegate { 14 | 15 | var window: UIWindow? 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 invalidate graphics rendering callbacks. 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 active 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/AnimatedFormFieldTableViewCell/Assets.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" : "ipad", 45 | "size" : "20x20", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "20x20", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "29x29", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "29x29", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "40x40", 66 | "scale" : "1x" 67 | }, 68 | { 69 | "idiom" : "ipad", 70 | "size" : "40x40", 71 | "scale" : "2x" 72 | }, 73 | { 74 | "idiom" : "ipad", 75 | "size" : "76x76", 76 | "scale" : "1x" 77 | }, 78 | { 79 | "idiom" : "ipad", 80 | "size" : "76x76", 81 | "scale" : "2x" 82 | }, 83 | { 84 | "idiom" : "ipad", 85 | "size" : "83.5x83.5", 86 | "scale" : "2x" 87 | }, 88 | { 89 | "idiom" : "ios-marketing", 90 | "size" : "1024x1024", 91 | "scale" : "1x" 92 | } 93 | ], 94 | "info" : { 95 | "version" : 1, 96 | "author" : "xcode" 97 | } 98 | } -------------------------------------------------------------------------------- /Example/AnimatedFormFieldTableViewCell/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example/AnimatedFormFieldTableViewCell/FormViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // FormViewController.swift 3 | // AnimatedFormFieldDemo 4 | // 5 | // Created by Zaltzberg, Ido on 29/01/2017. 6 | // Copyright © 2017 Zaltzberg, Ido. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import AnimatedFormFieldTableViewCell 11 | 12 | class FormViewController: UIViewController, UITableViewDataSource, UITableViewDelegate, UITextFieldDelegate { 13 | 14 | @IBOutlet weak var tableView: UITableView! 15 | @IBOutlet weak var titleLabel: UILabel! 16 | 17 | override func viewDidLoad() { 18 | super.viewDidLoad() 19 | 20 | /* Register the "AnimatedFormFieldTableViewCell" nib with the cell identifier string you would like to use, 21 | and make sure to load it from the Pod's bundle */ 22 | let bundle = Bundle(for: AnimatedFormFieldTableViewCell.classForCoder()) 23 | tableView.register(UINib(nibName: "AnimatedFormFieldTableViewCell", bundle: bundle), 24 | forCellReuseIdentifier: "myCell") 25 | } 26 | 27 | 28 | //Set up UITableView 29 | func numberOfSectionsInTableView(tableView: UITableView) -> Int { 30 | return 1 31 | } 32 | 33 | func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 34 | return 5 35 | } 36 | 37 | func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 38 | //Dequeuing the cell using the reuse identifier and casting it to AnimatedFormFieldTableViewCell 39 | guard let cell = tableView.dequeueReusableCell(withIdentifier: "myCell") as? AnimatedFormFieldTableViewCell 40 | else { 41 | return UITableViewCell() 42 | } 43 | 44 | //Change placeholder text 45 | cell.setLabelText(text: "Cell number \(indexPath.row)") 46 | 47 | //Set the UITextFieldDelegate to be this view controller (Note that the cell's delegate is of type UITextFieldDelegate so there's no need to set the delegate for the TextField itself - only for the cell 48 | cell.delegate = self 49 | return cell 50 | } 51 | 52 | 53 | func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { 54 | //For best results, row height should be 60 55 | return 60 56 | } 57 | 58 | 59 | //MARK - UITextFieldDelegate 60 | func textFieldDidEndEditing(_ textField: UITextField) { 61 | titleLabel.text = textField.text 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /Example/AnimatedFormFieldTableViewCell/FormViewController.xib: -------------------------------------------------------------------------------- 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 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /Example/AnimatedFormFieldTableViewCell/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/AnimatedFormFieldTableViewCell/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIcons 10 | 11 | CFBundleIcons~ipad 12 | 13 | CFBundleIdentifier 14 | $(PRODUCT_BUNDLE_IDENTIFIER) 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | $(PRODUCT_NAME) 19 | CFBundlePackageType 20 | APPL 21 | CFBundleShortVersionString 22 | 1.0 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIMainStoryboardFile 30 | Main 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UISupportedInterfaceOrientations~ipad 42 | 43 | UIInterfaceOrientationPortrait 44 | UIInterfaceOrientationPortraitUpsideDown 45 | UIInterfaceOrientationLandscapeLeft 46 | UIInterfaceOrientationLandscapeRight 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Example/AnimatedFormFieldTableViewCell/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Example/AnimatedFormFieldTableViewCell/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 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /Example/AnimatedFormFieldTableViewCell/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // AnimatedFormFieldDemo 4 | // 5 | // Created by Zaltzberg, Ido on 29/01/2017. 6 | // Copyright © 2017 Zaltzberg, Ido. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UIViewController { 12 | 13 | @IBAction func demoTapped(_ sender: Any) { 14 | let viewController = FormViewController(nibName: "FormViewController", bundle: nil) 15 | self.present(viewController, animated: true, completion: nil) 16 | } 17 | 18 | } 19 | 20 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'AnimatedFormFieldTableViewCell_Example' do 4 | pod 'AnimatedFormFieldTableViewCell', :path => '../' 5 | end 6 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - AnimatedFormFieldTableViewCell (1.0.0) 3 | 4 | DEPENDENCIES: 5 | - AnimatedFormFieldTableViewCell (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | AnimatedFormFieldTableViewCell: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | AnimatedFormFieldTableViewCell: 498319016b761ee86e15fb9897527cad33ed6cc6 13 | 14 | PODFILE CHECKSUM: 41608765132a6e2df86f6421b5d234269a07991e 15 | 16 | COCOAPODS: 1.7.0 17 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/AnimatedFormFieldTableViewCell.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AnimatedFormFieldTableViewCell", 3 | "version": "1.0.0", 4 | "summary": "UITextField Implementation with built in placeholder scaling animation", 5 | "description": "The AnimatedFormFieldTableViewCell allows you to implement a UITableViewCell with an embedded UITextField that automatically scales the textfield's placeholder upon user interaction.", 6 | "homepage": "https://github.com/intuit/AnimatedFormFieldTableViewCell", 7 | "screenshots": "https://camo.githubusercontent.com/b149a9177c5c4448dcb15dddd7e54b9063f2aa34/687474703a2f2f692e696d6775722e636f6d2f464d6654434d542e676966", 8 | "license": { 9 | "type": "MIT", 10 | "file": "LICENSE" 11 | }, 12 | "authors": { 13 | "Ido Zaltzberg": "zaltzy@gmail.com" 14 | }, 15 | "source": { 16 | "git": "https://github.com/intuit/AnimatedFormFieldTableViewCell.git", 17 | "tag": "1.0.0" 18 | }, 19 | "platforms": { 20 | "ios": "8.0" 21 | }, 22 | "source_files": "AnimatedFormFieldTableViewCell/*", 23 | "swift_versions": "5.0", 24 | "swift_version": "5.0" 25 | } 26 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - AnimatedFormFieldTableViewCell (1.0.0) 3 | 4 | DEPENDENCIES: 5 | - AnimatedFormFieldTableViewCell (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | AnimatedFormFieldTableViewCell: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | AnimatedFormFieldTableViewCell: 498319016b761ee86e15fb9897527cad33ed6cc6 13 | 14 | PODFILE CHECKSUM: 41608765132a6e2df86f6421b5d234269a07991e 15 | 16 | COCOAPODS: 1.7.0 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 | 188A88B0D17ACF045A886AD474F8E5CE /* Pods-AnimatedFormFieldTableViewCell_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5307A78567F1AE7422DC1F3330072BCE /* Pods-AnimatedFormFieldTableViewCell_Example-dummy.m */; }; 11 | 229A3F73F337A93C171EFFC8A400B90B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 12 | 24E829A794451AC5619EDCF0DEE1F4F0 /* AnimatedFormFieldTableViewCell-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 83457D817733D67BE40F41B56EF8B7E0 /* AnimatedFormFieldTableViewCell-dummy.m */; }; 13 | 3EE8EE50BC62EB8C24032C251EE7AD4F /* AnimatedFormFieldTableViewCell-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CB1034F615C772C3FAAE6B11A72E82B0 /* AnimatedFormFieldTableViewCell-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 8CFFCAAB05AD69C6DFE9325F63309808 /* AnimatedFormFieldTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6709EB1DDE87DE927D331976B9EC8A67 /* AnimatedFormFieldTableViewCell.swift */; }; 15 | 92677DA4A61B4F693E37C7801CFB4A26 /* Pods-AnimatedFormFieldTableViewCell_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DEE0CA575BC8496673856505E525FF47 /* Pods-AnimatedFormFieldTableViewCell_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | B54CBC097DB9B23BDB78BC5942989160 /* AnimatedFormFieldTableViewCell.xib in Sources */ = {isa = PBXBuildFile; fileRef = D5EA8AB9060696DEDDA19F08AB15ED56 /* AnimatedFormFieldTableViewCell.xib */; }; 17 | C87D41C1A6746EE4437DA10E52804538 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 635EB7606FFBC53CDC2AE9D4C25866F3 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 076039610163C3CCE8654C126ECD29C6; 26 | remoteInfo = AnimatedFormFieldTableViewCell; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 0CDC6C7EDBD0861B110F6BCA157BE1ED /* Pods-AnimatedFormFieldTableViewCell_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AnimatedFormFieldTableViewCell_Example.release.xcconfig"; sourceTree = ""; }; 32 | 29F64F526178F4C64576F0B99CC7C464 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 33 | 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; }; 34 | 5307A78567F1AE7422DC1F3330072BCE /* Pods-AnimatedFormFieldTableViewCell_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AnimatedFormFieldTableViewCell_Example-dummy.m"; sourceTree = ""; }; 35 | 5A2E2553D72085DBD9D766E2FF553AA8 /* AnimatedFormFieldTableViewCell.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = AnimatedFormFieldTableViewCell.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 36 | 6709EB1DDE87DE927D331976B9EC8A67 /* AnimatedFormFieldTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedFormFieldTableViewCell.swift; path = AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.swift; sourceTree = ""; }; 37 | 7F318F9FC259433C61DA53FF7D3B288D /* AnimatedFormFieldTableViewCell.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AnimatedFormFieldTableViewCell.framework; path = AnimatedFormFieldTableViewCell.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 38 | 83457D817733D67BE40F41B56EF8B7E0 /* AnimatedFormFieldTableViewCell-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AnimatedFormFieldTableViewCell-dummy.m"; sourceTree = ""; }; 39 | 8ED7542AFC6E3A09F0778A5EA4E34E1F /* AnimatedFormFieldTableViewCell.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AnimatedFormFieldTableViewCell.modulemap; sourceTree = ""; }; 40 | 951C5F1EF767309DE05A3E9C994DCC9D /* Pods-AnimatedFormFieldTableViewCell_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AnimatedFormFieldTableViewCell_Example-acknowledgements.plist"; sourceTree = ""; }; 41 | 9CCD3FD7185DE5DC485E63FE54D8CE3C /* Pods-AnimatedFormFieldTableViewCell_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AnimatedFormFieldTableViewCell_Example-acknowledgements.markdown"; sourceTree = ""; }; 42 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 43 | 9EDB71D3B735CEBA941E273A04A6139F /* Pods-AnimatedFormFieldTableViewCell_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AnimatedFormFieldTableViewCell_Example.debug.xcconfig"; sourceTree = ""; }; 44 | A0B78EDC9006CAE110355FC70DB36B2E /* Pods-AnimatedFormFieldTableViewCell_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AnimatedFormFieldTableViewCell_Example-Info.plist"; sourceTree = ""; }; 45 | B5918E7CBA539CD5A9482F0807A599BD /* Pods-AnimatedFormFieldTableViewCell_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AnimatedFormFieldTableViewCell_Example.modulemap"; sourceTree = ""; }; 46 | C49E18782C30692BB8E219B4F001554F /* Pods-AnimatedFormFieldTableViewCell_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AnimatedFormFieldTableViewCell_Example-frameworks.sh"; sourceTree = ""; }; 47 | CA6505C15A9B6713C79D8D298BB6F7DA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 48 | CB1034F615C772C3FAAE6B11A72E82B0 /* AnimatedFormFieldTableViewCell-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AnimatedFormFieldTableViewCell-umbrella.h"; sourceTree = ""; }; 49 | D5EA8AB9060696DEDDA19F08AB15ED56 /* AnimatedFormFieldTableViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = AnimatedFormFieldTableViewCell.xib; path = AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.xib; sourceTree = ""; }; 50 | DA508DEAB416703C517885BB8E226AAB /* AnimatedFormFieldTableViewCell-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AnimatedFormFieldTableViewCell-prefix.pch"; sourceTree = ""; }; 51 | DADCE2CB1F56FC96588F85CF623EFF2B /* AnimatedFormFieldTableViewCell.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AnimatedFormFieldTableViewCell.xcconfig; sourceTree = ""; }; 52 | DEE0CA575BC8496673856505E525FF47 /* Pods-AnimatedFormFieldTableViewCell_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AnimatedFormFieldTableViewCell_Example-umbrella.h"; sourceTree = ""; }; 53 | E68B1E424867C8A4AD00F7EA7C2EFA03 /* AnimatedFormFieldTableViewCell-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "AnimatedFormFieldTableViewCell-Info.plist"; sourceTree = ""; }; 54 | F708F05C502109F591E5AB3CF0460F01 /* Pods_AnimatedFormFieldTableViewCell_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_AnimatedFormFieldTableViewCell_Example.framework; path = "Pods-AnimatedFormFieldTableViewCell_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 55 | /* End PBXFileReference section */ 56 | 57 | /* Begin PBXFrameworksBuildPhase section */ 58 | 1892F83EBC6DAEB02AA7F37685DA828B /* Frameworks */ = { 59 | isa = PBXFrameworksBuildPhase; 60 | buildActionMask = 2147483647; 61 | files = ( 62 | 229A3F73F337A93C171EFFC8A400B90B /* Foundation.framework in Frameworks */, 63 | ); 64 | runOnlyForDeploymentPostprocessing = 0; 65 | }; 66 | 663C3C048CE2196530CB2A6984C300C4 /* Frameworks */ = { 67 | isa = PBXFrameworksBuildPhase; 68 | buildActionMask = 2147483647; 69 | files = ( 70 | C87D41C1A6746EE4437DA10E52804538 /* Foundation.framework in Frameworks */, 71 | ); 72 | runOnlyForDeploymentPostprocessing = 0; 73 | }; 74 | /* End PBXFrameworksBuildPhase section */ 75 | 76 | /* Begin PBXGroup section */ 77 | 1A28CCE32552FCAD2CA1BED67210F165 /* Targets Support Files */ = { 78 | isa = PBXGroup; 79 | children = ( 80 | 5B0CD80F20CBDDC86BC0E8B2653F55E0 /* Pods-AnimatedFormFieldTableViewCell_Example */, 81 | ); 82 | name = "Targets Support Files"; 83 | sourceTree = ""; 84 | }; 85 | 5B0CD80F20CBDDC86BC0E8B2653F55E0 /* Pods-AnimatedFormFieldTableViewCell_Example */ = { 86 | isa = PBXGroup; 87 | children = ( 88 | B5918E7CBA539CD5A9482F0807A599BD /* Pods-AnimatedFormFieldTableViewCell_Example.modulemap */, 89 | 9CCD3FD7185DE5DC485E63FE54D8CE3C /* Pods-AnimatedFormFieldTableViewCell_Example-acknowledgements.markdown */, 90 | 951C5F1EF767309DE05A3E9C994DCC9D /* Pods-AnimatedFormFieldTableViewCell_Example-acknowledgements.plist */, 91 | 5307A78567F1AE7422DC1F3330072BCE /* Pods-AnimatedFormFieldTableViewCell_Example-dummy.m */, 92 | C49E18782C30692BB8E219B4F001554F /* Pods-AnimatedFormFieldTableViewCell_Example-frameworks.sh */, 93 | A0B78EDC9006CAE110355FC70DB36B2E /* Pods-AnimatedFormFieldTableViewCell_Example-Info.plist */, 94 | DEE0CA575BC8496673856505E525FF47 /* Pods-AnimatedFormFieldTableViewCell_Example-umbrella.h */, 95 | 9EDB71D3B735CEBA941E273A04A6139F /* Pods-AnimatedFormFieldTableViewCell_Example.debug.xcconfig */, 96 | 0CDC6C7EDBD0861B110F6BCA157BE1ED /* Pods-AnimatedFormFieldTableViewCell_Example.release.xcconfig */, 97 | ); 98 | name = "Pods-AnimatedFormFieldTableViewCell_Example"; 99 | path = "Target Support Files/Pods-AnimatedFormFieldTableViewCell_Example"; 100 | sourceTree = ""; 101 | }; 102 | 5EB4C8958FE1DE8E9176E35F6E0F9A5F /* Development Pods */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | BC568662539A06CB0867593AF4D3C6DE /* AnimatedFormFieldTableViewCell */, 106 | ); 107 | name = "Development Pods"; 108 | sourceTree = ""; 109 | }; 110 | 6A312D1C4653B60C19B133CE84908D41 /* Support Files */ = { 111 | isa = PBXGroup; 112 | children = ( 113 | 8ED7542AFC6E3A09F0778A5EA4E34E1F /* AnimatedFormFieldTableViewCell.modulemap */, 114 | DADCE2CB1F56FC96588F85CF623EFF2B /* AnimatedFormFieldTableViewCell.xcconfig */, 115 | 83457D817733D67BE40F41B56EF8B7E0 /* AnimatedFormFieldTableViewCell-dummy.m */, 116 | E68B1E424867C8A4AD00F7EA7C2EFA03 /* AnimatedFormFieldTableViewCell-Info.plist */, 117 | DA508DEAB416703C517885BB8E226AAB /* AnimatedFormFieldTableViewCell-prefix.pch */, 118 | CB1034F615C772C3FAAE6B11A72E82B0 /* AnimatedFormFieldTableViewCell-umbrella.h */, 119 | ); 120 | name = "Support Files"; 121 | path = "Example/Pods/Target Support Files/AnimatedFormFieldTableViewCell"; 122 | sourceTree = ""; 123 | }; 124 | 8737D35EC7703D29EBD62B3455D614DE /* Products */ = { 125 | isa = PBXGroup; 126 | children = ( 127 | 7F318F9FC259433C61DA53FF7D3B288D /* AnimatedFormFieldTableViewCell.framework */, 128 | F708F05C502109F591E5AB3CF0460F01 /* Pods_AnimatedFormFieldTableViewCell_Example.framework */, 129 | ); 130 | name = Products; 131 | sourceTree = ""; 132 | }; 133 | BC568662539A06CB0867593AF4D3C6DE /* AnimatedFormFieldTableViewCell */ = { 134 | isa = PBXGroup; 135 | children = ( 136 | 6709EB1DDE87DE927D331976B9EC8A67 /* AnimatedFormFieldTableViewCell.swift */, 137 | D5EA8AB9060696DEDDA19F08AB15ED56 /* AnimatedFormFieldTableViewCell.xib */, 138 | EF740D32C85F277E41F3D81A076AC33D /* Pod */, 139 | 6A312D1C4653B60C19B133CE84908D41 /* Support Files */, 140 | ); 141 | name = AnimatedFormFieldTableViewCell; 142 | path = ../..; 143 | sourceTree = ""; 144 | }; 145 | C0834CEBB1379A84116EF29F93051C60 /* iOS */ = { 146 | isa = PBXGroup; 147 | children = ( 148 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */, 149 | ); 150 | name = iOS; 151 | sourceTree = ""; 152 | }; 153 | CF1408CF629C7361332E53B88F7BD30C = { 154 | isa = PBXGroup; 155 | children = ( 156 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 157 | 5EB4C8958FE1DE8E9176E35F6E0F9A5F /* Development Pods */, 158 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 159 | 8737D35EC7703D29EBD62B3455D614DE /* Products */, 160 | 1A28CCE32552FCAD2CA1BED67210F165 /* Targets Support Files */, 161 | ); 162 | sourceTree = ""; 163 | }; 164 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { 165 | isa = PBXGroup; 166 | children = ( 167 | C0834CEBB1379A84116EF29F93051C60 /* iOS */, 168 | ); 169 | name = Frameworks; 170 | sourceTree = ""; 171 | }; 172 | EF740D32C85F277E41F3D81A076AC33D /* Pod */ = { 173 | isa = PBXGroup; 174 | children = ( 175 | 5A2E2553D72085DBD9D766E2FF553AA8 /* AnimatedFormFieldTableViewCell.podspec */, 176 | CA6505C15A9B6713C79D8D298BB6F7DA /* LICENSE */, 177 | 29F64F526178F4C64576F0B99CC7C464 /* README.md */, 178 | ); 179 | name = Pod; 180 | sourceTree = ""; 181 | }; 182 | /* End PBXGroup section */ 183 | 184 | /* Begin PBXHeadersBuildPhase section */ 185 | A6CD0BC6B116746804672BFB8DAFE08D /* Headers */ = { 186 | isa = PBXHeadersBuildPhase; 187 | buildActionMask = 2147483647; 188 | files = ( 189 | 92677DA4A61B4F693E37C7801CFB4A26 /* Pods-AnimatedFormFieldTableViewCell_Example-umbrella.h in Headers */, 190 | ); 191 | runOnlyForDeploymentPostprocessing = 0; 192 | }; 193 | F95D868D3AC0F82754DED2EAAEF5C675 /* Headers */ = { 194 | isa = PBXHeadersBuildPhase; 195 | buildActionMask = 2147483647; 196 | files = ( 197 | 3EE8EE50BC62EB8C24032C251EE7AD4F /* AnimatedFormFieldTableViewCell-umbrella.h in Headers */, 198 | ); 199 | runOnlyForDeploymentPostprocessing = 0; 200 | }; 201 | /* End PBXHeadersBuildPhase section */ 202 | 203 | /* Begin PBXNativeTarget section */ 204 | 076039610163C3CCE8654C126ECD29C6 /* AnimatedFormFieldTableViewCell */ = { 205 | isa = PBXNativeTarget; 206 | buildConfigurationList = C7F3AE3ECB45E8662D4F0B060EE812BB /* Build configuration list for PBXNativeTarget "AnimatedFormFieldTableViewCell" */; 207 | buildPhases = ( 208 | F95D868D3AC0F82754DED2EAAEF5C675 /* Headers */, 209 | 21F774E99073215D021F5C77BC2977BC /* Sources */, 210 | 1892F83EBC6DAEB02AA7F37685DA828B /* Frameworks */, 211 | DE7DF7A84F784A74484BAB39AE375992 /* Resources */, 212 | ); 213 | buildRules = ( 214 | ); 215 | dependencies = ( 216 | ); 217 | name = AnimatedFormFieldTableViewCell; 218 | productName = AnimatedFormFieldTableViewCell; 219 | productReference = 7F318F9FC259433C61DA53FF7D3B288D /* AnimatedFormFieldTableViewCell.framework */; 220 | productType = "com.apple.product-type.framework"; 221 | }; 222 | 0D53838BC91BBB93242F36A1D22777E8 /* Pods-AnimatedFormFieldTableViewCell_Example */ = { 223 | isa = PBXNativeTarget; 224 | buildConfigurationList = 2517DA8E8659ECD10336D3E706B24642 /* Build configuration list for PBXNativeTarget "Pods-AnimatedFormFieldTableViewCell_Example" */; 225 | buildPhases = ( 226 | A6CD0BC6B116746804672BFB8DAFE08D /* Headers */, 227 | 8BC73B6EA909B00842EA1B15F7B0C017 /* Sources */, 228 | 663C3C048CE2196530CB2A6984C300C4 /* Frameworks */, 229 | 6D1BAB349009F8F72C52A00122B3B242 /* Resources */, 230 | ); 231 | buildRules = ( 232 | ); 233 | dependencies = ( 234 | F0A6DD99614E91C3E8B8FB4C36E5DFC6 /* PBXTargetDependency */, 235 | ); 236 | name = "Pods-AnimatedFormFieldTableViewCell_Example"; 237 | productName = "Pods-AnimatedFormFieldTableViewCell_Example"; 238 | productReference = F708F05C502109F591E5AB3CF0460F01 /* Pods_AnimatedFormFieldTableViewCell_Example.framework */; 239 | productType = "com.apple.product-type.framework"; 240 | }; 241 | /* End PBXNativeTarget section */ 242 | 243 | /* Begin PBXProject section */ 244 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 245 | isa = PBXProject; 246 | attributes = { 247 | LastSwiftUpdateCheck = 1020; 248 | LastUpgradeCheck = 1020; 249 | }; 250 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 251 | compatibilityVersion = "Xcode 3.2"; 252 | developmentRegion = en; 253 | hasScannedForEncodings = 0; 254 | knownRegions = ( 255 | en, 256 | ); 257 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 258 | productRefGroup = 8737D35EC7703D29EBD62B3455D614DE /* Products */; 259 | projectDirPath = ""; 260 | projectRoot = ""; 261 | targets = ( 262 | 076039610163C3CCE8654C126ECD29C6 /* AnimatedFormFieldTableViewCell */, 263 | 0D53838BC91BBB93242F36A1D22777E8 /* Pods-AnimatedFormFieldTableViewCell_Example */, 264 | ); 265 | }; 266 | /* End PBXProject section */ 267 | 268 | /* Begin PBXResourcesBuildPhase section */ 269 | 6D1BAB349009F8F72C52A00122B3B242 /* Resources */ = { 270 | isa = PBXResourcesBuildPhase; 271 | buildActionMask = 2147483647; 272 | files = ( 273 | ); 274 | runOnlyForDeploymentPostprocessing = 0; 275 | }; 276 | DE7DF7A84F784A74484BAB39AE375992 /* Resources */ = { 277 | isa = PBXResourcesBuildPhase; 278 | buildActionMask = 2147483647; 279 | files = ( 280 | ); 281 | runOnlyForDeploymentPostprocessing = 0; 282 | }; 283 | /* End PBXResourcesBuildPhase section */ 284 | 285 | /* Begin PBXSourcesBuildPhase section */ 286 | 21F774E99073215D021F5C77BC2977BC /* Sources */ = { 287 | isa = PBXSourcesBuildPhase; 288 | buildActionMask = 2147483647; 289 | files = ( 290 | 24E829A794451AC5619EDCF0DEE1F4F0 /* AnimatedFormFieldTableViewCell-dummy.m in Sources */, 291 | 8CFFCAAB05AD69C6DFE9325F63309808 /* AnimatedFormFieldTableViewCell.swift in Sources */, 292 | B54CBC097DB9B23BDB78BC5942989160 /* AnimatedFormFieldTableViewCell.xib in Sources */, 293 | ); 294 | runOnlyForDeploymentPostprocessing = 0; 295 | }; 296 | 8BC73B6EA909B00842EA1B15F7B0C017 /* Sources */ = { 297 | isa = PBXSourcesBuildPhase; 298 | buildActionMask = 2147483647; 299 | files = ( 300 | 188A88B0D17ACF045A886AD474F8E5CE /* Pods-AnimatedFormFieldTableViewCell_Example-dummy.m in Sources */, 301 | ); 302 | runOnlyForDeploymentPostprocessing = 0; 303 | }; 304 | /* End PBXSourcesBuildPhase section */ 305 | 306 | /* Begin PBXTargetDependency section */ 307 | F0A6DD99614E91C3E8B8FB4C36E5DFC6 /* PBXTargetDependency */ = { 308 | isa = PBXTargetDependency; 309 | name = AnimatedFormFieldTableViewCell; 310 | target = 076039610163C3CCE8654C126ECD29C6 /* AnimatedFormFieldTableViewCell */; 311 | targetProxy = 635EB7606FFBC53CDC2AE9D4C25866F3 /* PBXContainerItemProxy */; 312 | }; 313 | /* End PBXTargetDependency section */ 314 | 315 | /* Begin XCBuildConfiguration section */ 316 | 1F2E81757D76E43042739BC5AEFFE429 /* Release */ = { 317 | isa = XCBuildConfiguration; 318 | buildSettings = { 319 | ALWAYS_SEARCH_USER_PATHS = NO; 320 | CLANG_ANALYZER_NONNULL = YES; 321 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 322 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 323 | CLANG_CXX_LIBRARY = "libc++"; 324 | CLANG_ENABLE_MODULES = YES; 325 | CLANG_ENABLE_OBJC_ARC = YES; 326 | CLANG_ENABLE_OBJC_WEAK = YES; 327 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 328 | CLANG_WARN_BOOL_CONVERSION = YES; 329 | CLANG_WARN_COMMA = YES; 330 | CLANG_WARN_CONSTANT_CONVERSION = YES; 331 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 332 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 333 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 334 | CLANG_WARN_EMPTY_BODY = YES; 335 | CLANG_WARN_ENUM_CONVERSION = YES; 336 | CLANG_WARN_INFINITE_RECURSION = YES; 337 | CLANG_WARN_INT_CONVERSION = YES; 338 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 339 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 340 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 341 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 342 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 343 | CLANG_WARN_STRICT_PROTOTYPES = YES; 344 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 345 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 346 | CLANG_WARN_UNREACHABLE_CODE = YES; 347 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 348 | COPY_PHASE_STRIP = NO; 349 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 350 | ENABLE_NS_ASSERTIONS = NO; 351 | ENABLE_STRICT_OBJC_MSGSEND = YES; 352 | GCC_C_LANGUAGE_STANDARD = gnu11; 353 | GCC_NO_COMMON_BLOCKS = YES; 354 | GCC_PREPROCESSOR_DEFINITIONS = ( 355 | "POD_CONFIGURATION_RELEASE=1", 356 | "$(inherited)", 357 | ); 358 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 359 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 360 | GCC_WARN_UNDECLARED_SELECTOR = YES; 361 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 362 | GCC_WARN_UNUSED_FUNCTION = YES; 363 | GCC_WARN_UNUSED_VARIABLE = YES; 364 | IPHONEOS_DEPLOYMENT_TARGET = 10.2; 365 | MTL_ENABLE_DEBUG_INFO = NO; 366 | MTL_FAST_MATH = YES; 367 | PRODUCT_NAME = "$(TARGET_NAME)"; 368 | STRIP_INSTALLED_PRODUCT = NO; 369 | SWIFT_COMPILATION_MODE = wholemodule; 370 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 371 | SWIFT_VERSION = 5.0; 372 | SYMROOT = "${SRCROOT}/../build"; 373 | }; 374 | name = Release; 375 | }; 376 | A1E2CDF649CF4C8B285A95E71370E391 /* Debug */ = { 377 | isa = XCBuildConfiguration; 378 | baseConfigurationReference = DADCE2CB1F56FC96588F85CF623EFF2B /* AnimatedFormFieldTableViewCell.xcconfig */; 379 | buildSettings = { 380 | CODE_SIGN_IDENTITY = ""; 381 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 382 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 383 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 384 | CURRENT_PROJECT_VERSION = 1; 385 | DEFINES_MODULE = YES; 386 | DYLIB_COMPATIBILITY_VERSION = 1; 387 | DYLIB_CURRENT_VERSION = 1; 388 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 389 | GCC_PREFIX_HEADER = "Target Support Files/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell-prefix.pch"; 390 | INFOPLIST_FILE = "Target Support Files/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell-Info.plist"; 391 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 392 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 393 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 394 | MODULEMAP_FILE = "Target Support Files/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.modulemap"; 395 | PRODUCT_MODULE_NAME = AnimatedFormFieldTableViewCell; 396 | PRODUCT_NAME = AnimatedFormFieldTableViewCell; 397 | SDKROOT = iphoneos; 398 | SKIP_INSTALL = YES; 399 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 400 | SWIFT_VERSION = 5.0; 401 | TARGETED_DEVICE_FAMILY = "1,2"; 402 | VERSIONING_SYSTEM = "apple-generic"; 403 | VERSION_INFO_PREFIX = ""; 404 | }; 405 | name = Debug; 406 | }; 407 | D93A6DF471F8C9D1B0E2C1D667B8C5B0 /* Debug */ = { 408 | isa = XCBuildConfiguration; 409 | buildSettings = { 410 | ALWAYS_SEARCH_USER_PATHS = NO; 411 | CLANG_ANALYZER_NONNULL = YES; 412 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 413 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 414 | CLANG_CXX_LIBRARY = "libc++"; 415 | CLANG_ENABLE_MODULES = YES; 416 | CLANG_ENABLE_OBJC_ARC = YES; 417 | CLANG_ENABLE_OBJC_WEAK = YES; 418 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 419 | CLANG_WARN_BOOL_CONVERSION = YES; 420 | CLANG_WARN_COMMA = YES; 421 | CLANG_WARN_CONSTANT_CONVERSION = YES; 422 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 423 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 424 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 425 | CLANG_WARN_EMPTY_BODY = YES; 426 | CLANG_WARN_ENUM_CONVERSION = YES; 427 | CLANG_WARN_INFINITE_RECURSION = YES; 428 | CLANG_WARN_INT_CONVERSION = YES; 429 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 430 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 431 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 432 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 433 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 434 | CLANG_WARN_STRICT_PROTOTYPES = YES; 435 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 436 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 437 | CLANG_WARN_UNREACHABLE_CODE = YES; 438 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 439 | COPY_PHASE_STRIP = NO; 440 | DEBUG_INFORMATION_FORMAT = dwarf; 441 | ENABLE_STRICT_OBJC_MSGSEND = YES; 442 | ENABLE_TESTABILITY = YES; 443 | GCC_C_LANGUAGE_STANDARD = gnu11; 444 | GCC_DYNAMIC_NO_PIC = NO; 445 | GCC_NO_COMMON_BLOCKS = YES; 446 | GCC_OPTIMIZATION_LEVEL = 0; 447 | GCC_PREPROCESSOR_DEFINITIONS = ( 448 | "POD_CONFIGURATION_DEBUG=1", 449 | "DEBUG=1", 450 | "$(inherited)", 451 | ); 452 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 453 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 454 | GCC_WARN_UNDECLARED_SELECTOR = YES; 455 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 456 | GCC_WARN_UNUSED_FUNCTION = YES; 457 | GCC_WARN_UNUSED_VARIABLE = YES; 458 | IPHONEOS_DEPLOYMENT_TARGET = 10.2; 459 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 460 | MTL_FAST_MATH = YES; 461 | ONLY_ACTIVE_ARCH = YES; 462 | PRODUCT_NAME = "$(TARGET_NAME)"; 463 | STRIP_INSTALLED_PRODUCT = NO; 464 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 465 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 466 | SWIFT_VERSION = 5.0; 467 | SYMROOT = "${SRCROOT}/../build"; 468 | }; 469 | name = Debug; 470 | }; 471 | E362CE7696945EACEBCD6AFE71D7945C /* Release */ = { 472 | isa = XCBuildConfiguration; 473 | baseConfigurationReference = 0CDC6C7EDBD0861B110F6BCA157BE1ED /* Pods-AnimatedFormFieldTableViewCell_Example.release.xcconfig */; 474 | buildSettings = { 475 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 476 | CLANG_ENABLE_OBJC_WEAK = NO; 477 | CODE_SIGN_IDENTITY = ""; 478 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 479 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 480 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 481 | CURRENT_PROJECT_VERSION = 1; 482 | DEFINES_MODULE = YES; 483 | DYLIB_COMPATIBILITY_VERSION = 1; 484 | DYLIB_CURRENT_VERSION = 1; 485 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 486 | INFOPLIST_FILE = "Target Support Files/Pods-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_Example-Info.plist"; 487 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 488 | IPHONEOS_DEPLOYMENT_TARGET = 10.2; 489 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 490 | MACH_O_TYPE = staticlib; 491 | MODULEMAP_FILE = "Target Support Files/Pods-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_Example.modulemap"; 492 | OTHER_LDFLAGS = ""; 493 | OTHER_LIBTOOLFLAGS = ""; 494 | PODS_ROOT = "$(SRCROOT)"; 495 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 496 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 497 | SDKROOT = iphoneos; 498 | SKIP_INSTALL = YES; 499 | TARGETED_DEVICE_FAMILY = "1,2"; 500 | VALIDATE_PRODUCT = YES; 501 | VERSIONING_SYSTEM = "apple-generic"; 502 | VERSION_INFO_PREFIX = ""; 503 | }; 504 | name = Release; 505 | }; 506 | E61A023F825BBCB742EE058E6199A17B /* Release */ = { 507 | isa = XCBuildConfiguration; 508 | baseConfigurationReference = DADCE2CB1F56FC96588F85CF623EFF2B /* AnimatedFormFieldTableViewCell.xcconfig */; 509 | buildSettings = { 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 | GCC_PREFIX_HEADER = "Target Support Files/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell-prefix.pch"; 520 | INFOPLIST_FILE = "Target Support Files/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell-Info.plist"; 521 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 522 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 523 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 524 | MODULEMAP_FILE = "Target Support Files/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.modulemap"; 525 | PRODUCT_MODULE_NAME = AnimatedFormFieldTableViewCell; 526 | PRODUCT_NAME = AnimatedFormFieldTableViewCell; 527 | SDKROOT = iphoneos; 528 | SKIP_INSTALL = YES; 529 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 530 | SWIFT_VERSION = 5.0; 531 | TARGETED_DEVICE_FAMILY = "1,2"; 532 | VALIDATE_PRODUCT = YES; 533 | VERSIONING_SYSTEM = "apple-generic"; 534 | VERSION_INFO_PREFIX = ""; 535 | }; 536 | name = Release; 537 | }; 538 | F3F3A88C1F8DE78307BB1C3D1F6C2125 /* Debug */ = { 539 | isa = XCBuildConfiguration; 540 | baseConfigurationReference = 9EDB71D3B735CEBA941E273A04A6139F /* Pods-AnimatedFormFieldTableViewCell_Example.debug.xcconfig */; 541 | buildSettings = { 542 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 543 | CLANG_ENABLE_OBJC_WEAK = NO; 544 | CODE_SIGN_IDENTITY = ""; 545 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 546 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 547 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 548 | CURRENT_PROJECT_VERSION = 1; 549 | DEFINES_MODULE = YES; 550 | DYLIB_COMPATIBILITY_VERSION = 1; 551 | DYLIB_CURRENT_VERSION = 1; 552 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 553 | INFOPLIST_FILE = "Target Support Files/Pods-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_Example-Info.plist"; 554 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 555 | IPHONEOS_DEPLOYMENT_TARGET = 10.2; 556 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 557 | MACH_O_TYPE = staticlib; 558 | MODULEMAP_FILE = "Target Support Files/Pods-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_Example.modulemap"; 559 | OTHER_LDFLAGS = ""; 560 | OTHER_LIBTOOLFLAGS = ""; 561 | PODS_ROOT = "$(SRCROOT)"; 562 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 563 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 564 | SDKROOT = iphoneos; 565 | SKIP_INSTALL = YES; 566 | TARGETED_DEVICE_FAMILY = "1,2"; 567 | VERSIONING_SYSTEM = "apple-generic"; 568 | VERSION_INFO_PREFIX = ""; 569 | }; 570 | name = Debug; 571 | }; 572 | /* End XCBuildConfiguration section */ 573 | 574 | /* Begin XCConfigurationList section */ 575 | 2517DA8E8659ECD10336D3E706B24642 /* Build configuration list for PBXNativeTarget "Pods-AnimatedFormFieldTableViewCell_Example" */ = { 576 | isa = XCConfigurationList; 577 | buildConfigurations = ( 578 | F3F3A88C1F8DE78307BB1C3D1F6C2125 /* Debug */, 579 | E362CE7696945EACEBCD6AFE71D7945C /* Release */, 580 | ); 581 | defaultConfigurationIsVisible = 0; 582 | defaultConfigurationName = Release; 583 | }; 584 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 585 | isa = XCConfigurationList; 586 | buildConfigurations = ( 587 | D93A6DF471F8C9D1B0E2C1D667B8C5B0 /* Debug */, 588 | 1F2E81757D76E43042739BC5AEFFE429 /* Release */, 589 | ); 590 | defaultConfigurationIsVisible = 0; 591 | defaultConfigurationName = Release; 592 | }; 593 | C7F3AE3ECB45E8662D4F0B060EE812BB /* Build configuration list for PBXNativeTarget "AnimatedFormFieldTableViewCell" */ = { 594 | isa = XCConfigurationList; 595 | buildConfigurations = ( 596 | A1E2CDF649CF4C8B285A95E71370E391 /* Debug */, 597 | E61A023F825BBCB742EE058E6199A17B /* Release */, 598 | ); 599 | defaultConfigurationIsVisible = 0; 600 | defaultConfigurationName = Release; 601 | }; 602 | /* End XCConfigurationList section */ 603 | }; 604 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 605 | } 606 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell-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/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AnimatedFormFieldTableViewCell : NSObject 3 | @end 4 | @implementation PodsDummy_AnimatedFormFieldTableViewCell 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell-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/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell-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 AnimatedFormFieldTableViewCellVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char AnimatedFormFieldTableViewCellVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.modulemap: -------------------------------------------------------------------------------- 1 | framework module AnimatedFormFieldTableViewCell { 2 | umbrella header "AnimatedFormFieldTableViewCell-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/AnimatedFormFieldTableViewCell 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-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_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-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## AnimatedFormFieldTableViewCell 5 | 6 | The MIT License (MIT) 7 | 8 | Copyright (c) 2016 Intuit Inc. 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy 11 | of this software and associated documentation files (the "Software"), to deal 12 | in the Software without restriction, including without limitation the rights 13 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | copies of the Software, and to permit persons to whom the Software is 15 | furnished to do so, subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice shall be included in all 18 | copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 26 | SOFTWARE. 27 | 28 | Generated by CocoaPods - https://cocoapods.org 29 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_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 | The MIT License (MIT) 18 | 19 | Copyright (c) 2016 Intuit Inc. 20 | 21 | Permission is hereby granted, free of charge, to any person obtaining a copy 22 | of this software and associated documentation files (the "Software"), to deal 23 | in the Software without restriction, including without limitation the rights 24 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 25 | copies of the Software, and to permit persons to whom the Software is 26 | furnished to do so, subject to the following conditions: 27 | 28 | The above copyright notice and this permission notice shall be included in all 29 | copies or substantial portions of the Software. 30 | 31 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 32 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 33 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 34 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 35 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 36 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 37 | SOFTWARE. 38 | 39 | License 40 | MIT 41 | Title 42 | AnimatedFormFieldTableViewCell 43 | Type 44 | PSGroupSpecifier 45 | 46 | 47 | FooterText 48 | Generated by CocoaPods - https://cocoapods.org 49 | Title 50 | 51 | Type 52 | PSGroupSpecifier 53 | 54 | 55 | StringsTable 56 | Acknowledgements 57 | Title 58 | Acknowledgements 59 | 60 | 61 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_AnimatedFormFieldTableViewCell_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_AnimatedFormFieldTableViewCell_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_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}/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.framework" 165 | fi 166 | if [[ "$CONFIGURATION" == "Release" ]]; then 167 | install_framework "${BUILT_PRODUCTS_DIR}/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.framework" 168 | fi 169 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 170 | wait 171 | fi 172 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_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_AnimatedFormFieldTableViewCell_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_AnimatedFormFieldTableViewCell_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AnimatedFormFieldTableViewCell" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "AnimatedFormFieldTableViewCell" 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-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_AnimatedFormFieldTableViewCell_Example { 2 | umbrella header "Pods-AnimatedFormFieldTableViewCell_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AnimatedFormFieldTableViewCell_Example/Pods-AnimatedFormFieldTableViewCell_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AnimatedFormFieldTableViewCell" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AnimatedFormFieldTableViewCell/AnimatedFormFieldTableViewCell.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "AnimatedFormFieldTableViewCell" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | import AnimatedFormFieldTableViewCell 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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Intuit Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AnimatedFormFieldTableViewCell 2 | The `AnimatedFormFieldTableViewCell` allows you to implement a `UITableViewCell` with an embedded `UITextField` that automatically scales the textfield's placeholder upon user interaction. 3 | 4 | 5 | 6 | 7 | Installation: 8 | Grab the "AnimatedFormFieldTableViewCell.xib" and "AnimatedFormFieldTableViewCell.swift" files from the "AnimatedFormFieldTableViewCell" folder and drag them to your project". 9 | 10 | In order to use `AnimatedFormFieldTableViewCell`, all you have to do is: 11 | 12 | 1) Register the `AnimatedFormFieldTableViewCell` nib on the ViewController on which you are implementing your UITableView for your reuse identifier. 13 | 14 | 2) Dequeue your cell on `CellForRowAtIndexPath` as a `AnimatedFormFieldTableViewCell`. 15 | 16 | 3) Change the placeholder's label text by calling `setLabelText` on the cell itself. 17 | 18 | And you're pretty much done :). Everything should take care of itself from this point forward. 19 | 20 | Notes: 21 | 22 | 1) In order to access the embedded `UITextField` you can simply call the cell's `cellTextField` property. 23 | 24 | 2) The `AnimatedFormFieldTableViewCell` conforms to the `UITextFieldDelegate` protocol, so if you wish to implement any of the `UITextFieldDelegate` for the cell's textField, you just need to set the `delegate` on the cell itself (and not on the textField - there's no need for that - the cell will take care of that). 25 | 26 | 27 | 3) For best results - cell height should be 60. 28 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------