升级到Xcode 7.3后,实例变量不可用

时间:2016-03-27 06:42:23

标签: ios xcode

在我更新到Xcode 7.3之前,所有这些代码都运行得很好。它来自图书馆YAJLDocument.h,.m

@interface YAJLDocument : NSObject <YAJLParserDelegate> {

  id root_; // NSArray or NSDictionary
  YAJLParser *parser_;

  // TODO(gabe): This should be __weak
  id<YAJLDocumentDelegate> delegate_;

  __weak NSMutableDictionary *dict_; // weak; if map in progress, points to the current map 
  __weak NSMutableArray *array_; // weak; If array in progress, points the current array
  __weak NSString *key_; // weak; If map in progress, points to current key

  NSMutableArray *stack_;
  NSMutableArray *keyStack_;

  YAJLDecoderCurrentType currentType_;

  YAJLParserStatus parserStatus_;

}

但是在我更新到Xcode 7.3后,我收到了很多这样的错误。我该怎么办?

enter image description here

0 个答案:

没有答案