mirror of
https://github.com/HackPlan/AsyncDisplayKit.git
synced 2026-04-21 18:32:19 +08:00
21 lines
469 B
Objective-C
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
|