Objective-C 框架 NSRails
- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: OS X
- 软件首页: http://nsrails.com/
- 软件文档: https://github.com/dingbat/nsrails
软件介绍
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];
Rapid Web Applications with TurboGears
Mark Ramm、Kevin Dangoor、Gigi Sayfan / Prentice Hall PTR / 2006-11-07 / USD 44.99
"Dear PHP, It's over between us. You can keep the kitchen sink, but I want my MVC. With TurboGears, I was able to shed the most heinous FileMaker Pro legacy 'solu-tion' imaginable. It has relationshi......一起来看看 《Rapid Web Applications with TurboGears》 这本书的介绍吧!
