up vote 0 down vote favorite
1
share [g+] share [fb]

I created a nib file and want to display dynamic text messages on it like file names that are selected or the no of files selected etc. Is there a way to to this?

I know this can be done for alert panels but i want it on my custom sheets.

Thanks

link|improve this question

23% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Either create connections between your NSTextField elements and your controller class and then set the labels programmatically (using setStringValue).

Or you could consider using bindings. See http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/CocoaBindings/CocoaBindings.html.

link|improve this answer
Thanks Chris. I think i will use setStringValue method. – King Sep 10 '09 at 17:48
feedback

You can create a NSTextField programmatically like this:

(IBAction)showText:(id)sender {
    NSRect frame = NSMakeRect(50, 50, 200, 100);
    NSTextField *tf = [[NSTextField alloc] initWithFrame:frame];
    [tf setStringValue:@"test"];
    [tf setSelectable:NO];
    [tf setEditable:NO];
    [tf setBordered:NO];
    [tf setDrawsBackground:NO];
    [[[sender window] contentView] addSubview:tf];
    [tf release];
}

or you could use NSString's methods for drawing text in a view, namely -drawAtPoint or -drawInRect

link|improve this answer
Thanks Woofy. I think i will use the above method. – King Sep 15 '09 at 17:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.