Re: Bind to string (path), convert to NSImage

2010-02-15 Thread Steven Degutis
You can bind an NSString path of an image, to an NSImageView. Look up
NSImageView bindings in the documentation.

Also it seems like bad practice to have the at-symbol inside your
NSDictionary key strings. For example make sure you use @iconpath instead
of @@iconpath because that at-symbol could eventually conflict with
Apple's own collection operators.

-Steven

2010/2/15 Trygve Inda cocoa...@xericdesign.com

 I have an NSImageWell (or NSView). I am using an NSCollectionView and have
 it bound to an ArrayController which is bound to an array of NSDictionary.

 The dicts have several keys, among them @name and @iconpath

 @iconpath is a NSSting that contains a path to an NSImage.

 How can I bind though my NSArrayController, but have code that converts my
 path to an NSImage to return to the view inside NSCollectionView

 Obviously I know how to derive the NSImage from the path, but since the
 NSImage in not in the array of dicts, how can I bind it?

 I basically need the system to call a method I write to take a path and
 return an NSImage.

 Thanks,

 Trygve


 ___

 Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

 Please do not post admin requests or moderator comments to the list.
 Contact the moderators at cocoa-dev-admins(at)lists.apple.com

 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/cocoa-dev/steven.degutis%40gmail.com

 This email sent to steven.degu...@gmail.com




-- 
Steven Degutis
http://www.thoughtfultree.com/
http://www.degutis.org/
___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Bind to string (path), convert to NSImage

2010-02-15 Thread Trygve Inda
 You can bind an NSString path of an image, to an NSImageView. Look up
 NSImageView bindings in the documentation.
 
 Also it seems like bad practice to have the at-symbol inside your
 NSDictionary key strings. For example make sure you use @iconpath instead
 of @@iconpath because that at-symbol could eventually conflict with
 Apple's own collection operators.
 
 -Steven
 
 2010/2/15 Trygve Inda cocoa...@xericdesign.com
 
 I have an NSImageWell (or NSView). I am using an NSCollectionView and have
 it bound to an ArrayController which is bound to an array of NSDictionary.
 
 The dicts have several keys, among them @name and @iconpath
 
 @iconpath is a NSSting that contains a path to an NSImage.
 
 How can I bind though my NSArrayController, but have code that converts my
 path to an NSImage to return to the view inside NSCollectionView
 
 Obviously I know how to derive the NSImage from the path, but since the
 NSImage in not in the array of dicts, how can I bind it?
 
 I basically need the system to call a method I write to take a path and
 return an NSImage.

Actually the @ is not in my names - not sure why I wrote it out like that.

Thank you.


___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Bind to string (path), convert to NSImage

2010-02-14 Thread Trygve Inda
I have an NSImageWell (or NSView). I am using an NSCollectionView and have
it bound to an ArrayController which is bound to an array of NSDictionary.

The dicts have several keys, among them @name and @iconpath

@iconpath is a NSSting that contains a path to an NSImage.

How can I bind though my NSArrayController, but have code that converts my
path to an NSImage to return to the view inside NSCollectionView

Obviously I know how to derive the NSImage from the path, but since the
NSImage in not in the array of dicts, how can I bind it?

I basically need the system to call a method I write to take a path and
return an NSImage.

Thanks,

Trygve


___

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com