我想分享一些截图来很好地解释我的问题。
正如您在图像左侧看到的那样,BookCell.h 文件存在,当我使用#import 时,它会自动得到建议。但事实是我根本无法使用它。BookCell.m 没有找到 BookCell.h,即使在第二个屏幕截图中也可以看到,我已将其导入到另一个类文件中,但也无法找到它!有什么问题?
我尝试重新打开 XCode,甚至重新启动了我的 mac。我非常需要你的帮助。
编辑 这里是 BookCell.h 文件:
//
// BookCell.h
// BookShelf
//
// Created by ManGoes Mobile on 24/7/12.
// Copyright 2012 __MyCompanyName__. All rights reserved.
//
#import "ArticleCell.h"
#import "ArticleTitleLabel.h"
#import "MainViewDelegate.h"
#import "ControlVariables.h"
@interface BookCell : ArticleCell
//This image name will be needed once we want to retain the represented Article object by this.
@property (strong,nonatomic) NSString *imageName;
@property (strong,nonatomic) UITableViewCell *parentCell;
@property CGPoint locationInCell;
-(BookCell *)BookCell;
//delegates
@property (nonatomic,assign) id<MainViewDelegate> delegate;
@end