众所周知,Objective-C 更多用于开发 iOS 和 Mac 上的应用。而日前国外一个新发布的网站实现了将 Objective-C 语言应用搬到了云端,目前处于公测阶段,主要特性:
下面是一个实现了自定义 HTTP 处理器的示例代码:
#import "CloudApp.h" #import@implementation CloudApp // Adding a custom HTTP Handler is easy + (void)finishLaunching { [self handleRequestsWithMethod:@"GET" matchingPath:@"/path" // can contain patterns withBlock:^(OCFRequest *request) { [request respondWith:@"hello"]; }]; } @end
网站首页(点击访问)