2012-10-26 70 views
0

當使用NSSharingService彈出窗口時,搜索解決方案以瞭解取消操作時NSSharingService何時關閉。 如果發佈(上NSSharingServiceNamePostOnTwitter NSSharingServiceNamePostOnFacebook或分享Tweet按鈕後)時,你可以使用委託彈出關閉:如何捕獲NSSharingService關閉事件

- (void)sharingService:(NSSharingService *)sharingService didShareItems:(NSArray *)items 

或將共享項目之一:

- (void)sharingService:(NSSharingService *)sharingService willShareItems:(NSArray *)items 

但如何知道什麼時候正在使用關閉按鈕關閉?

回答

0

它應該觸發

- (void)sharingService:(NSSharingService *)sharingService didFailToShareItems:(NSArray *)items error:(NSError *)error 

具有指示用戶取消錯誤值。