├── .gitignore ├── Example ├── MentionsSample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── MentionsSample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── SceneDelegate.swift │ └── ViewController.swift ├── LICENSE ├── Mentions.podspec ├── Package.swift ├── README.md ├── Screenshots └── Demo.gif └── Sources └── Mentions ├── MentionParser.swift ├── UIView ├── MentionLabel.swift └── MentionTextView.swift └── Utility ├── AttributedTextUtility+Append.swift ├── String+Prefix.swift └── String+Range.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/MentionsSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Example/MentionsSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/MentionsSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Example/MentionsSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MentionsSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Example/MentionsSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/MentionsSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Example/MentionsSample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/MentionsSample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Example/MentionsSample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/MentionsSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Example/MentionsSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/MentionsSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Example/MentionsSample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/MentionsSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Example/MentionsSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/MentionsSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Example/MentionsSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/MentionsSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Example/MentionsSample/Info.plist -------------------------------------------------------------------------------- /Example/MentionsSample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Example/MentionsSample/SceneDelegate.swift -------------------------------------------------------------------------------- /Example/MentionsSample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Example/MentionsSample/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/LICENSE -------------------------------------------------------------------------------- /Mentions.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Mentions.podspec -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Screenshots/Demo.gif -------------------------------------------------------------------------------- /Sources/Mentions/MentionParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Sources/Mentions/MentionParser.swift -------------------------------------------------------------------------------- /Sources/Mentions/UIView/MentionLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Sources/Mentions/UIView/MentionLabel.swift -------------------------------------------------------------------------------- /Sources/Mentions/UIView/MentionTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Sources/Mentions/UIView/MentionTextView.swift -------------------------------------------------------------------------------- /Sources/Mentions/Utility/AttributedTextUtility+Append.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Sources/Mentions/Utility/AttributedTextUtility+Append.swift -------------------------------------------------------------------------------- /Sources/Mentions/Utility/String+Prefix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Sources/Mentions/Utility/String+Prefix.swift -------------------------------------------------------------------------------- /Sources/Mentions/Utility/String+Range.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicmon/Mentions/HEAD/Sources/Mentions/Utility/String+Range.swift --------------------------------------------------------------------------------