On Dec 8, 2010, at 11:15, Artemiy Pavlov wrote:

> Hi all!
> 
> I would like to add a simple text label to my Cocoa UI on OS X, 
> programaticaly. It's just a static text label that'll be there unchanged, 
> that has a certain font, size and color. What is the best way to do this?
> 
> I assumed this would be as easy as with NSBezierCurve, but it doesn't seem 
> that clear from the official Cocoa documentation.
> 
> Would appreciate any advise!
> 

NSRect myRect = NSMakeRect(10.f, 10.f, 60.f, 20.f);
NSTextField *myTextField = [[NSTextField alloc] initWithFrame:myRect];
[myTextField setEditable:NO];
[myTextField setFont:…. and so on...

-Laurent.
-- 
Laurent Daudelin
AIM/iChat/Skype:LaurentDaudelin                                 
http://www.nemesys-soft.com/
Logiciels Nemesys Software                                      
laur...@nemesys-soft.com

_______________________________________________

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

Reply via email to