Skip to content
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.

Latest commit

 

History

History
33 lines (24 loc) · 1.1 KB

README.md

File metadata and controls

33 lines (24 loc) · 1.1 KB

ReactiveCocoaIO

Overview

ReactiveCocoaIO is a framework for accessing and manipulating a file system through signals, based on ReactiveCocoa.

It's composed of two main class hierarchies:

  • RCIOFileManager exposes asynchronous reactive interfaces for listing directory contents and managing files and directories.

  • RCIOItem and its two subclasses RCIOFile and RCIODirectory expose methods for creating files and directories and manipulating their contents and metadata.

Usage

  1. Add ReactiveCocoaIO.xcodeproj and External/ReactiveCocoa/ReactiveCocoaFramework/ReactiveCocoa.xcodeproj (or your own ReactiveCocoa project file) to your project or workspace.

  2. In your target's link phase add:

  3. ReactiveCocoaIO

  4. ReactiveCocoa

  5. Foundation

  6. CoreServices (only on OS X)

  7. If you're building an iOS app you might have add the libraries to your target's dependencies too, Xcode isn't too good at figuring those out.