Files
AsyncDisplayKit/examples/ASDKgram/Sample/PhotoTableViewCell.h
2016-03-29 13:00:44 -07:00

21 lines
469 B
Objective-C

//
// PhotoTableViewCell.h
// ASDKgram
//
// Created by Hannah Troisi on 2/17/16.
// Copyright © 2016 Hannah Troisi. All rights reserved.
//
#import <UIKit/UIKit.h>
#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