在程序中解析“意外'''问题”

时间:2017-03-08 11:24:08

标签: ios objective-c

Xcode给出了以下错误,我搜索了很多但无法得到正确答案

我的代码

false

enter image description here

现在请检查我的头文件,如上所示。它给出了错误

1)“程序中意外的'@'”

2)缺少IBAction方法解除的背景

1 个答案:

答案 0 :(得分:0)

请务必声明您的两个变量

@interface ViewController : UIViewController
//Before @end
//Right
@property(nonatomic, strong, readwrite) NSString * environment;
@property(nonatomic, strong, readwrite) NSString * resultText;

@end

//If outside then get error like you got
//Wrong
@property(nonatomic, strong, readwrite) NSString * environment;
@property(nonatomic, strong, readwrite) NSString * resultText;