尝试使用 Twitter+OAuth API 从 iOS 应用程序发送推文时如何引入错误?
如何使用 Twitter+OAuth API 正确设置状态更新的回调方法? (http://github.com/bengottlieb/Twitter-OAuth-iPhone)
现在我使用以下内容来确定请求是否成功:
- (void)requestSucceeded:(NSString *)connectionIdentifier {
NSLog(@"Statuses Sent");
//[loadingActionSheet dismissWithClickedButtonIndex:0 animated:YES];
//[loadingActionSheet release];
}
我将使用什么来确定请求是否失败?
How do I properly setup the callback method for a status update using the Twitter+OAuth API? (http://github.com/bengottlieb/Twitter-OAuth-iPhone)
Right now I'm using the following to determine if a request succeeded:
- (void)requestSucceeded:(NSString *)connectionIdentifier {
NSLog(@"Statuses Sent");
//[loadingActionSheet dismissWithClickedButtonIndex:0 animated:YES];
//[loadingActionSheet release];
}
What would I use to determine if a request failed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
阅读文档有帮助,实现了以下方法来解决我的问题:
Reading docs helps, implemented the following to solve my problem: