├── .gitignore ├── KRWordWrapLabel.podspec ├── KRWordWrapLabel ├── Info.plist └── KRWordWrapLabel.h ├── KRWordWrapLabelDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── KRWordWrapLabel.xcscheme ├── KRWordWrapLabelDemo.xcworkspace └── contents.xcworkspacedata ├── KRWordWrapLabelDemo ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── KRWordWrapLabelDemo-Bridging-Header.h └── ViewController.swift ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── Sources └── KRWordWrapLabel.swift └── screenshot └── KRWordWrapLabel.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/.gitignore -------------------------------------------------------------------------------- /KRWordWrapLabel.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/KRWordWrapLabel.podspec -------------------------------------------------------------------------------- /KRWordWrapLabel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/KRWordWrapLabel/Info.plist -------------------------------------------------------------------------------- /KRWordWrapLabel/KRWordWrapLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/KRWordWrapLabel/KRWordWrapLabel.h -------------------------------------------------------------------------------- /KRWordWrapLabelDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/KRWordWrapLabelDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KRWordWrapLabelDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/KRWordWrapLabelDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KRWordWrapLabelDemo.xcodeproj/xcshareddata/xcschemes/KRWordWrapLabel.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/KRWordWrapLabelDemo.xcodeproj/xcshareddata/xcschemes/KRWordWrapLabel.xcscheme -------------------------------------------------------------------------------- /KRWordWrapLabelDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/KRWordWrapLabelDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /KRWordWrapLabelDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/KRWordWrapLabelDemo/AppDelegate.swift -------------------------------------------------------------------------------- /KRWordWrapLabelDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/KRWordWrapLabelDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /KRWordWrapLabelDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/KRWordWrapLabelDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /KRWordWrapLabelDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/KRWordWrapLabelDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /KRWordWrapLabelDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/KRWordWrapLabelDemo/Info.plist -------------------------------------------------------------------------------- /KRWordWrapLabelDemo/KRWordWrapLabelDemo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/KRWordWrapLabelDemo/KRWordWrapLabelDemo-Bridging-Header.h -------------------------------------------------------------------------------- /KRWordWrapLabelDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/KRWordWrapLabelDemo/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/README.md -------------------------------------------------------------------------------- /Sources/KRWordWrapLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/Sources/KRWordWrapLabel.swift -------------------------------------------------------------------------------- /screenshot/KRWordWrapLabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inkyfox/KRWordWrapLabel/HEAD/screenshot/KRWordWrapLabel.gif --------------------------------------------------------------------------------