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.
- Host: GitHub
- URL: https://github.com/hituziando/bytebuffer
- Owner: HituziANDO
- License: mit
- Created: 2017-03-25T14:21:31.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-05-05T09:25:44.000Z (almost 5 years ago)
- Last Synced: 2024-11-19T03:03:48.478Z (over 1 year ago)
- Topics: bytebuffer, cocoapods, ios, library, macos
- Language: Objective-C
- Homepage:
- Size: 37.1 KB
- Stars: 4
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).