Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dungntm58/rcstickerview
Add a label, image, another custom view as a sticker view.
https://github.com/dungntm58/rcstickerview
ios sticker swift ui-components
Last synced: about 1 month ago
JSON representation
Add a label, image, another custom view as a sticker view.
- Host: GitHub
- URL: https://github.com/dungntm58/rcstickerview
- Owner: dungntm58
- License: mit
- Created: 2018-11-02T09:19:33.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-19T09:49:40.000Z (4 months ago)
- Last Synced: 2024-11-22T10:03:47.012Z (about 1 month ago)
- Topics: ios, sticker, swift, ui-components
- Language: Swift
- Homepage:
- Size: 96.7 KB
- Stars: 12
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RCStickerView
[![CI Status](https://img.shields.io/travis/dungntm58/RCStickerView.svg?style=flat)](https://travis-ci.org/dungntm58/RCStickerView)
[![Version](https://img.shields.io/cocoapods/v/RCStickerView.svg?style=flat)](https://cocoapods.org/pods/RCStickerView)
[![License](https://img.shields.io/cocoapods/l/RCStickerView.svg?style=flat)](https://cocoapods.org/pods/RCStickerView)
[![Platform](https://img.shields.io/cocoapods/p/RCStickerView.svg?style=flat)](https://cocoapods.org/pods/RCStickerView)## Example
To run the example project, clone the repo, and run `pod install` from the Example directory first.
## Requirements
- Xcode 10.
- Swift 4.0.
- iOS 9.0 or higher.## Installation
RCStickerView is available through [CocoaPods](https://cocoapods.org). To install
it, simply add the following line to your Podfile:```ruby
pod 'RCStickerView'
```Then, run the following command:
```bash
$ pod install
```## Usage
See the `Example` project for more details.
```swift
override func viewDidLoad() {
super.viewDidLoad()
let testView = UIView(frame: CGRect(x: 0, y: 0, width: 150, height: 100))
testView.backgroundColor = .red
let stickerView = RCStickerView(contentView: testView)
stickerView.center = self.view.center
stickerView.delegate = self
stickerView.outlineBorderColor = .blue
stickerView.set(image: UIImage(named: "Close"), for: .close)
stickerView.set(image: UIImage(named: "Rotate"), for: .rotate)
stickerView.set(image: UIImage(named: "Flip"), for: .flipX)
stickerView.isEnableFlipY = false
stickerView.handlerSize = 40
self.view.addSubview(stickerView)
}
```## Inspiration
RCStickerView is heavily inspired by CHTStickerView.
## Author
RobertNguyen, [email protected]
## License
RCStickerView is available under the MIT license. See the LICENSE file for more info.