mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-02-16 07:41:08 +00:00
21 lines
464 B
Objective-C
21 lines
464 B
Objective-C
//
|
|
// PhotoCellNode.h
|
|
// Flickrgram
|
|
//
|
|
// Created by Hannah Troisi on 2/17/16.
|
|
// Copyright © 2016 Hannah Troisi. All rights reserved.
|
|
//
|
|
|
|
#import <CoreLocation/CLLocation.h>
|
|
#import "PhotoModel.h"
|
|
#import <AsyncDisplayKit/AsyncDisplayKit.h>
|
|
#import "PhotoTableViewCell.h" // PhotoTableViewCellProtocol
|
|
|
|
|
|
@interface PhotoCellNode : ASCellNode
|
|
|
|
- (instancetype)initWithPhotoObject:(PhotoModel *)photo;
|
|
- (void)loadCommentsForPhoto:(PhotoModel *)photo;
|
|
|
|
@end
|