Когда я перенаправляюсь из mainviewController в другой viewController, я получаю это
Ошибка:
Ленивая загрузка NSBundle MobileCoreServices.framework,
Загруженные MobileCoreServices.framework,
Системный групповой контейнер для пути systemgroup.com.apple.configurationprofiles/Пользователи/разработка /Library/Разработчик /CoreSimulator/Devices/083C0102-C85F-463A-96F4-CA1B9AC7919D/data/Контейнеры/Общие /SystemGroup/systemgroup.com.apple. configurationprofiles
Мой код...
Appdelegate.m
if (![[NSUserDefaults standardUserDefaults] boolForKey:@"HasLaunchedOnce"]) {
[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"HasLaunchedOnce"];
[[NSUserDefaults standardUserDefaults] synchronize];
NSLog(@"Launched first time");
} else {
NSLog(@"Already launched");
[self getData];
}
viewDidLoad
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"HasLaunchedOnce"]) {
dispatch_async(dispatch_get_main_queue(), ^{
LoginPageViewController *lpvc = [self.storyboard instantiateViewControllerWithIdentifier:@"LPVC"];
[self.navigationController pushViewController:lpvc animated:NO];
});
} else {
// My code...
}