Re: Loading image resources

2014-09-14 Thread Charles Jenkins
Well, that explanation was helpful. I learned how to verify that the images.xcassets is indeed included in my target build. Also I tried one of your suggestions, and this is what works: class func getImageAsset( name: String ) -> NSImage { let bundle = NSBundle.mainBundle() let img =

Re: Loading image resources

2014-09-14 Thread Quincey Morris
On Sep 14, 2014, at 11:37 , Charles Jenkins wrote: > Okay, here’s a point on which I may need education. Xcode created my project > with an images.xcassets folder right there in it, and that’s where I’m adding > my images. Do you mean that’s not enough? I need to add images.xcassets to > the t

Re: Loading image resources

2014-09-14 Thread Charles Jenkins
Okay, here’s a point on which I may need education. Xcode created my project with an images.xcassets folder right there in it, and that’s where I’m adding my images. Do you mean that’s not enough? I need to add images.xcassets to the target somewhere else? How do I do that? -- Charles Jen

Re: Loading image resources

2014-09-13 Thread Quincey Morris
On Sep 13, 2014, at 21:33 , Charles Jenkins wrote: > Of course I meant that the imageFileName returned by the API call is nil. Ah, OK, but you still need to verify that everything is in place. For example, if you forgot to add the asset folder to the target, the image files wouldn’t be in th

Re: Loading image resources

2014-09-13 Thread Charles Jenkins
*Sigh* I seem to make a typo every time I post to this list. Of course I meant that the imageFileName returned by the API call is nil. -- Charles Jenkins On Saturday, September 13, 2014 at 5:12 PM, Quincey Morris wrote: > On Sep 13, 2014, at 12:28 , Charles Jenkins (mailto:cejw...@gmail

Re: Loading image resources

2014-09-13 Thread Quincey Morris
On Sep 13, 2014, at 12:28 , Charles Jenkins wrote: > After calling bundle.pathForResource:ofType:, imageName is nil. I think what > I’m doing is what the Resource Programming Guide says to do. How am I getting > it wrong? a. Yes, but did you check whether bundle or imageFileName is nil? Is im