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

https://github.com/hituziando/bytebuffer

ByteBuffer in Objective-C.
https://github.com/hituziando/bytebuffer

bytebuffer cocoapods ios library macos

Last synced: 10 months ago
JSON representation

ByteBuffer in Objective-C.

Awesome Lists containing this project

README

          

# ByteBuffer

***ByteBuffer in Objective-C.***

ByteBuffer in ObjC is the byte buffer like [Java's ByteBuffer class](https://developer.android.com/reference/java/nio/ByteBuffer).

## Include in your app

### CocoaPods

ByteBuffer is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:

```ruby
pod "ByteBuffer"
```

### Manual Installation

1. Download latest [ByteBuffer](https://github.com/HituziANDO/ByteBuffer/releases)
1. Drag & Drop ByteBuffer.framework into your Xcode project
1. Add `-all_load` to Build Settings > Linking > Other Linker Flags

## Usage

1. Import the module

**Objective-C**

```objc
#import
```

**Swift**

```swift
import ByteBuffer
```

1. More usage, see my [test code](https://github.com/HituziANDO/ByteBuffer/blob/master/ByteBufferTests/ByteBufferTests.m).