├── LiveLabel.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── apple.xcuserdatad │ │ └── xcdebugger │ │ └── Expressions.xcexplist └── xcuserdata │ └── apple.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── LiveLabel.xcscheme │ └── xcschememanagement.plist ├── LiveLabel ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── LiveLabel │ ├── LiveLabel.swift │ └── LyricLabel.swift └── ViewController.swift ├── README.md ├── animation.gif └── out.gif /LiveLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/LiveLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LiveLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/LiveLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LiveLabel.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/xcdebugger/Expressions.xcexplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/LiveLabel.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/xcdebugger/Expressions.xcexplist -------------------------------------------------------------------------------- /LiveLabel.xcodeproj/xcuserdata/apple.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/LiveLabel.xcodeproj/xcuserdata/apple.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /LiveLabel.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/LiveLabel.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/LiveLabel.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/LiveLabel.xcscheme -------------------------------------------------------------------------------- /LiveLabel.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/LiveLabel.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LiveLabel/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/LiveLabel/AppDelegate.swift -------------------------------------------------------------------------------- /LiveLabel/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/LiveLabel/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LiveLabel/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/LiveLabel/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LiveLabel/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/LiveLabel/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LiveLabel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/LiveLabel/Info.plist -------------------------------------------------------------------------------- /LiveLabel/LiveLabel/LiveLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/LiveLabel/LiveLabel/LiveLabel.swift -------------------------------------------------------------------------------- /LiveLabel/LiveLabel/LyricLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/LiveLabel/LiveLabel/LyricLabel.swift -------------------------------------------------------------------------------- /LiveLabel/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/LiveLabel/ViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/README.md -------------------------------------------------------------------------------- /animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/animation.gif -------------------------------------------------------------------------------- /out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcao-ai/LiveLabel/HEAD/out.gif --------------------------------------------------------------------------------