mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-24 07:05:35 +00:00
23 lines
536 B
Objective-C
23 lines
536 B
Objective-C
//
|
|
// ASImageNode+Private.h
|
|
// AsyncDisplayKit
|
|
//
|
|
// Created by Michael Schneider on 12/3/16.
|
|
// Copyright © 2016 Facebook. All rights reserved.
|
|
//
|
|
|
|
#pragma mark - ASImageNode
|
|
|
|
#import "ASImageNode.h"
|
|
|
|
@interface ASImageNode (Private)
|
|
|
|
/*
|
|
* Set the image property of the ASImageNode. Subclasses like ASNetworkImageNode do not allow setting the
|
|
* image property directly and throw an assertion. There still needs to be a way for subclasses of
|
|
* ASNetworkImageNode to set the image.
|
|
*/
|
|
- (void)__setImage:(UIImage *)image;
|
|
|
|
@end
|