NSSNotifcationをiPhoneアプリの別のViewControllerに送信していますが、そのオブザーバーメソッドは2回通知されます。
このコードを使用して通知を投稿しました
[[NSNotificationCenter defaultCenter] postNotificationName:@"updateStatusOnFacebook" object:nil userInfo:nil];
オブザーバーを追加しました
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(postToWall) name:@"updateStatusOnFacebook" object:nil];