我成功從服務器獲取結果。 註冊是成功我想設置主頁爲默認。如何設置主頁在用戶成功註冊後有默認頁面
此代碼我越來越喜歡響應:
Data = {"response":"yes","success":"This mobile registered successfully"}
如果響應是肯定的我想重定向到我的主視圖控制器。
當用戶點擊我的應用程序時,註冊成功時,我的主頁應該打開。
謝謝。
我成功從服務器獲取結果。 註冊是成功我想設置主頁爲默認。如何設置主頁在用戶成功註冊後有默認頁面
此代碼我越來越喜歡響應:
Data = {"response":"yes","success":"This mobile registered successfully"}
如果響應是肯定的我想重定向到我的主視圖控制器。
當用戶點擊我的應用程序時,註冊成功時,我的主頁應該打開。
謝謝。
當你有成功與響應設置有
[[NSUserDefaults standardUserDefaults]setObject:@"Y" forKey:@"login"];
[[NSUserDefaults standardUserDefaults] synchronize];
然後在應用didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
if ([[[NSUserDefaults standardUserDefaults] stringForKey:@"login"] isEqualToString:@"Y"])
{
CallViewController *loginController=[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"CallViewController"];
UINavigationController *navController=[[UINavigationControlleralloc]initWithRootViewController:loginController];
[navController setNavigationBarHidden:YES];
self.window.rootViewController=navController;
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
}
在我的代碼中沒有登錄鍵.. @ ishu hingu所以我需要設置「dataTask」的鍵值 –
@naveen its採取靜態....你可以採取任何你想要的 –
hoo k謝謝.. –
設置通過設置,可以解決你的問題 –
@Navin什麼是yopur項目導航hirarchy的RootViewController的? – Vvk
首頁(註冊)視圖控制器然後控制器移動到1 tabview controller.it包含5個選項卡。當用戶成功註冊我的應用程序頁面將是第一個標籤視圖控制器。我的註冊頁面包含1.textfield和1個按鈕,用於移動到標籤視圖控制器。@ vvk Aghera –