mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-08 05:30:47 +00:00
18 lines
358 B
Objective-C
18 lines
358 B
Objective-C
//
|
|
// CommentView.h
|
|
// ASDKgram
|
|
//
|
|
// Created by Hannah Troisi on 3/9/16.
|
|
// Copyright © 2016 Hannah Troisi. All rights reserved.
|
|
//
|
|
|
|
#import "CommentFeedModel.h"
|
|
|
|
@interface CommentView : UIView
|
|
|
|
+ (CGFloat)heightForCommentFeedModel:(CommentFeedModel *)feed withWidth:(CGFloat)width;
|
|
|
|
- (void)updateWithCommentFeedModel:(CommentFeedModel *)feed;
|
|
|
|
@end
|