Remember in the Mail App, it shows update status and sending mail progress in the bottom toolbar. I think it is a really neat way to show information, especially for those apps who use native iOS UI elements.
However, I couldn't find any lib out there for this task. So I decide to invent the wheel myself.
Feel free to post any issues or patch. It's my pleasure for any who like my work.
InformaticToolbar is mainly an UIViewController Category which allows you to add several UIBarButtonItems set to your toolbar.
The sets are defined as subclasses of ITBarItemSet. All ITBarItemSet can have a dismiss button if the target and action has been defined. If more than one set has been added, a switch button (an arrow) will be displayed on the left for user to switch between sets.
For now, there are three pre-defined set:
You can easily create new sets by extending ITBarItemSet yourself.
Screenshot:
cd *your-project-location*
git submodule add git://github.com/gregwym/InformaticToolbar.git
You can either add the source codes directly or
InformaticToolbar.xcodeproj
to your project.InformaticToolbar
(the library)libInformaticToolbar.a
"${PROJECT_DIR}/InformaticToolbar/"
to User Header Search Paths, include the quotation marks.YES
-ObjC
In any UIViewController
that you want to use this lib, add #import "InformaticToolbar.h"
at the front.
Or easier, you can add the import to YOUR Prefix.pch
file.
Let's say I want to add a Label to my toolbar, I can call the following method in an UIViewController
:
- (IBAction)addLabelBarItemSet:(id)sender
{
ITLabelBarItemSet *labelBarItemSet = [ITLabelBarItemSet labelBarItemSetWithDismissTarget:self andAction:@selector(dismissBarItemSet:)];
labelBarItemSet.textLabel.text = @"This is text label. ";
labelBarItemSet.detailTextLabel.text = @"This is detail text label. ";
[self pushBarItemSet:labelBarItemSet animated:YES];
}
- (void)dismissBarItemSet:(ITBarItemSet *)sender
{
[self removeBarItemSet:sender animated:YES];
}
In the project, there is a demo app you can tryout. ITViewController.m
includes the sample usage of all three pre-defined item sets.
InformaticToolbar by Greg Wang is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
]]>