2011-08-04 57 views

回答

1

望着文檔瀏覽:http://getsharekit.com/docs/

我注意到,它看起來好像你只能在一個時間,這就是爲什麼他們把每種類型的共享不同的標題下共享一個項目,不存在組合標題。 sharekit

爲什麼不創建一個自定義方法來實現所有這些不同的回調爲一個?比如創建一系列項目並一次分享。

- (void)myButtonHandlerAction 
{ 
    // Create an array of items here url, date, etc. 
    NSURL *url = [NSURL URLWithString:@"http://getsharekit.com"]; 
    SHKItem *item = [SHKItem URL:url title:@"ShareKit is Awesome!"]; 

    // Get the ShareKit action sheet 
    SHKActionSheet *actionSheet = [SHKActionSheet actionSheetForItem:item]; 

    /Display the action sheet 
    [actionSheet showFromToolbar:navigationController.toolbar]; 
} 
相關問題