mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
23 lines
No EOL
557 B
Objective-C
23 lines
No EOL
557 B
Objective-C
//
|
|
// InteractionCell.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Roy Yang on 7/16/12.
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "OHAttributedLabel.h"
|
|
|
|
@interface InteractionCell : UITableViewCell {
|
|
OHAttributedLabel *interactionLabel;
|
|
UIImageView *avatarView;
|
|
}
|
|
|
|
@property (retain, nonatomic) OHAttributedLabel *interactionLabel;
|
|
@property (retain, nonatomic) UIImageView *avatarView;
|
|
|
|
- (int)setInteraction:(NSDictionary *)interaction withWidth:(int)width;
|
|
- (NSString *)stripFormatting:(NSString *)str;
|
|
|
|
@end |