├── FOText ├── FOTextLayout.h ├── FOTextLayout.m ├── FOTextLine.h ├── FOTextLine.m ├── FOTextUtilities.h ├── FOTextUtilities.m ├── FOTextView.h └── FOTextView.m ├── FOTextLayout.podspec ├── LICENSE ├── README.md ├── VerticalTextDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── Jhondge.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── golven.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── l.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── shenyi.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── Jhondge.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── VerticalTextDemo.xcscheme │ │ └── xcschememanagement.plist │ ├── golven.xcuserdatad │ └── xcschemes │ │ ├── VerticalTextDemo.xcscheme │ │ └── xcschememanagement.plist │ ├── l.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── shenyi.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── VerticalTextDemo.xcscheme │ └── xcschememanagement.plist ├── VerticalTextDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── VerticalTextDemoTests ├── Info.plist └── VerticalTextDemoTests.m ├── VerticalTextDemoUITests ├── Info.plist └── VerticalTextDemoUITests.m └── screenCapture.gif /FOText/FOTextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/FOText/FOTextLayout.h -------------------------------------------------------------------------------- /FOText/FOTextLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/FOText/FOTextLayout.m -------------------------------------------------------------------------------- /FOText/FOTextLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/FOText/FOTextLine.h -------------------------------------------------------------------------------- /FOText/FOTextLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/FOText/FOTextLine.m -------------------------------------------------------------------------------- /FOText/FOTextUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/FOText/FOTextUtilities.h -------------------------------------------------------------------------------- /FOText/FOTextUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/FOText/FOTextUtilities.m -------------------------------------------------------------------------------- /FOText/FOTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/FOText/FOTextView.h -------------------------------------------------------------------------------- /FOText/FOTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/FOText/FOTextView.m -------------------------------------------------------------------------------- /FOTextLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/FOTextLayout.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/README.md -------------------------------------------------------------------------------- /VerticalTextDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VerticalTextDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VerticalTextDemo.xcodeproj/project.xcworkspace/xcuserdata/Jhondge.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo.xcodeproj/project.xcworkspace/xcuserdata/Jhondge.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /VerticalTextDemo.xcodeproj/project.xcworkspace/xcuserdata/golven.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo.xcodeproj/project.xcworkspace/xcuserdata/golven.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /VerticalTextDemo.xcodeproj/project.xcworkspace/xcuserdata/l.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo.xcodeproj/project.xcworkspace/xcuserdata/l.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /VerticalTextDemo.xcodeproj/project.xcworkspace/xcuserdata/shenyi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo.xcodeproj/project.xcworkspace/xcuserdata/shenyi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /VerticalTextDemo.xcodeproj/xcuserdata/Jhondge.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo.xcodeproj/xcuserdata/Jhondge.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /VerticalTextDemo.xcodeproj/xcuserdata/Jhondge.xcuserdatad/xcschemes/VerticalTextDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo.xcodeproj/xcuserdata/Jhondge.xcuserdatad/xcschemes/VerticalTextDemo.xcscheme -------------------------------------------------------------------------------- /VerticalTextDemo.xcodeproj/xcuserdata/Jhondge.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo.xcodeproj/xcuserdata/Jhondge.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VerticalTextDemo.xcodeproj/xcuserdata/golven.xcuserdatad/xcschemes/VerticalTextDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo.xcodeproj/xcuserdata/golven.xcuserdatad/xcschemes/VerticalTextDemo.xcscheme -------------------------------------------------------------------------------- /VerticalTextDemo.xcodeproj/xcuserdata/golven.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo.xcodeproj/xcuserdata/golven.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VerticalTextDemo.xcodeproj/xcuserdata/l.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo.xcodeproj/xcuserdata/l.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VerticalTextDemo.xcodeproj/xcuserdata/shenyi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo.xcodeproj/xcuserdata/shenyi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /VerticalTextDemo.xcodeproj/xcuserdata/shenyi.xcuserdatad/xcschemes/VerticalTextDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo.xcodeproj/xcuserdata/shenyi.xcuserdatad/xcschemes/VerticalTextDemo.xcscheme -------------------------------------------------------------------------------- /VerticalTextDemo.xcodeproj/xcuserdata/shenyi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo.xcodeproj/xcuserdata/shenyi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /VerticalTextDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo/AppDelegate.h -------------------------------------------------------------------------------- /VerticalTextDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo/AppDelegate.m -------------------------------------------------------------------------------- /VerticalTextDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VerticalTextDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /VerticalTextDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VerticalTextDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo/Info.plist -------------------------------------------------------------------------------- /VerticalTextDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo/ViewController.h -------------------------------------------------------------------------------- /VerticalTextDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo/ViewController.m -------------------------------------------------------------------------------- /VerticalTextDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemo/main.m -------------------------------------------------------------------------------- /VerticalTextDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemoTests/Info.plist -------------------------------------------------------------------------------- /VerticalTextDemoTests/VerticalTextDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemoTests/VerticalTextDemoTests.m -------------------------------------------------------------------------------- /VerticalTextDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemoUITests/Info.plist -------------------------------------------------------------------------------- /VerticalTextDemoUITests/VerticalTextDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/VerticalTextDemoUITests/VerticalTextDemoUITests.m -------------------------------------------------------------------------------- /screenCapture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SYLuffy/FOTextLayout/HEAD/screenCapture.gif --------------------------------------------------------------------------------