NSButton setStringValue
NSButton setStringValue
- Subject: NSButton setStringValue
- From: ali alavi <email@hidden>
- Date: Thu, 28 Feb 2008 09:15:23 +0000
- Importance: Normal
I am trying to change the title of a push button after each click (eg: to swap between "Play" and "Pause")
I am using this code:
if(m_isPlaying) { [myButton setStringValue:@"Play"]; m_isPlaying = 0; }
else { [myButton setStringValue:@"Pause"]; m_isPlaying = 1; }
None of above setStringValue works and the default title of the button remain unchanged. Any help would be appreciated?
|
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden