2013-07-08 156 views
0

的例子看註銷? - 解析和Facebook SDK

https://www.parse.com/tutorials/integrating-facebook-in-ios

我如何退出一個終端用戶我不能讓首長或尾巴。

// from the viewcontroller.h file. 

// UINavigationBar button touch handler 

- (void)logoutButtonTouchHandler:(id)sender; 

// And apparently this line -> 

(void)logoutButtonTouchHandler:(id)sender { 

// Logout user, this automatically clears the cache [PFUser logOut]; 

// Return to login view controller. From the view controller.m file. 

[self.navigationController popToRootViewControllerAnimated:YES]; } 

這只是一個小問題,如何註銷按鈕正在生成....因爲它根本沒有被生成!

任何關心照亮現實對我來說?

謝謝。

英里數。

回答

4

這是一個僞代碼,一個指南,供您填寫空白。在這種情況下,空白是按鈕本身,因爲用於註銷的相關信息是[PFUser logOut];代碼,而不是配置應用程序以調用該代碼的方式。

+0

明白了一切。它真的是一團糟!該解決方案實際上是調用[PFuser註銷],但也需要調用按鈕操作來引用它。 – MagicMiles