Tôi có ứng dụng ios5 được phát triển bằng bảng phân cảnh hiện đang hiển thị chế độ xem bộ điều khiển thanh tab khi khởi chạy ban đầu. Tôi muốn hiển thị màn hình đăng nhập trước khi bộ điều khiển thanh tab được hiển thị. Người dùng sẽ nhập tên người dùng của mình là & mật khẩu, sau đó hệ thống sẽ xác thực người dùng và sau đó nếu thành công, hãy hiển thị bộ điều khiển thanh tab.Bật chế độ xem đăng nhập trước khi trình điều khiển thanh tab được hiển thị
Tôi đã thử 3 tùy chọn sau không có may mắn .. bất kỳ ý tưởng nào?
(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Option 1
UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;
PointsViewController *firstVC = [[tabBarController viewControllers] objectAtIndex:0];
UIViewController *loginViewController = [[LoginViewController alloc] init];
[firstVC.navigationController pushViewController:loginViewController animated:YES];
// Option 2
UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;
UIViewController *loginViewController = [[LoginViewController alloc] init];
[tabBarController presentViewController:loginViewController animated:NO completion:nil];
// Option 3
UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;
UIViewController *loginViewController = [[LoginViewController alloc] init];
[tabBarController presentModalViewController:loginViewController animated:NO];
return YES;
}
làm cách nào để chuyển giá trị cho thanh điều khiển đầu tiên của thanh tab bằng cách sử dụng segue? Tôi không thể làm cho nó hoạt động – meda
bạn không vượt qua một giá trị với segue. Một tùy chọn có thể là lưu trữ giá trị bạn muốn chuyển dưới dạng thuộc tính trên AppDelegate của bạn và chỉ cần truy cập giá trị từ chế độ xem đích. –
Nó hoạt động! Nhưng làm thế nào để vô hiệu hóa push to new window nếu password không chính xác? – Gank