Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 889 Bytes

README.md

File metadata and controls

40 lines (25 loc) · 889 Bytes

ByteBuffer

ByteBuffer in Objective-C.

ByteBuffer in ObjC is the byte buffer like Java's ByteBuffer class.

Include in your app

CocoaPods

ByteBuffer is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "ByteBuffer"

Manual Installation

  1. Download latest ByteBuffer
  2. Drag & Drop ByteBuffer.framework into your Xcode project
  3. Add -all_load to Build Settings > Linking > Other Linker Flags

Usage

  1. Import the module

    Objective-C

    #import <ByteBuffer/ByteBuffer.h>

    Swift

    import ByteBuffer
  2. More usage, see my test code.