Statistics
| Branch: | Tag: | Revision:

root / Classes / FirstLastExampleTableViewCell.h @ 72744ed1

History | View | Annotate | Download (489 Bytes)

1
//
2
//  FirstLastExampleTableViewCell.h
3
//  FastScrolling
4
//
5
//  Created by Loren Brichter on 12/9/08.
6
//  Copyright 2008 atebits. All rights reserved.
7
//
8

    
9
#import "ABTableViewCell.h"
10

    
11
// example table view cell with first text normal, last text bold (like address book contacts)
12
@interface FirstLastExampleTableViewCell : ABTableViewCell
13
{
14
        NSString *firstText;
15
        NSString *lastText;
16
}
17

    
18
@property (nonatomic, copy) NSString *firstText;
19
@property (nonatomic, copy) NSString *lastText;
20

    
21
@end