public
Description: Varies useful libs, classes, and methods for iPhone development
Homepage: http://www.stepcase.com
Clone URL: git://github.com/leonho/iphone-libs.git
iphone-libs / BlueBadge.h
100644 19 lines (12 sloc) 0.224 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// BlueBadge.m
//
// Copyright 2008 Stepcase Limited.
//
 
#import <UIKit/UIKit.h>
 
 
@interface BlueBadge : UIView {
NSInteger count;
}
 
@property (nonatomic) NSInteger count;
 
- (void)drawWithCount:(NSInteger)i;
 
@end