在我的 ViewController 类声明中,我有一个 NSDictionary* 类型的私有变量:
@interface ViewController : UIViewController {
float fScreenWidth;
float fScreenHeight;
float fBasePanelWidth;
float fToolbarHeight;
float fLabelAndButtonHeight;
NSDictionary* fMooDataJson;
}
在我的viewDidLayoutSubviews(…)
方法中,我将它分配给一个NSDictionary
对象。但是,在其他调用中,当访问变量时,我得到一个EXC_BAD_ACCESS
错误。访问是这样的:
NSDictionary* subMooList = [fMooDataJson objectForKey:@"moo"];
任何想法为什么这会失败?有没有更好的方法来访问这个变量?