mirror of
https://github.com/HackPlan/AsyncDisplayKit.git
synced 2026-03-29 16:48:59 +08:00
19 lines
384 B
Objective-C
19 lines
384 B
Objective-C
//
|
|
// CommentView.h
|
|
// Flickrgram
|
|
//
|
|
// Created by Hannah Troisi on 3/9/16.
|
|
// Copyright © 2016 Hannah Troisi. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "CommentFeedModel.h"
|
|
|
|
@interface CommentView : UIView
|
|
|
|
+ (CGFloat)heightForCommentFeedModel:(CommentFeedModel *)feed withWidth:(CGFloat)width;
|
|
|
|
- (void)updateWithCommentFeedModel:(CommentFeedModel *)feed;
|
|
|
|
@end
|