NewsBlur/media/ios/Classes/ActivityCell.h
2012-07-16 23:48:07 -07:00

21 lines
485 B
Objective-C

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