├── .gitignore ├── LICENSE ├── README.md ├── Screenshot.png ├── VerticalText.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── VerticalText ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist └── ViewController.swift └── VerticalTextTests ├── Info.plist └── VerticalTextTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santigz/Vertical-Text-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santigz/Vertical-Text-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santigz/Vertical-Text-iOS/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santigz/Vertical-Text-iOS/HEAD/Screenshot.png -------------------------------------------------------------------------------- /VerticalText.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santigz/Vertical-Text-iOS/HEAD/VerticalText.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VerticalText.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santigz/Vertical-Text-iOS/HEAD/VerticalText.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VerticalText/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santigz/Vertical-Text-iOS/HEAD/VerticalText/AppDelegate.swift -------------------------------------------------------------------------------- /VerticalText/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santigz/Vertical-Text-iOS/HEAD/VerticalText/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /VerticalText/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santigz/Vertical-Text-iOS/HEAD/VerticalText/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VerticalText/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santigz/Vertical-Text-iOS/HEAD/VerticalText/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VerticalText/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santigz/Vertical-Text-iOS/HEAD/VerticalText/Info.plist -------------------------------------------------------------------------------- /VerticalText/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santigz/Vertical-Text-iOS/HEAD/VerticalText/ViewController.swift -------------------------------------------------------------------------------- /VerticalTextTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santigz/Vertical-Text-iOS/HEAD/VerticalTextTests/Info.plist -------------------------------------------------------------------------------- /VerticalTextTests/VerticalTextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santigz/Vertical-Text-iOS/HEAD/VerticalTextTests/VerticalTextTests.swift --------------------------------------------------------------------------------