ACAccountStoreDidChangeNotification被重复调用
我在我的iOS应用程序中使用Facebook来发布score.While登录到Facebook我检查是否在我的iPhone设置配置Facebook帐户,如果它没有配置我给一条消息作为“配置您的Facebook登录iphone设置”。 所以当用户配置它时,我通过使用“ ACAccountStoreDidChangeNotification ”来通知我的应用程序。 我的问题是这个通知被多次调用,即使用户只更改过一次帐户
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(sharingStatus)name:ACAccountStoreDidChangeNotification object:nil]; 这是我注册通知的方式
}任何人都可以请帮助我为什么通知ACAccountStoreDidChangeNotification多次被调用。 我跟着这个链接在iOS 6+中为Facebook和Twitter处理ACAccountStoreDidChangeNotification,但对我没有用。 谢谢
链接地址: http://www.djcxy.com/p/66725.html上一篇: ACAccountStoreDidChangeNotification is called repeatedly
下一篇: UITextField textFieldDidBeginEditing: Not called on the first selection