2012-07-13 16:02:21 -07:00
|
|
|
//
|
|
|
|
// ActivityCell.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Roy Yang on 7/13/12.
|
|
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2012-07-13 18:14:32 -07:00
|
|
|
#import "OHAttributedLabel.h"
|
2012-07-13 16:02:21 -07:00
|
|
|
|
|
|
|
@interface ActivityCell : UIView {
|
2012-07-13 18:14:32 -07:00
|
|
|
OHAttributedLabel *activityLabel;
|
2012-07-13 16:02:21 -07:00
|
|
|
}
|
|
|
|
|
2012-07-16 23:48:07 -07:00
|
|
|
@property (nonatomic, strong) OHAttributedLabel *activityLabel;
|
2012-07-13 16:02:21 -07:00
|
|
|
|
2012-07-16 23:48:07 -07:00
|
|
|
- (int)refreshActivity:(NSDictionary *)activity withUsername:(NSString *)username withWidth:(int)width;
|
2012-07-16 19:45:14 -07:00
|
|
|
- (NSString *)stripFormatting:(NSString *)str;
|
2012-07-13 16:02:21 -07:00
|
|
|
|
|
|
|
@end
|