如何更新我的 statusItem 标题?目前我用计时器做
[NSTimer scheduledTimerWithTimeInterval:0.01 target:self selector:@selector(myVoid) userInfo:nil repeats:YES];
空白是:
-(void)myVoid {
statusItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength] retain];
[statusItem setTitle:myString];
}
变化的内容myString
。如何更新标题?目前,当我更新它时,会出现另一个 statusItem 和另一个...