Skip navigation.
 
mlRe: Problem with updating NSProgressIndicator
FROM : Vitaly Ovchinnikov
DATE : Tue May 20 22:54:17 2008

http://www.appsforlife.com/progress.zip (36Kb)
Idea is simple:

- (void) awakeFromNib
{
  [progress setHidden:YES];
  timer = [NSTimer init.....];
}

- (void) onTimer: (id) timer
{
  [progress setDoubleValue:...];
  [progress setHidden:NO]; // once or every timer cycle - doesn't
matter (in real project I call this once)
}

if we call -setHidden before -setDoubleValue - all work fine. In
attached project progress freezes immediately after start. At every
run.
Ideas?

Related mailsAuthorDate
mlProblem with updating NSProgressIndicator Vitaly Ovchinnikov May 20, 08:53
mlRe: Problem with updating NSProgressIndicator Matt Long May 20, 15:40
mlRe: Problem with updating NSProgressIndicator Jens Alfke May 20, 16:43
mlRe: Problem with updating NSProgressIndicator j o a r May 20, 17:11
mlRe: Problem with updating NSProgressIndicator Vitaly Ovchinnikov May 20, 22:54
mlRe: Problem with updating NSProgressIndicator Shawn Erickson May 20, 22:56
mlRe: Problem with updating NSProgressIndicator Vitaly Ovchinnikov May 20, 22:59
mlRe: Problem with updating NSProgressIndicator Shawn Erickson May 20, 22:59
mlRe: Problem with updating NSProgressIndicator Vitaly Ovchinnikov May 20, 23:02
mlRe: Problem with updating NSProgressIndicator Shawn Erickson May 20, 23:03
mlRe: Problem with updating NSProgressIndicator Vitaly Ovchinnikov May 20, 23:06
mlRe: Problem with updating NSProgressIndicator Shawn Erickson May 20, 23:15
mlRe: Problem with updating NSProgressIndicator Vitaly Ovchinnikov May 20, 23:30
mlRe: Problem with updating NSProgressIndicator Vitaly Ovchinnikov May 20, 23:52
mlRe: Problem with updating NSProgressIndicator Andrew Merenbach May 21, 04:10
mlRe: Problem with updating NSProgressIndicator Vitaly Ovchinnikov May 21, 05:13
mlRe: Problem with updating NSProgressIndicator Vitaly Ovchinnikov May 21, 05:18
mlRe: Problem with updating NSProgressIndicator Jens Alfke May 21, 06:00
mlRe: Problem with updating NSProgressIndicator Vitaly Ovchinnikov May 21, 06:16
mlRe: Problem with updating NSProgressIndicator Jens Alfke May 21, 16:59
mlRe: Problem with updating NSProgressIndicator Vitaly Ovchinnikov May 21, 19:30