├── README.md ├── XPQLabelDome.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── xiepanqi.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── xiepanqi.xcuserdatad │ └── xcschemes │ │ ├── XPQLabelDome.xcscheme │ │ └── xcschememanagement.plist │ └── zhangzhiryuu.xcuserdatad │ └── xcschemes │ ├── XPQLabelDome.xcscheme │ └── xcschememanagement.plist ├── XPQLabelDome ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m ├── XPQLabel │ ├── XPQLabel.h │ ├── XPQLabel.m │ ├── XPQLabelPath.h │ ├── XPQLabelPath.mm │ └── XPQPath │ │ ├── XPQPath.cpp │ │ └── XPQPath.h └── main.m └── domeImage ├── alignmentDome.gif ├── animationDome1.gif ├── animationDome2.gif ├── classDiagram.png ├── gestureDome.gif ├── pathDome.gif ├── ratonDome.gif └── setText.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/README.md -------------------------------------------------------------------------------- /XPQLabelDome.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XPQLabelDome.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XPQLabelDome.xcodeproj/project.xcworkspace/xcuserdata/xiepanqi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome.xcodeproj/project.xcworkspace/xcuserdata/xiepanqi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /XPQLabelDome.xcodeproj/xcuserdata/xiepanqi.xcuserdatad/xcschemes/XPQLabelDome.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome.xcodeproj/xcuserdata/xiepanqi.xcuserdatad/xcschemes/XPQLabelDome.xcscheme -------------------------------------------------------------------------------- /XPQLabelDome.xcodeproj/xcuserdata/xiepanqi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome.xcodeproj/xcuserdata/xiepanqi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /XPQLabelDome.xcodeproj/xcuserdata/zhangzhiryuu.xcuserdatad/xcschemes/XPQLabelDome.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome.xcodeproj/xcuserdata/zhangzhiryuu.xcuserdatad/xcschemes/XPQLabelDome.xcscheme -------------------------------------------------------------------------------- /XPQLabelDome.xcodeproj/xcuserdata/zhangzhiryuu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome.xcodeproj/xcuserdata/zhangzhiryuu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /XPQLabelDome/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome/AppDelegate.h -------------------------------------------------------------------------------- /XPQLabelDome/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome/AppDelegate.m -------------------------------------------------------------------------------- /XPQLabelDome/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /XPQLabelDome/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /XPQLabelDome/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /XPQLabelDome/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome/Info.plist -------------------------------------------------------------------------------- /XPQLabelDome/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome/ViewController.h -------------------------------------------------------------------------------- /XPQLabelDome/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome/ViewController.m -------------------------------------------------------------------------------- /XPQLabelDome/XPQLabel/XPQLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome/XPQLabel/XPQLabel.h -------------------------------------------------------------------------------- /XPQLabelDome/XPQLabel/XPQLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome/XPQLabel/XPQLabel.m -------------------------------------------------------------------------------- /XPQLabelDome/XPQLabel/XPQLabelPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome/XPQLabel/XPQLabelPath.h -------------------------------------------------------------------------------- /XPQLabelDome/XPQLabel/XPQLabelPath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome/XPQLabel/XPQLabelPath.mm -------------------------------------------------------------------------------- /XPQLabelDome/XPQLabel/XPQPath/XPQPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome/XPQLabel/XPQPath/XPQPath.cpp -------------------------------------------------------------------------------- /XPQLabelDome/XPQLabel/XPQPath/XPQPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome/XPQLabel/XPQPath/XPQPath.h -------------------------------------------------------------------------------- /XPQLabelDome/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/XPQLabelDome/main.m -------------------------------------------------------------------------------- /domeImage/alignmentDome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/domeImage/alignmentDome.gif -------------------------------------------------------------------------------- /domeImage/animationDome1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/domeImage/animationDome1.gif -------------------------------------------------------------------------------- /domeImage/animationDome2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/domeImage/animationDome2.gif -------------------------------------------------------------------------------- /domeImage/classDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/domeImage/classDiagram.png -------------------------------------------------------------------------------- /domeImage/gestureDome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/domeImage/gestureDome.gif -------------------------------------------------------------------------------- /domeImage/pathDome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/domeImage/pathDome.gif -------------------------------------------------------------------------------- /domeImage/ratonDome.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/domeImage/ratonDome.gif -------------------------------------------------------------------------------- /domeImage/setText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiepanqi/XPQLabel/HEAD/domeImage/setText.png --------------------------------------------------------------------------------