Похоже, не удается исправить этот базовый запрос на сохранение / выборку

#iphone #objective-c #core-data

#iPhone #objective-c #core-data

Вопрос:

Прошло уже около 3 недель, как я обращаюсь за помощью на этот сайт для этой простой функции сохранения / выборки с использованием Core Data, но я не могу заставить ее работать. Я продолжаю получать разные предложения от людей и соответствующим образом изменяю свой код, но никогда не могу заставить его работать должным образом.

Очень обескураживает, что мне потребовалось так много времени для этой простой ошибки, но я выполнил 100-кратную работу всего за неделю до попадания. Это действительно облом при изучении программирования.

Вот сценарий: TableView по умолчанию пустой, пока пользователь не введет строку имени с помощью кнопки на панели навигации. Введенная строка должна добавить ячейку в представление с именем в качестве заголовка. Он должен быть сохранен в памяти и извлечен при повторном запуске приложения.

Проблема: я получаю следующую ошибку @ line: cell.textLabel.text = [eventsArray objectAtIndex:indexPath.row];

в методе: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

 2011-04-11 22:40:49.824 Curl[2244:207] -[Routine isEqualToString:]: unrecognized selector sent to instance 0x5c09ad0
2011-04-11 22:40:50.005 Curl[2244:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[Routine isEqualToString:]: unrecognized selector sent to instance 0x5c09ad0'
  

Моя модель данных:

введите описание изображения здесь

Код ViewController:

 `@implementation RoutineTableViewController

@synthesize tableView;
@synthesize eventsArray;
@synthesize entered;
@synthesize managedObjectContext;

#pragma mark - View lifecycle

- (void)viewDidLoad
{
    if (managedObjectContext == nil) 
    { 
        managedObjectContext = [(CurlAppDelegate *)[[UIApplication sharedApplication] delegate] managedObjectContext]; 
    }

    NSFetchRequest *request = [[NSFetchRequest alloc] init];
    NSEntityDescription *entity = [NSEntityDescription entityForName:@"Routine" inManagedObjectContext:managedObjectContext];
    [request setEntity:entity];

    NSError *error = nil;
    NSMutableArray *mutableFetchResults = [[managedObjectContext executeFetchRequest:request error:amp;error] mutableCopy];
    if (mutableFetchResults == nil) {
        // Handle the error.
    }
    [self setEventsArray:mutableFetchResults];
    [mutableFetchResults release];
    [request release];

    UIBarButtonItem * addButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(showPrompt)];
    [self.navigationItem setLeftBarButtonItem:addButton];
    [addButton release];

    UIBarButtonItem *editButton = [[UIBarButtonItem alloc]initWithTitle:@"Edit" style:UIBarButtonItemStyleBordered target:self action:@selector(toggleEdit)];
    self.navigationItem.rightBarButtonItem = editButton;
    [editButton release];

    [super viewDidLoad];
}

- (void)viewDidUnload
{
    self.eventsArray = nil;
    [super viewDidUnload];
}

-(void)toggleEdit
{
    [self.tableView setEditing: !self.tableView.editing animated:YES];

    if (self.tableView.editing)
        [self.navigationItem.rightBarButtonItem setTitle:@"Done"];
    else
        [self.navigationItem.rightBarButtonItem setTitle:@"Edit"];
}

- (void)dealloc
{
    [managedObjectContext release];
    [eventsArray release];
    [super dealloc];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
}

#pragma mark -
#pragma mark Add an event

-(void)addEvent
{    
    Routine *routine = (Routine *)[NSEntityDescription insertNewObjectForEntityForName:@"Routine" inManagedObjectContext:managedObjectContext];

    routine.name=entered;

    NSError *error = nil;
    if (![managedObjectContext save:amp;error]) {
        // Handle the error.
    }
    NSLog(@"%@", error);

    [eventsArray insertObject:routine atIndex:0];

    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];

    [self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];

    [self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:YES];
}

-(void)showPrompt
{
    AlertPrompt *prompt = [AlertPrompt alloc];
    prompt = [prompt initWithTitle:@"Add Workout Day" message:@"n n Please enter title for workout day" delegate:self cancelButtonTitle:@"Cancel" okButtonTitle:@"Add"];
    [prompt show];
    [prompt release];
}

- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex
{
    if (buttonIndex != [alertView cancelButtonIndex])
    {
        entered = [(AlertPrompt *)alertView enteredText];
        if(eventsArray amp;amp; entered)
        {
            [eventsArray addObject:entered];
            [tableView reloadData];
            [self addEvent];
        }
    }
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [eventsArray count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";

    // Dequeue or create a new cell.

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil)
    {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
    }

    cell.textLabel.text = [eventsArray objectAtIndex:indexPath.row];

    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

    return cell;

}

// Override to support conditional editing of the table view.
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Return NO if you do not want the specified item to be editable.
    return YES;
}

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
 {

     if (editingStyle == UITableViewCellEditingStyleDelete) {

         // Delete the managed object at the given index path.
         NSManagedObject *eventToDelete = [eventsArray objectAtIndex:indexPath.row];
         [managedObjectContext deleteObject:eventToDelete];

         // Update the array and table view.
         [eventsArray removeObjectAtIndex:indexPath.row];
         [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];

         // Commit the change.
         NSError *error = nil;
         if (![managedObjectContext save:amp;error]) {
             // Handle the error.
         }
     }
 }`
  

Ответ №1:

 cell.textLabel.text = [eventsArray objectAtIndex:indexPath.row];
  

это вызывает проблему, потому что ……. вы назначаете обычный объект класса в виде текста textLabel……

 cell.textLabel.text = [(Routine *)[eventsArray objectAtIndex:indexPath.row] <thePropertyYouWishToAssign from Routine class>];
  

или
<**Обновленный код ***>

 Routine *tempRoutine = (Routine *)[eventsArray objectAtIndex:indexPath.row];
    cell.textLabel.text = tempRoutine.name;
  

<**Обновленный код ***>

в вашем случае.

в делегате просмотра предупреждений…..

  if(eventsArray amp;amp; entered)
    {
//******it will also insert object in coredata.... is it duplicating data?
           Routine *tempRoutine = (Routine *)[NSEntityDescription insertNewObjectForEntityForName:@"Routine" inManagedObjectContext:managedObjectContext]; tempRoutine.name = entered;
           [eventsArray addObject:tempRoutine];
           [tempRoutine release];
            [tableView reloadData];
             [self addEvent];
     }
  

Спасибо,

Комментарии:

1. На самом деле я получаю ошибку из-за этого, я думаю, это из-за .name. В struct_objc_object нет элемента с именем «name».

2. вы объявили его как свойство для класса name … если да, то используйте … cell.textLabel.text = [(Routine *)[eventsArray objectAtIndex:indexPath.row] name];

3. хм, ну, я просто объявил это как свойство в модели данных. Свойство NSString называется «name».

4. Спасибо, Равин!. Хорошо, теперь это работает лучше, но проблема все еще существует. Свойство сохраняется и извлекается правильно, НО когда я нажимаю кнопку добавить в приглашении UIAlert, ОНО просто зависает, и я получаю ошибку SIGBRT в ячейке.textlabel.text = tempRoutine. строка имени, в которой говорится «2011-04-12 00:07: 44.558 Curl[2438:207] -[Имя NSCFString]: нераспознанный селектор, отправленный в экземпляр 0x59024b0 2011-04-12 00:07: 44.561 Curl [2438: 207] *** Завершение работы приложения из-за неперехваченного исключения ‘NSInvalidArgumentException’, причина: ‘-[Имя NSCFString]: нераспознанный селектор, отправленный в экземпляр 0x59024b0′»

5. Но когда я перезапускаю приложение, данные там.