IOS赖加载问题?? 大神请进!

如下,这是一个赖加的方法;为什么方法中的属性不能使用self.tgs,而是使用_tgs????

-(NSMutableArray*) tgs{

if (_tgs == nil) {

// 获取全路径
NSString *path = [[NSBundle mainBundle] pathForResource:@"tgs.plist" ofType:nil];

// 加载数组
NSArray *dicArray = [NSArray arrayWithContentsOfFile:path];
_tgs = [NSMutableArray array];
for (NSDictionary *dict in dicArray) {
[_tgs addObject:[TGGoods goodsWithDict:dict]];
}
}
return _tgs;

}
最新回答
孤独儛埗

2024-10-13 10:17:51

var loaderContext :LoaderContext = new LoaderContext(false,ApplicationDomain.currentDomain,null);
loaderContext.allowCodeImport=true;

加载时候用xxx.load(xxxx,loaderContext);
然后同一个带脚本的swf只能加载一次,不然会报一个error id=3764的错,在unload后再加载也无效,
哦在loader里有一条ios注意事项是这样说的
追问
不是你说的,我知道原因了