mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-15 08:27:52 +00:00
20 lines
445 B
Objective-C
20 lines
445 B
Objective-C
//
|
|
// PhotoTableViewCell.h
|
|
// ASDKgram
|
|
//
|
|
// Created by Hannah Troisi on 2/17/16.
|
|
// Copyright © 2016 Hannah Troisi. All rights reserved.
|
|
//
|
|
|
|
#import <CoreLocation/CLLocation.h>
|
|
#import "PhotoModel.h"
|
|
|
|
@interface PhotoTableViewCell : UITableViewCell
|
|
|
|
+ (CGFloat)heightForPhotoModel:(PhotoModel *)photo withWidth:(CGFloat)width;
|
|
|
|
- (void)updateCellWithPhotoObject:(PhotoModel *)photo;
|
|
- (void)loadCommentsForPhoto:(PhotoModel *)photo;
|
|
|
|
@end
|