iOS在协议中使用未声明的标识符?

rat*_*p99 0 protocols delegation objective-c ios

我有两个视图控制器HomeViewController(以下称HVC)和AddActivityViewController(以下称AAVC).在AAVC中,我宣布了一个委托协议:

@protocol AddActivityViewControllerDelegate;
Run Code Online (Sandbox Code Playgroud)

并由此定义:

@protocol AddActivityViewControllerDelegate


-(void) addActivityViewControllerDidSave;

-(void) addActivityViewControllerDidCancel:(ListActivity *) activityToDelete;

@end
Run Code Online (Sandbox Code Playgroud)

接下来,我在HVC(委托)中实现了这两个方法,如下所示:

-(void) addActivityViewControllerDidSave
    {
        [self.moc MR_saveToPersistentStoreAndWait];
        [self.navigationController dismissViewControllerAnimated:YES completion:nil];
    }

-(void) addActivityViewControllerDidCancel:(ListActivity *) activityToDelete
    {
        [activityToDelete MR_deleteEntity];
        [self.navigationController dismissViewControllerAnimated:YES completion:nil];        
    }
Run Code Online (Sandbox Code Playgroud)

我收到此错误"使用未声明的标识符'addActivityViewControllerDidSave',即使它已在协议中明确声明.

我应该提一下,在此之前,我正在处理显然是"导入循环",导致"未声明的协议"错误.这个错误似乎已得到修复.

以下是HomeViewController.h文件中的@import语句:

#import <UIKit/UIKit.h>
#import "ListActivity.h"
#import "AddActivityViewController.h"
#import "TimedActivity.h"

@interface HomeViewController : UIViewController <AddActivityViewControllerDelegate>

@property (strong, nonatomic) IBOutlet UITableView *myTableView;

@property NSManagedObjectContext * moc;

- (IBAction)dumpMemory:(UIButton *)sender;
@end
Run Code Online (Sandbox Code Playgroud)

并从AddActivityViewController.h文件:

#import <UIKit/UIKit.h>
#import "ListActivity.h"

@protocol AddActivityViewControllerDelegate;


@interface AddActivityViewController : UIViewController

@property (weak, nonatomic) IBOutlet UITextField *activityField;
@property (weak, nonatomic) IBOutlet UITextField *categoryField;

@property (strong, nonatomic) ListActivity *thisActivity;

@property (nonatomic, weak) id <AddActivityViewControllerDelegate> delegate;

- (IBAction)saveButton:(UIBarButtonItem *)sender;
- (IBAction)cancelButton:(UIBarButtonItem *)sender;

@end

@protocol AddActivityViewControllerDelegate


-(void) addActivityViewControllerDidSave;

-(void) addActivityViewControllerDidCancel:(ListActivity *) activityToDelete;

@end
Run Code Online (Sandbox Code Playgroud)

如果有帮助,我可以发布所有四个类文件的完整内容.

非常感谢您的帮助!

编辑:这是HomeViewController.m的完整代码:

//
//  HomeViewController.m
//  MRExample
//
//  Created by Tim Jones on 1/15/14.
//  Copyright (c) 2014 TDJ. All rights reserved.
//

#import "HomeViewController.h"
#import "ListActivity.h"

@interface HomeViewController ()

{
    NSFetchedResultsController *frc;
}


@end

@implementation HomeViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    self.automaticallyAdjustsScrollViewInsets = NO;

    [self refreshData];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(notificationNewActivityAdded:) name:@"newActivityAdded" object:nil];

}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

-(void) notificationNewActivityAdded:(NSNotification*)notification
{
    [self refreshData];
}



#pragma mark Table View data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return [[frc sections] count];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    id<NSFetchedResultsSectionInfo> sectionInfo = [[frc sections] objectAtIndex:section];
    return [sectionInfo numberOfObjects];
}

// Customize the appearance of table view cells.
- (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath {

    // Configure the cell to show the activity's name
    ListActivity *thisActivity = [frc objectAtIndexPath:indexPath];
    cell.textLabel.text = thisActivity.activityName;
}


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

    [self configureCell:cell atIndexPath:indexPath];

    cell.textLabel.textColor = [UIColor redColor];
    NSAttributedString *attString;
    attString = cell.textLabel.attributedText;
    return cell;
}


//     Section Label

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    NSString *sectionLabel = [[[frc sections] objectAtIndex:section]name];
    return [sectionLabel uppercaseString];
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSManagedObjectContext *localContext = [NSManagedObjectContext MR_contextForCurrentThread];
    ListActivity *thisActivity = [frc objectAtIndexPath:indexPath];

    TimedActivity *currentActivity = [TimedActivity MR_createInContext:localContext];
    currentActivity.timedActivityName = thisActivity.activityName;
    currentActivity.category = thisActivity.activityCategory;
    currentActivity.timedActivityTapped = [NSDate date];
    [localContext MR_saveToPersistentStoreAndWait];

}

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (editingStyle == UITableViewCellEditingStyleDelete)
    {
        NSManagedObjectContext *localContext = [NSManagedObjectContext MR_contextForCurrentThread];
        ListActivity *activityToTrash = [frc objectAtIndexPath:indexPath];
        // Delete the row from the data source
        [activityToTrash MR_deleteEntity];
        [localContext MR_saveToPersistentStoreAndWait];
        [self refreshData];
    }
}


-(void) refreshData
{
    //This was the turning point for proper MR grouping. The two Properties (activityCategory and activityName) are used as Sort descriptors in the underlying core data methods
    frc = [ListActivity MR_fetchAllSortedBy:@"activityCategory,activityName" ascending:YES withPredicate:nil groupBy:@"activityCategory" delegate:nil];

    [self.myTableView reloadData];
}



- (IBAction)dumpMemory:(UIButton *)sender
{
    NSManagedObjectContext *localContext = [NSManagedObjectContext MR_contextForCurrentThread];
    [ListActivity MR_truncateAllInContext:localContext];
    [localContext MR_saveToPersistentStoreAndWait];

    [self refreshData];
}

- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    NSManagedObjectContext *localContext = [[NSManagedObjectContext alloc] init];
    if ([[segue identifier] isEqualToString:@"addActivity"])
    {
        AddActivityViewController *aavc = (AddActivityViewController *) [segue destinationViewController];
        aavc.delegate = self;
        ListActivity *newActivity = [ListActivity MR_createInContext:localContext];
        aavc.thisActivity = newActivity;
    }

-(void) addActivityViewControllerDidSave
    {
        [self.moc MR_saveToPersistentStoreAndWait];
        [self.navigationController dismissViewControllerAnimated:YES completion:nil];
    }

-(void) addActivityViewControllerDidCancel:(ListActivity *) activityToDelete
    {
        [activityToDelete MR_deleteEntity];
        [self.navigationController dismissViewControllerAnimated:YES completion:nil];        
    }


}
@end
Run Code Online (Sandbox Code Playgroud)

Lui*_*ien 5

好吧,就像我想的那样.问题是你在- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender方法的最后缺少一个括号"}" .此外,您在课程末尾(@end关键字正上方)还有一个额外的括号.这可能是缺少的一个支架.解决这个问题,你的问题就会消失.

希望这可以帮助!