赞
踩
#define MAIN_BUNDLE [NSBundle bundleForClass:[self class]] //获取bundle
[[MAIN_BUNDLE loadNibNamed:itemResuableStr owner:self options:nil] lastObject]; //加载xib
[tempCollectionView registerNib:[UINib nibWithNibName:itemResuableStr bundle:MAIN_BUNDLE] forCellWithReuseIdentifier:itemResuableStr]; //注册cell
command+N -> Resource -> Settings Bundle
将相应的图片资源文件放到bundle文件中
在需要使用图片的地方使用下面的代码,注意xib可以直接设置图片
#define LQG_RESOURCE_NAME(FILE) [@"LQGPhotoKitResource.bundle" stringByAppendingPathComponent:FILE]
tempImage = [UIImage imageNamed:LQG_RESOURCE_NAME(@"blank")];
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。