2

I am search a Library in iOS (Objc) for textinputLayout like android has.

here is the video url for more clarity, https://youtu.be/YnQHb0fNtF8

Can anyone please tell if there is any 3rd party library available or do I need to write my own code with the help of animations.

Bhupesh
  • 2,310
  • 13
  • 33

1 Answers1

8

You can use your custom view with textfield validation on didEndEditing delegate and validate and make your custom design for your validations . or you can find similar library with

  1. https://github.com/enisgayretli/EGFloatingTextField (swift)
  2. https://www.cocoacontrols.com/controls/swiftyform (swift)
mrunal thanki
  • 753
  • 6
  • 16
  • I checked EGFloatingTextField its in swift, I am looking for Obj-C – Bhupesh Sep 28 '15 at 08:47
  • @Bhupesh you can find solution for this on this link : https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html – mrunal thanki Sep 28 '15 at 08:49
  • you can also find relative answers on : http://stackoverflow.com/questions/24102104/how-to-import-swift-code-to-objective-c – mrunal thanki Sep 28 '15 at 08:50
  • you can find here tutorial for using swift code in your objective c with descriptive steps with screenshots : https://medium.com/ios-apprentice/using-swift-in-objective-c-projects-f7e7a09f8be – mrunal thanki Sep 28 '15 at 08:54
  • One more suggestion [JVFloatLabeledTextField](https://github.com/jverdi/JVFloatLabeledTextField) , implemented in Objective-C – Raviprakash Dec 14 '15 at 13:06