leonho / iphone-libs

Varies useful libs, classes, and methods for iPhone development

iphone-libs / BlueBadge.h
c4d72b18 » leonho 2008-11-05 Added BlueBadge - a widget ... 1 //
2 // BlueBadge.m
3 //
4 // Copyright 2008 Stepcase Limited.
5 //
6
7 #import <UIKit/UIKit.h>
8
9
10 @interface BlueBadge : UIView {
11 NSInteger count;
12 }
13
14 @property (nonatomic) NSInteger count;
15
16 - (void)drawWithCount:(NSInteger)i;
17
18 @end