mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-18 15:05:02 -05:00
23 lines
493 B
Objective-C
23 lines
493 B
Objective-C
/**
|
|
* Author: Timothy Prepscius
|
|
* License: BSD + keep my name in the code!
|
|
*/
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#include "MMTypes.h"
|
|
|
|
@interface MailHeaderTableCell : UITableViewCell
|
|
|
|
- (void) hackMakeAutoButtonOneSegment;
|
|
- (void)onData:(struct MailData *)data;
|
|
|
|
@property (MM_WEAK, nonatomic) IBOutlet UILabel *header;
|
|
@property (MM_WEAK, nonatomic) IBOutlet UILabel *date;
|
|
@property (MM_WEAK, nonatomic) id delegate;
|
|
@property (MM_WEAK, nonatomic) IBOutlet UILabel *brief;
|
|
|
|
-(void)clear;
|
|
|
|
@end
|