├── .gitignore ├── LICENSE ├── README.md ├── VCSticker.podspec ├── VCSticker ├── Images.xcassets │ ├── Contents.json │ ├── close.imageset │ │ ├── Contents.json │ │ └── close.png │ └── resize.imageset │ │ ├── Contents.json │ │ └── resize.png ├── VCBaseSticker.swift ├── VCImageSticker.swift ├── VCLabelSticker.swift └── VCStickerUtils.swift ├── VCStickerDemo.xcodeproj └── project.pbxproj ├── VCStickerDemo ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── test.imageset │ │ ├── Contents.json │ │ └── test.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── OCDemoViewController.h ├── OCDemoViewController.m ├── SceneDelegate.swift ├── VCStickerDemo-Bridging-Header.h └── ViewController.swift ├── VCStickerDemoTests ├── Info.plist └── VCStickerDemoTests.swift ├── VCStickerDemoUITests ├── Info.plist └── VCStickerDemoUITests.swift └── preview.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/README.md -------------------------------------------------------------------------------- /VCSticker.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCSticker.podspec -------------------------------------------------------------------------------- /VCSticker/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCSticker/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /VCSticker/Images.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCSticker/Images.xcassets/close.imageset/Contents.json -------------------------------------------------------------------------------- /VCSticker/Images.xcassets/close.imageset/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCSticker/Images.xcassets/close.imageset/close.png -------------------------------------------------------------------------------- /VCSticker/Images.xcassets/resize.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCSticker/Images.xcassets/resize.imageset/Contents.json -------------------------------------------------------------------------------- /VCSticker/Images.xcassets/resize.imageset/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCSticker/Images.xcassets/resize.imageset/resize.png -------------------------------------------------------------------------------- /VCSticker/VCBaseSticker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCSticker/VCBaseSticker.swift -------------------------------------------------------------------------------- /VCSticker/VCImageSticker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCSticker/VCImageSticker.swift -------------------------------------------------------------------------------- /VCSticker/VCLabelSticker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCSticker/VCLabelSticker.swift -------------------------------------------------------------------------------- /VCSticker/VCStickerUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCSticker/VCStickerUtils.swift -------------------------------------------------------------------------------- /VCStickerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VCStickerDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemo/AppDelegate.swift -------------------------------------------------------------------------------- /VCStickerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VCStickerDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /VCStickerDemo/Assets.xcassets/test.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemo/Assets.xcassets/test.imageset/Contents.json -------------------------------------------------------------------------------- /VCStickerDemo/Assets.xcassets/test.imageset/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemo/Assets.xcassets/test.imageset/test.png -------------------------------------------------------------------------------- /VCStickerDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /VCStickerDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VCStickerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemo/Info.plist -------------------------------------------------------------------------------- /VCStickerDemo/OCDemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemo/OCDemoViewController.h -------------------------------------------------------------------------------- /VCStickerDemo/OCDemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemo/OCDemoViewController.m -------------------------------------------------------------------------------- /VCStickerDemo/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemo/SceneDelegate.swift -------------------------------------------------------------------------------- /VCStickerDemo/VCStickerDemo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemo/VCStickerDemo-Bridging-Header.h -------------------------------------------------------------------------------- /VCStickerDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemo/ViewController.swift -------------------------------------------------------------------------------- /VCStickerDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemoTests/Info.plist -------------------------------------------------------------------------------- /VCStickerDemoTests/VCStickerDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemoTests/VCStickerDemoTests.swift -------------------------------------------------------------------------------- /VCStickerDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemoUITests/Info.plist -------------------------------------------------------------------------------- /VCStickerDemoUITests/VCStickerDemoUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/VCStickerDemoUITests/VCStickerDemoUITests.swift -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent111000/VCSticker/HEAD/preview.gif --------------------------------------------------------------------------------