出现“未知类型名称”错误。我也导入了“billSummary”类,但是不知道为什么xcode会给出这个错误。
#import <UIKit/UIKit.h>
#import "customiseForItems.h"
#import "billSummary.h"
@interface itemsInParty : UITableViewController<UIAlertViewDelegate>{
IBOutlet customiseForItems *tblCell;
IBOutlet UIToolbar *billSummaryTool;
CGFloat percValue;
billSummary *billSummaryToShow; //ERROR UNKNOWN TYPE NAME BILL SUMMARY
UIAlertView *alertForPercentage;
NSMutableArray *selectedEntriesPath;
BOOL descTapped;
}
最佳答案
写@class billSummary;
而不是#import "billSummary.h"
尝试这样,将对您有所帮助。