Re: Status Bar
Re: Status Bar
- Subject: Re: Status Bar
- From: John Blackburn <email@hidden>
- Date: Tue, 11 Dec 2001 17:39:55 -0800
On Tuesday, December 11, 2001, at 05:13 PM, Brian wrote:
How is the status bar implemented? Not the system status bar, but the
the status bar in the finder window or the Mail App (under view there
is a show/hide status bar option). It almost seems like another tool
bar.
If you mean, "how is a view like the Finder's status bar inserted and
removed on demand:"
[mySuperView addSubview:mySubView];
will add it, and
[mySubView removeFromSuperview];
will remove it.
You can animate the addition/removal by iteratively modifying the
subView's height and origin.
John Blackburn