好的,這可能是一個愚蠢的錯誤。但我無法弄清楚xcode對我的要求。@end c-objective
所以這裏是頭文件
#import <Foundation/Foundation.h>
#import "TableViewController.h"
@end
@interface Settings : NSObject
- (id)init: (TableViewController*) TableControll;
@end
如果接口之前沒有@end它說,預計標識符或(和建議增加@end那裏。如果有,它說年底必須出現一個@end在Objective-C CONTEX。
想法?
#import <UIKit/UIKit.h>
#import <MessageUI/MessageUI.h>
#import <MessageUI/MFMessageComposeViewController.h>
@interface TableViewController : UIViewController<UITableViewDataSource,UITableViewDelegate,MFMessageComposeViewControllerDelegate>
{
ControllerType controllerType;
}
@property (retain, nonatomic) IBOutlet UITableView *tableView;
@property (retain, nonatomic) NSArray *dataArray;
@property (retain, nonatomic) NSArray *imageArray;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil andType:(ControllerType)type;
@end
你的TableViewController.h文件是什麼? – Vladimir
我猜在TableViewController.h的結尾附近有一個未封閉的定義? – Evert
我想你在你的TableViewController.h頭文件中缺少@end。 – kidsid49