我有4个小“LED”图标,我在我的应用程序中使用它来指示UITableView和后续详细视图中对象的状态。我真的不想将它们存储在网上 - 有没有办法将它们保存为应用程序的一部分?如果是这样,我该如何引用它们?
答案 0 :(得分:2)
在Xcode项目中拖放。
然后,要“引用”它们,你可以使用:
[[NSBundle mainBundle] pathForResource:@"yourImage" ofType:@"png"];
获取实际的NSImage
(来自您的应用套装):
NSString* imagePath = [[NSBundle mainBundle] pathForResource:@"yourImage" ofType:@"png"];
NSImage* image = [[NSImage alloc] initWithContentsOfFile: imagePath];
答案 1 :(得分:0)
UIImage *image = [UIImage imageNamed:@"yourImage"];