0

看例子

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

1 回答 1

4

它是伪代码,一个指南,供你填空。在这种情况下,空白是按钮本身,因为注销的相关信息是[PFUser logOut];代码,而不是您如何配置应用程序以调用该代码。

于 2013-07-08T18:34:22.640 回答