mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-19 12:58:29 +00:00
19 lines
368 B
Objective-C
19 lines
368 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>
|
|
|
|
@interface ActivityCell : UIView {
|
|
UILabel *activityLabel;
|
|
}
|
|
|
|
@property (retain, nonatomic) UILabel *activityLabel;
|
|
|
|
- (void)refreshActivity:(NSDictionary *)activity withUsername:(NSString *)username;
|
|
|
|
@end
|