Сбой при представлении контроллера модального вида - PullRequest
0 голосов
/ 23 июля 2011

В моем приложении есть функция, которая представляет модальный контроллер вида при нажатии кнопки бара.Иногда мне приходится вызывать одну и ту же функцию программно.Но всякий раз, когда мне приходится представлять представление программно, оно вылетает.Я определил, что это строка кода, которая приводит к сбою.

[self presentModalViewController:controller animated:YES];

И я получаю ошибку

 *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '+entityForName: could not locate an NSManagedObjectModel for entity name 'Website''

, даже если я не вставляю новый объект в мою сущность.

РЕДАКТИРОВАТЬ: Вот функция, которая вызывается программно и когда нажимается кнопка панели.

- (void) presentController {
WebController *webController = [[WebController alloc] initWithNibName:@"WebController" bundle:nil];
webController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
webController.delegate = self;
[self presentModalViewController:webController animated:YES];
[webController release];
 }

И это код, в котором возникает ошибка.

- (NSFetchedResultsController *)fetchedResultsController {

if (fetchedResultsController_ != nil) {
    return fetchedResultsController_;
}

/*
 Set up the fetched results controller.
*/
// Create the fetch request for the entity.
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
// Edit the entity name as appropriate.
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Website" inManagedObjectContext:self.managedObjectContext];
[fetchRequest setEntity:entity];

// Set the batch size to a suitable number.
[fetchRequest setFetchBatchSize:20];

// Edit the sort key as appropriate.

NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES];

NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, nil];

[fetchRequest setSortDescriptors:sortDescriptors];

// Edit the section name key path and cache name if appropriate.
// nil for section name key path means "no sections".
NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:self.managedObjectContext sectionNameKeyPath:nil cacheName:@"Root"];
aFetchedResultsController.delegate = self;
self.fetchedResultsController = aFetchedResultsController;

[aFetchedResultsController release];
[fetchRequest release];
[sortDescriptor release];
[sortDescriptors release];

NSError *error = nil;
if (![fetchedResultsController_ performFetch:&error]) {
    /*
     Replace this implementation with code to handle the error appropriately.

     abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. If it is not possible to recover from the error, display an alert panel that instructs the user to quit the application by pressing the Home button.
     */
    NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
    abort();
}

return fetchedResultsController_;

}

Редактировать: я вызываю функцию presentController из appDelegate, когда мое приложение выходит из фонового состояния, поэтому я попытался вызвать ту же функцию в функции viewDidLoad моего viewController, и это неавария.

Ответы [ 3 ]

0 голосов
/ 23 июля 2011

В зависимости от фрагмента сообщения об ошибке проблема связана со строкой, содержащей метод:

+[NSEntityDescription entityForName:inManagedObjectContext:]

....

Скорее всего, вы получили объект для предоставления объекта для запроса выборки.

0 голосов
/ 24 июля 2011

Я использовал NSNotificationCenter, чтобы отправить сообщение в мой viewController, чтобы он вызвал метод presentController, который работает при отправке уведомления из моего appDelegate.

0 голосов
/ 23 июля 2011

Вы уверены, что инициализируете контроллер, прежде чем пытаться его представить?

Кроме того, убедитесь, что все ваши розетки подключены правильно, если вы используете перо.

...