2013-03-20 80 views
0

使用Sharekit 2.0 Twitter時,是否可以一次發送多個圖像?通過查看文檔可能看起來不可能,因爲每次只能分享一個項目。我是對的?或者還有另一種方法可以嘗試?Sharekit 2.0 Twitter一次發送多個圖像

非常感謝。

回答

0

你是對的,不幸的是。 ShareKit一次只能發送一張照片。但是,你可以嘗試使用shareKit的便捷方法

#import "SHKReadItLater.h" //include the service's header at the top of your class 

// Create the item to share (in this example, a url) 
NSURL *url = [NSURL URLWithString:@"http://getsharekit.com"]; 
SHKItem *item = [SHKItem URL:url title:@"ShareKit is Awesome!"]; 

// Share the item 
[SHKReadItLater shareItem:item]; 

發送默默自動分享功能(見FAQ)更多的圖片。確保你使用pre-ios twitter(通過配置器中的設置),因爲ios twitter無法處理autoshare。我承認,這不是很好的解決方案,因爲您必須創建SHKItem併爲每個圖像打開單獨的連接。