├── .gitignore ├── LICENSE ├── README.md ├── StringAttribute.podspec ├── StringAttribute.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcshareddata │ └── xcschemes │ │ └── StringAttribute.xcscheme └── xcuserdata │ └── hirose.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── StringAttribute.xcworkspace └── contents.xcworkspacedata ├── StringAttribute ├── Info.plist ├── Sources │ ├── AttributedStringBuilder.swift │ ├── NSAttributedString+StringAttributeBuilder.swift │ ├── Paragraph.swift │ ├── ParagraphStyle.swift │ ├── ParagraphStyleBuilder.swift │ ├── String+Attributed.swift │ ├── String+NSRange.swift │ ├── StringAttribute.swift │ ├── StringMatchPositionType.swift │ └── UISegmentedControl+StringAttribute.swift └── StringAttribute.h ├── StringAttributePlayground.playground ├── Contents.swift ├── contents.xcplayground └── timeline.xctimeline ├── StringAttributeTests ├── Info.plist └── StringAttributeTests.swift └── StringAttributedDemo ├── Podfile ├── Podfile.lock ├── StringAttributedDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── hirose.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── StringAttributedDemo ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json └── face.imageset │ ├── Contents.json │ └── face.jpg ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── TableViewCell.swift ├── TableViewCell.xib └── ViewController.swift /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.xcworkspace 3 | Pods/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/README.md -------------------------------------------------------------------------------- /StringAttribute.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute.podspec -------------------------------------------------------------------------------- /StringAttribute.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /StringAttribute.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /StringAttribute.xcodeproj/xcshareddata/xcschemes/StringAttribute.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute.xcodeproj/xcshareddata/xcschemes/StringAttribute.xcscheme -------------------------------------------------------------------------------- /StringAttribute.xcodeproj/xcuserdata/hirose.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute.xcodeproj/xcuserdata/hirose.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /StringAttribute.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /StringAttribute/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute/Info.plist -------------------------------------------------------------------------------- /StringAttribute/Sources/AttributedStringBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute/Sources/AttributedStringBuilder.swift -------------------------------------------------------------------------------- /StringAttribute/Sources/NSAttributedString+StringAttributeBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute/Sources/NSAttributedString+StringAttributeBuilder.swift -------------------------------------------------------------------------------- /StringAttribute/Sources/Paragraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute/Sources/Paragraph.swift -------------------------------------------------------------------------------- /StringAttribute/Sources/ParagraphStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute/Sources/ParagraphStyle.swift -------------------------------------------------------------------------------- /StringAttribute/Sources/ParagraphStyleBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute/Sources/ParagraphStyleBuilder.swift -------------------------------------------------------------------------------- /StringAttribute/Sources/String+Attributed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute/Sources/String+Attributed.swift -------------------------------------------------------------------------------- /StringAttribute/Sources/String+NSRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute/Sources/String+NSRange.swift -------------------------------------------------------------------------------- /StringAttribute/Sources/StringAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute/Sources/StringAttribute.swift -------------------------------------------------------------------------------- /StringAttribute/Sources/StringMatchPositionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute/Sources/StringMatchPositionType.swift -------------------------------------------------------------------------------- /StringAttribute/Sources/UISegmentedControl+StringAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute/Sources/UISegmentedControl+StringAttribute.swift -------------------------------------------------------------------------------- /StringAttribute/StringAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttribute/StringAttribute.h -------------------------------------------------------------------------------- /StringAttributePlayground.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributePlayground.playground/Contents.swift -------------------------------------------------------------------------------- /StringAttributePlayground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributePlayground.playground/contents.xcplayground -------------------------------------------------------------------------------- /StringAttributePlayground.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributePlayground.playground/timeline.xctimeline -------------------------------------------------------------------------------- /StringAttributeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributeTests/Info.plist -------------------------------------------------------------------------------- /StringAttributeTests/StringAttributeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributeTests/StringAttributeTests.swift -------------------------------------------------------------------------------- /StringAttributedDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/Podfile -------------------------------------------------------------------------------- /StringAttributedDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/Podfile.lock -------------------------------------------------------------------------------- /StringAttributedDemo/StringAttributedDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/StringAttributedDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /StringAttributedDemo/StringAttributedDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/StringAttributedDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /StringAttributedDemo/StringAttributedDemo.xcodeproj/xcuserdata/hirose.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/StringAttributedDemo.xcodeproj/xcuserdata/hirose.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /StringAttributedDemo/StringAttributedDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/StringAttributedDemo/AppDelegate.swift -------------------------------------------------------------------------------- /StringAttributedDemo/StringAttributedDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/StringAttributedDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /StringAttributedDemo/StringAttributedDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/StringAttributedDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /StringAttributedDemo/StringAttributedDemo/Assets.xcassets/face.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/StringAttributedDemo/Assets.xcassets/face.imageset/Contents.json -------------------------------------------------------------------------------- /StringAttributedDemo/StringAttributedDemo/Assets.xcassets/face.imageset/face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/StringAttributedDemo/Assets.xcassets/face.imageset/face.jpg -------------------------------------------------------------------------------- /StringAttributedDemo/StringAttributedDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/StringAttributedDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /StringAttributedDemo/StringAttributedDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/StringAttributedDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /StringAttributedDemo/StringAttributedDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/StringAttributedDemo/Info.plist -------------------------------------------------------------------------------- /StringAttributedDemo/StringAttributedDemo/TableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/StringAttributedDemo/TableViewCell.swift -------------------------------------------------------------------------------- /StringAttributedDemo/StringAttributedDemo/TableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/StringAttributedDemo/TableViewCell.xib -------------------------------------------------------------------------------- /StringAttributedDemo/StringAttributedDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bannzai/StringAttribute/HEAD/StringAttributedDemo/StringAttributedDemo/ViewController.swift --------------------------------------------------------------------------------