Mobile API Reference  MicroStrategy 2019
SummaryCell.h
Go to the documentation of this file.
1 //
2 // SummaryCell.h
3 // MSTRMobile
4 //
5 // Created by Amirali Charania on 10/28/09.
6 // Copyright 2009 MicroStrategy. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 
11 
12 @interface SummaryCell : UITableViewCell {
13  UILabel* titleLabel;
14  UILabel* valueLabel;
15  NSString* title;
16  NSString* value;
17 }
18 
19 + (CGFloat) getPreferredHeight:(NSString*)text;
20 
21 @property (nonatomic, copy) NSString* title;
22 @property (nonatomic, copy) NSString* value;
23 
24 @end
Definition: SummaryCell.h:12
UILabel * titleLabel
Definition: SummaryCell.h:13
UILabel * valueLabel
Definition: SummaryCell.h:14
NSString * title
Definition: SummaryCell.h:15
NSString * value
Definition: SummaryCell.h:16