我将这个程序制作了1年,现在,当我尝试添加新对象时,我得到了这个:意外的' @'在程序中。
简单的代码=问题的海洋。 我曾多次尝试重新创建文件,我试图关闭并重新打开Xcode。没有。 我已经改变了#NO'到了“是”'就像人们说@import "Unexpected '@' in program"。什么都没有。
我很绝望。 对不起我的英语不好。谢谢:))
MNClient.h同样的问题
我发现代码没有问题。
这里没什么重要的。
//
// MNClient.m
// CM
//
// Created by Michael Nitsenko on 7/29/14.
// Copyright (c) 2014 PrivatBank. All rights reserved.
//
#import "MNClient.h"
@implementation MNClient
@end
//
// MNEventObject.m
// CM
//
// Created by Michael on 11/6/13.
// Copyright (c) 2013 PrivatBank. All rights reserved.
//
#import "MNEventObject.h"
@implementation MNEventObject
@end
ARC没有解释MNClient.h中的错误,我想到了它。
有CM-Prefix.pch
//
// Prefix header for all source files of the 'ContactManager' target in the 'ContactManager' project
//
#import <Availability.h>
#ifndef __IPHONE_4_0
#warning "This project uses features only available in iOS SDK 4.0 and later."
#endif
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import "GAI.h"
#import "GAIFields.h"
#import "CMDefines.h"
#endif
看起来更好:)