AZAppearanceKit is a series of UI and drawing-related Objective-C components primarily targetted at iOS. They may incidentally work on OS X, but it is not the primary target.
AZLabel
is a subclass of UIControl
dolled up to look and act like UILabel
. It has advanced drawing properties for text color, outer shadows, inner shadows, text gradients, text insets, and horizontal and vertical alignments. Drawing properties can be changed per control state (like highlighted or selected) just like UIButton
.
Currently, AZLabel
does not support advanced string features like UILabel
's numberOfLines
property, nor can it adjust text to fit to a specific width at this time. These are planned features.
AZLabel
is tuned for performance, and designed to be used in many places at once for single-line, decorated text. It is particularly suited for table view cells, navigation bar title views, and so on.
AZLabel
does not currently draw attributed strings or detect URLs.
Use of AZLabel
in a project requires linking against Core Text.
AZGradient
is a completely compatible port of NSGradient
to iOS, with the only difference being that we use UIColor
and CGColorSpaceRef
over NSColor
and NSColorSpace
. If you're creative with (id)
casts, the class should be usable on either platform with no code changes. AZGradient
is aliased to NSGradient
on OS X.
AZGradientView
is a view for displaying a layer-backed gradient, powered by AZGradient
. A given gradient can be drawn with a settable angle or relative center position in a linear or radial style, respectively. All properties inherently support being animated.
AZShadowedTableView
is a drop-in subclass of UITableView
that draws shadows at the top and bottom of the view, as well as along the top and bottom of the cells as they scroll. Such a similar effect can be seen in apps like Tweetbot.
AZTableViewCell
allows radical appearance customization for both grouped and plain table view cells only without any special methods other than implementing -tableView:heightForRowAtIndexPath:
. You can change the background colors/gradients, change the border, add a shadow, or alter the corner radius. All changes animate correctly as a cell moves throughout a table view.
Add the header and implementation files contained in the AZAppearanceKit
folder to your project. A CocoaPods spec is also available.
Copyright (c) 2012 Alexsander Akers [email protected] & Zachary Waldowski [email protected].
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
All of the code included in BlocksKit is licensed either under BSD or MIT, or is otherwise in the public domain. You can use BlocksKit in any project, public or private, with or without attribution.