NSRails - Objective-C 框架


MIT
OS X
Objective-C

软件简介

NSRails 是一个轻量级的 Objective-C 框架,为你的类提供一个高级、类 ActiveResource 的 API ,这意味这 CRUD
和其他操作可通过 NSRails 方便实现。

实例继承方法用于远程创建、读取和更新或许销毁远程对象:

Post *newPost = [[Post alloc] init];
newPost.author = @"Me";
newPost.content = @"Some text";
[newPost remoteCreate:&error];       
// This post and its properties created right on a Rails server

类将继承方法用于获取所有对象:

NSArray *allPosts = [Post remoteAll:&error];
Post *postNumber1 = [Post remoteObjectWithID:1 error:&error];