mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-13 09:50:17 +00:00
* Locking improvements for ASNetworkImageNode * Fix typo * Address comments * Address comments * Change comment to kick build
17 lines
279 B
Objective-C
17 lines
279 B
Objective-C
//
|
|
// ASImageNode+Private.h
|
|
// AsyncDisplayKit
|
|
//
|
|
// Created by Michael Schneider on 3/20/17.
|
|
// Copyright © 2017 Facebook. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
@interface ASImageNode (Private)
|
|
|
|
- (void)_locked_setImage:(UIImage *)image;
|
|
- (UIImage *)_locked_Image;
|
|
|
|
@end
|