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

https://github.com/fromkk/screenrecord


https://github.com/fromkk/screenrecord

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# ScreenRecord

ScreenRecord is framework work on iOS with Swift.

![capture](./recorded.gif)

## Requirements

- iOS 8.0 or later
- Swift 2.2
- Carthage

## Install

add line to **Cartfile**

```
github "fromkk/ScreenRecord" == 0.0.2
```

and `carthage update` and Project setting. ([Reference](https://github.com/carthage/carthage))

## Usage

```swift
import ScreenRecord

// start
ScreenRecord.shared.start()

// end
ScreenRecord.shared.stop({ (url: NSURL?) in
if let url = url {
//do something
}
})
```