iOS Pinterest API共享回调

时间:2013-10-21 10:38:55

标签: ios pinterest

我需要一些帮助。我正在使用Pinterest API从iOS应用添加新引脚。我的代码如下:

 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]];

现在我需要检测何时(以及是否)创建了引脚。可能吗?我无法在文档中找到任何信息。

1 个答案:

答案 0 :(得分:0)

不,这是不可能的。 createPinWithImageURL:sourceURL:description:没有返回值,并且您无法实现任何协议来接收刚刚创建的引脚的标识符。

相关问题