NewsBlur/media/ios/Classes/ActivityCell.h

20 lines
368 B
C
Raw Normal View History

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>
@interface ActivityCell : UIView {
UILabel *activityLabel;
}
@property (retain, nonatomic) UILabel *activityLabel;
- (void)refreshActivity:(NSDictionary *)activity withUsername:(NSString *)username;
@end