How to call method inside class
Posted
by Steffen
on Stack Overflow
See other posts from Stack Overflow
or by Steffen
Published on 2010-05-03T15:20:26Z
Indexed on
2010/05/03
15:28 UTC
Read the original article
Hit count: 230
cocoa
|objective-c
Hi,
Easy and simple.. how do i call setStatus:
-(void)awakeFromNib {
setStatus; // how?
}
/* Function for setting window status */
- (void)setStatus {
[statusField setStringValue:@"Idle"];
}
THanks
© Stack Overflow or respective owner