├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── Package.swift ├── README.md ├── Screenshot.gif ├── TURecipientBar.podspec ├── TURecipientBar.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── TURecipientBar.xcscheme ├── TURecipientBar ├── TURecipient.h ├── TURecipient.m ├── TURecipientBar.h ├── TURecipientButton.h ├── TURecipientButton.m ├── TURecipientsBar.h ├── TURecipientsBar.m ├── TURecipientsDisplayController.h └── TURecipientsDisplayController.m ├── TURecipientBarExample ├── ChipView.swift ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── Example-Bridging-Header.h ├── Icon.sketch ├── Images.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-Settings@2x.png │ │ ├── Icon-Settings@3x.png │ │ ├── Icon-Settings~iPad@1x.png │ │ ├── Icon-Settings~iPad@2x.png │ │ ├── Icon-Spotlight@2x.png │ │ ├── Icon-Spotlight@3x.png │ │ ├── Icon-Spotlight~iPad@1x.png │ │ ├── Icon-Spotlight~iPad@2x.png │ │ ├── Icon@2x.png │ │ ├── Icon@3x.png │ │ ├── Icon~iPad@1x.png │ │ └── Icon~iPad@2x.png ├── Info.plist ├── Launch Screen.xib ├── TUABSearchSource.h ├── TUABSearchSource.m ├── TUAppDelegate.h ├── TUAppDelegate.m ├── TURecipientBar-Info.plist ├── TURecipientBar-Prefix.pch ├── TUViewController.h ├── TUViewController.m ├── en.lproj │ ├── InfoPlist.strings │ └── MainStoryboard.storyboard └── main.m ├── TURecipientBarTests ├── Info.plist └── TURecipientBarTests.m ├── WordMark.sketch ├── WordMark.svg └── recipient.sketch /.gitattributes: -------------------------------------------------------------------------------- 1 | *.m diff=objc 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/Screenshot.gif -------------------------------------------------------------------------------- /TURecipientBar.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBar.podspec -------------------------------------------------------------------------------- /TURecipientBar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TURecipientBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TURecipientBar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TURecipientBar.xcodeproj/xcshareddata/xcschemes/TURecipientBar.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBar.xcodeproj/xcshareddata/xcschemes/TURecipientBar.xcscheme -------------------------------------------------------------------------------- /TURecipientBar/TURecipient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBar/TURecipient.h -------------------------------------------------------------------------------- /TURecipientBar/TURecipient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBar/TURecipient.m -------------------------------------------------------------------------------- /TURecipientBar/TURecipientBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBar/TURecipientBar.h -------------------------------------------------------------------------------- /TURecipientBar/TURecipientButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBar/TURecipientButton.h -------------------------------------------------------------------------------- /TURecipientBar/TURecipientButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBar/TURecipientButton.m -------------------------------------------------------------------------------- /TURecipientBar/TURecipientsBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBar/TURecipientsBar.h -------------------------------------------------------------------------------- /TURecipientBar/TURecipientsBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBar/TURecipientsBar.m -------------------------------------------------------------------------------- /TURecipientBar/TURecipientsDisplayController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBar/TURecipientsDisplayController.h -------------------------------------------------------------------------------- /TURecipientBar/TURecipientsDisplayController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBar/TURecipientsDisplayController.m -------------------------------------------------------------------------------- /TURecipientBarExample/ChipView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/ChipView.swift -------------------------------------------------------------------------------- /TURecipientBarExample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Default-568h@2x.png -------------------------------------------------------------------------------- /TURecipientBarExample/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Default.png -------------------------------------------------------------------------------- /TURecipientBarExample/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Default@2x.png -------------------------------------------------------------------------------- /TURecipientBarExample/Example-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Example-Bridging-Header.h -------------------------------------------------------------------------------- /TURecipientBarExample/Icon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Icon.sketch -------------------------------------------------------------------------------- /TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Settings@2x.png -------------------------------------------------------------------------------- /TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Settings@3x.png -------------------------------------------------------------------------------- /TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Settings~iPad@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Settings~iPad@1x.png -------------------------------------------------------------------------------- /TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Settings~iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Settings~iPad@2x.png -------------------------------------------------------------------------------- /TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Spotlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Spotlight@2x.png -------------------------------------------------------------------------------- /TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Spotlight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Spotlight@3x.png -------------------------------------------------------------------------------- /TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Spotlight~iPad@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Spotlight~iPad@1x.png -------------------------------------------------------------------------------- /TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Spotlight~iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon-Spotlight~iPad@2x.png -------------------------------------------------------------------------------- /TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon@3x.png -------------------------------------------------------------------------------- /TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon~iPad@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon~iPad@1x.png -------------------------------------------------------------------------------- /TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon~iPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Images.xcassets/AppIcon.appiconset/Icon~iPad@2x.png -------------------------------------------------------------------------------- /TURecipientBarExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Info.plist -------------------------------------------------------------------------------- /TURecipientBarExample/Launch Screen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/Launch Screen.xib -------------------------------------------------------------------------------- /TURecipientBarExample/TUABSearchSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/TUABSearchSource.h -------------------------------------------------------------------------------- /TURecipientBarExample/TUABSearchSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/TUABSearchSource.m -------------------------------------------------------------------------------- /TURecipientBarExample/TUAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/TUAppDelegate.h -------------------------------------------------------------------------------- /TURecipientBarExample/TUAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/TUAppDelegate.m -------------------------------------------------------------------------------- /TURecipientBarExample/TURecipientBar-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/TURecipientBar-Info.plist -------------------------------------------------------------------------------- /TURecipientBarExample/TURecipientBar-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/TURecipientBar-Prefix.pch -------------------------------------------------------------------------------- /TURecipientBarExample/TUViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/TUViewController.h -------------------------------------------------------------------------------- /TURecipientBarExample/TUViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/TUViewController.m -------------------------------------------------------------------------------- /TURecipientBarExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TURecipientBarExample/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /TURecipientBarExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarExample/main.m -------------------------------------------------------------------------------- /TURecipientBarTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarTests/Info.plist -------------------------------------------------------------------------------- /TURecipientBarTests/TURecipientBarTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/TURecipientBarTests/TURecipientBarTests.m -------------------------------------------------------------------------------- /WordMark.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/WordMark.sketch -------------------------------------------------------------------------------- /WordMark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/WordMark.svg -------------------------------------------------------------------------------- /recipient.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davbeck/TURecipientBar/HEAD/recipient.sketch --------------------------------------------------------------------------------