Hi!
I can't update button's title using outlet. But it don't works((( Does it XCode 3.1 bug?
Here is a code:
And screenshot:
![]()
Please help me.
Thanks
I can't update button's title using outlet. But it don't works((( Does it XCode 3.1 bug?
Here is a code:
PHP:
@interface MyController : NSObject
{
IBOutlet NSString *myValue;
}
- (void)awakeFromNib;
@end
PHP:
@implementation MyController
- (void)awakeFromNib
{
myValue = @"Hello World";
}
@end

Please help me.
Thanks