├── .gitignore ├── BZGFormField.podspec ├── BZGFormField ├── BZGFormField.h └── BZGFormField.m ├── BZGFormFieldTests ├── BZGFormFieldTests-Info.plist └── BZGFormFieldTests.m ├── Example ├── AppDelegate.h ├── AppDelegate.m ├── Example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── Example.xccheckout │ │ └── xcuserdata │ │ │ └── benguo.xcuserdatad │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── benguo.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── BZGFormField.xcscheme │ │ ├── BZGFormFieldTests.xcscheme │ │ └── xcschememanagement.plist ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── Info.plist ├── Prefix.pch ├── RootViewController.h ├── RootViewController.m ├── RootViewController.xib └── main.m ├── LICENSE ├── README.md └── Screenshots ├── 1.png ├── 2.png ├── 3.png └── 4.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/.gitignore -------------------------------------------------------------------------------- /BZGFormField.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/BZGFormField.podspec -------------------------------------------------------------------------------- /BZGFormField/BZGFormField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/BZGFormField/BZGFormField.h -------------------------------------------------------------------------------- /BZGFormField/BZGFormField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/BZGFormField/BZGFormField.m -------------------------------------------------------------------------------- /BZGFormFieldTests/BZGFormFieldTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/BZGFormFieldTests/BZGFormFieldTests-Info.plist -------------------------------------------------------------------------------- /BZGFormFieldTests/BZGFormFieldTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/BZGFormFieldTests/BZGFormFieldTests.m -------------------------------------------------------------------------------- /Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/AppDelegate.h -------------------------------------------------------------------------------- /Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/AppDelegate.m -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/Example.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/Example.xccheckout -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcuserdata/benguo.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcuserdata/benguo.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcuserdata/benguo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/Example.xcodeproj/xcuserdata/benguo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcuserdata/benguo.xcuserdatad/xcschemes/BZGFormField.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/Example.xcodeproj/xcuserdata/benguo.xcuserdatad/xcschemes/BZGFormField.xcscheme -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcuserdata/benguo.xcuserdatad/xcschemes/BZGFormFieldTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/Example.xcodeproj/xcuserdata/benguo.xcuserdatad/xcschemes/BZGFormFieldTests.xcscheme -------------------------------------------------------------------------------- /Example/Example.xcodeproj/xcuserdata/benguo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/Example.xcodeproj/xcuserdata/benguo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Example/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/Prefix.pch -------------------------------------------------------------------------------- /Example/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/RootViewController.h -------------------------------------------------------------------------------- /Example/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/RootViewController.m -------------------------------------------------------------------------------- /Example/RootViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/RootViewController.xib -------------------------------------------------------------------------------- /Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Example/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Screenshots/1.png -------------------------------------------------------------------------------- /Screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Screenshots/2.png -------------------------------------------------------------------------------- /Screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Screenshots/3.png -------------------------------------------------------------------------------- /Screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0thernet/BZGFormField/HEAD/Screenshots/4.png --------------------------------------------------------------------------------