gitextract_abjvbfjq/ ├── .gitignore ├── HYLabel/ │ ├── HYLabel/ │ │ ├── HYLabel.h │ │ └── Info.plist │ ├── HYLabel.xcodeproj/ │ │ └── project.pbxproj │ └── Source/ │ └── HYLabel.swift ├── HYLabel.podspec ├── HYLabel.xcworkspace/ │ └── contents.xcworkspacedata ├── HYLabelDemo-Swift/ │ ├── HYLabelDemo-Swift/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift │ └── HYLabelDemo-Swift.xcodeproj/ │ └── project.pbxproj ├── HYLabelDemoOC/ │ ├── HYLabelDemoOC/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── Source/ │ │ │ └── HYLabel.swift │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ └── HYLabelDemoOC.xcodeproj/ │ └── project.pbxproj ├── LICENSE └── README.md