我需要一些帮助。我正在使用 Pinterest API 从 iOS 应用程序添加一个新的 pin。我的代码如下:
NSURL *imageURL = [NSURL URLWithString:self.myUrl];
NSURL *sourceURL = [NSURL URLWithString:self.myUrl];
[self.pinterest createPinWithImageURL:imageURL sourceURL:sourceURL description:[NSString stringWithFormat:@" Try\n %@",self.comments.text]];
现在我需要检测何时(以及是否)创建了 pin。可能吗?我无法在文档中找到任何信息。