Tag: curl

iBook翻页交易

我试图重新创build一个PDF阅读器应用程序横向模式的页面转换的iBook。 我只需要animation,而不是像iBook app那样的触摸处理; 用户用一个简单的滑动翻页。 我已经尝试了不同的示例代码,包括叶子,但我找不到任何简单的东西。 任何人都可以帮助我创build这个简单的animation,或者有一个简单的方法来重新创buildiBook转换?

在Objective-C中执行基于curl的操作

我正在尝试在Objective-C中实现以下内容: curl -X POST -u "<application key>:<master secret>" \ -H "Content-Type: application/json" \ –data '{"aps": {"badge": 1, "alert": "The quick brown fox jumps over the lazy dog."}, "aliases": ["12345"]}' \ https://go.urbanairship.com/api/push/ 有什么样的图书馆,我可以使用,实现这一点? 很明显,我已经准备好了所有的价值,并且提出了我的要求,但我不确定如何在Objective-C中做到这一点。 我正在使用TouchJSON,但是我不太确定如何构build正确的JSON负载,并将其发布到服务器(也是我更喜欢这是一个asynchronous请求,而不是同步)。 NSError *theError = NULL; NSArray *keys = [NSArray arrayWithObjects:@"aps", @"badge", @"alert", @"aliases", nil]; NSArray *objects = [NSArray arrayWithObjects:?, ?, ?, ?, […]

Objective-C等价于curl请求

我试图在Objective-C中操作这个curl请求: curl -u username:password "http://www.example.com/myapi/getdata" 我已经实现了以下,我得到一个数据获取错误Domain=kCFErrorDomainCFNetwork Code=303与NSErrorFailingURLKey=http://www.example.com/myapi/getdata : // Make a call to the API to pull out the categories NSURL *url = [NSURL URLWithString:@"http://www.example.com/myapi/getdata"]; NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init]; // Create the username:password string for the request NSString *loginString = [NSString stringWithFormat:@"%@:%@", API_USERNAME, API_PASSWORD]; // Create the authorisation string from the username password […]