├── Classes ├── StrikeThroughLabel.h ├── StrikeThroughLabel.m ├── StrikeThroughLabelAppDelegate.h └── StrikeThroughLabelAppDelegate.m ├── StrikeThroughLabel-Info.plist ├── StrikeThroughLabel-Prefix.pch ├── StrikeThroughLabel-main.m ├── StrikeThroughLabel.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── scott.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceState.xcuserstate └── xcuserdata │ └── scott.xcuserdatad │ └── xcschemes │ ├── StrikeThroughLabel.xcscheme │ └── xcschememanagement.plist └── en.lproj ├── InfoPlist.strings └── MainWindow.xib /Classes/StrikeThroughLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shodgin/StrikeThroughLabel/HEAD/Classes/StrikeThroughLabel.h -------------------------------------------------------------------------------- /Classes/StrikeThroughLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shodgin/StrikeThroughLabel/HEAD/Classes/StrikeThroughLabel.m -------------------------------------------------------------------------------- /Classes/StrikeThroughLabelAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shodgin/StrikeThroughLabel/HEAD/Classes/StrikeThroughLabelAppDelegate.h -------------------------------------------------------------------------------- /Classes/StrikeThroughLabelAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shodgin/StrikeThroughLabel/HEAD/Classes/StrikeThroughLabelAppDelegate.m -------------------------------------------------------------------------------- /StrikeThroughLabel-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shodgin/StrikeThroughLabel/HEAD/StrikeThroughLabel-Info.plist -------------------------------------------------------------------------------- /StrikeThroughLabel-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shodgin/StrikeThroughLabel/HEAD/StrikeThroughLabel-Prefix.pch -------------------------------------------------------------------------------- /StrikeThroughLabel-main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shodgin/StrikeThroughLabel/HEAD/StrikeThroughLabel-main.m -------------------------------------------------------------------------------- /StrikeThroughLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shodgin/StrikeThroughLabel/HEAD/StrikeThroughLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /StrikeThroughLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shodgin/StrikeThroughLabel/HEAD/StrikeThroughLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /StrikeThroughLabel.xcodeproj/project.xcworkspace/xcuserdata/scott.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shodgin/StrikeThroughLabel/HEAD/StrikeThroughLabel.xcodeproj/project.xcworkspace/xcuserdata/scott.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /StrikeThroughLabel.xcodeproj/project.xcworkspace/xcuserdata/scott.xcuserdatad/WorkspaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shodgin/StrikeThroughLabel/HEAD/StrikeThroughLabel.xcodeproj/project.xcworkspace/xcuserdata/scott.xcuserdatad/WorkspaceState.xcuserstate -------------------------------------------------------------------------------- /StrikeThroughLabel.xcodeproj/xcuserdata/scott.xcuserdatad/xcschemes/StrikeThroughLabel.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shodgin/StrikeThroughLabel/HEAD/StrikeThroughLabel.xcodeproj/xcuserdata/scott.xcuserdatad/xcschemes/StrikeThroughLabel.xcscheme -------------------------------------------------------------------------------- /StrikeThroughLabel.xcodeproj/xcuserdata/scott.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shodgin/StrikeThroughLabel/HEAD/StrikeThroughLabel.xcodeproj/xcuserdata/scott.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /en.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shodgin/StrikeThroughLabel/HEAD/en.lproj/MainWindow.xib --------------------------------------------------------------------------------