我想将pinterest集成到我的应用程序中。我想在我的应用程序中添加 pinterest 按钮,通过它我可以在 pinterest 上上传图片我参考他们的开发者网站,但这对我没有帮助。
我包含 SDK 并尝试了他们的代码,但它对我不起作用。
#import <Pinterest/Pinterest.h>
UIButton* pinItButton = [Pinterest pinItButton];
[pinItButton addTarget:self
action:@selector(pinIt:)
forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:pinItButton];
- (void)pinIt:(id)sender
{
[_pinterest createPinWithImageURL:@"http://placekitten.com/500/400"
sourceURL:@"http://placekitten.com"
description:@"Pinning from Pin It Demo"];
}
请任何帮助将不胜感激。
提前致谢。