我需要一些帮助。我正在使用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]];
现在我需要检测何时(以及是否)创建了引脚。可能吗?我无法在文档中找到任何信息。
答案 0 :(得分:0)
不,这是不可能的。 createPinWithImageURL:sourceURL:description:
没有返回值,并且您无法实现任何协议来接收刚刚创建的引脚的标识符。