├── README.md ├── TokenInputView.xcodeproj ├── project.pbxproj └── xcuserdata │ └── vgovindswamy.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── TestTextView.xcscheme │ ├── TokenInputView.xcscheme │ └── xcschememanagement.plist ├── TokenInputView ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon-60@2x-1.png │ │ ├── icon-60@2x.png │ │ ├── icon-60@3x.png │ │ └── icon-76.png │ ├── Contents.json │ └── dummy_profil_image.imageset │ │ ├── Contents.json │ │ └── Screen Shot 2016-04-25 at 5.35.40 PM.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── InputView │ ├── VSToken.h │ ├── VSToken.m │ ├── VSTokenInputView.h │ └── VSTokenInputView.m ├── UserListViewController.h ├── UserListViewController.m ├── UserListViewController.xib ├── UserTableCell.h ├── UserTableCell.m ├── UserTableCell.xib ├── UsersList.plist ├── VSAddMembersViewController.h ├── VSAddMembersViewController.m └── main.m └── TokenInputViewTests ├── Info.plist └── TokenInputViewTests.m /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/README.md -------------------------------------------------------------------------------- /TokenInputView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TokenInputView.xcodeproj/xcuserdata/vgovindswamy.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView.xcodeproj/xcuserdata/vgovindswamy.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TokenInputView.xcodeproj/xcuserdata/vgovindswamy.xcuserdatad/xcschemes/TestTextView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView.xcodeproj/xcuserdata/vgovindswamy.xcuserdatad/xcschemes/TestTextView.xcscheme -------------------------------------------------------------------------------- /TokenInputView.xcodeproj/xcuserdata/vgovindswamy.xcuserdatad/xcschemes/TokenInputView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView.xcodeproj/xcuserdata/vgovindswamy.xcuserdatad/xcschemes/TokenInputView.xcscheme -------------------------------------------------------------------------------- /TokenInputView.xcodeproj/xcuserdata/vgovindswamy.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView.xcodeproj/xcuserdata/vgovindswamy.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TokenInputView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/AppDelegate.h -------------------------------------------------------------------------------- /TokenInputView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/AppDelegate.m -------------------------------------------------------------------------------- /TokenInputView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TokenInputView/Assets.xcassets/AppIcon.appiconset/icon-60@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/Assets.xcassets/AppIcon.appiconset/icon-60@2x-1.png -------------------------------------------------------------------------------- /TokenInputView/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /TokenInputView/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /TokenInputView/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /TokenInputView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TokenInputView/Assets.xcassets/dummy_profil_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/Assets.xcassets/dummy_profil_image.imageset/Contents.json -------------------------------------------------------------------------------- /TokenInputView/Assets.xcassets/dummy_profil_image.imageset/Screen Shot 2016-04-25 at 5.35.40 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/Assets.xcassets/dummy_profil_image.imageset/Screen Shot 2016-04-25 at 5.35.40 PM.png -------------------------------------------------------------------------------- /TokenInputView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TokenInputView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TokenInputView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/Info.plist -------------------------------------------------------------------------------- /TokenInputView/InputView/VSToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/InputView/VSToken.h -------------------------------------------------------------------------------- /TokenInputView/InputView/VSToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/InputView/VSToken.m -------------------------------------------------------------------------------- /TokenInputView/InputView/VSTokenInputView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/InputView/VSTokenInputView.h -------------------------------------------------------------------------------- /TokenInputView/InputView/VSTokenInputView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/InputView/VSTokenInputView.m -------------------------------------------------------------------------------- /TokenInputView/UserListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/UserListViewController.h -------------------------------------------------------------------------------- /TokenInputView/UserListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/UserListViewController.m -------------------------------------------------------------------------------- /TokenInputView/UserListViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/UserListViewController.xib -------------------------------------------------------------------------------- /TokenInputView/UserTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/UserTableCell.h -------------------------------------------------------------------------------- /TokenInputView/UserTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/UserTableCell.m -------------------------------------------------------------------------------- /TokenInputView/UserTableCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/UserTableCell.xib -------------------------------------------------------------------------------- /TokenInputView/UsersList.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/UsersList.plist -------------------------------------------------------------------------------- /TokenInputView/VSAddMembersViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/VSAddMembersViewController.h -------------------------------------------------------------------------------- /TokenInputView/VSAddMembersViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/VSAddMembersViewController.m -------------------------------------------------------------------------------- /TokenInputView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputView/main.m -------------------------------------------------------------------------------- /TokenInputViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputViewTests/Info.plist -------------------------------------------------------------------------------- /TokenInputViewTests/TokenInputViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinodh-G/TokenInputView/HEAD/TokenInputViewTests/TokenInputViewTests.m --------------------------------------------------------------------------------