ライブラリを使用してCocoaLibSpotify
、SpotifyAPIを利用するiOSアプリケーションを開発しています。欲しいところにあるのですが、少し問題があります。
ユーザーが[Spotifyのログアウト]ボタンをタッチすると、次のコードが実行されます。
-(IBAction)logoutButtonTouched:(id)sender
{
// Clear out the user's settings that I am saving.
NSString *appDomain = [[NSBundle mainBundle] bundleIdentifier];
[[NSUserDefaults standardUserDefaults] removePersistentDomainForName:appDomain];
[[SPSession sharedSession] logout:^(void) {
SPLoginViewController *controller = [SPLoginViewController loginControllerForSession:[SPSession sharedSession]];
controller.allowsCancel = NO;
}];
}
これは確かにユーザーをログアウトして表示しますSPLoginViewController
が、私の問題は、ユーザー名とパスワードのフィールドに、ユーザーがログインしたときの値がまだ含まれていることです。を表示するときにこれらのフィールドをクリアする方法を知っている人はいSPLoginViewController
ますか?