Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.