mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
30 lines
353 B
Objective-C
30 lines
353 B
Objective-C
#import "TGModernGalleryImageItemContainerView.h"
|
|
|
|
@interface TGModernGalleryImageItemContainerLayer : CALayer
|
|
|
|
@end
|
|
|
|
@implementation TGModernGalleryImageItemContainerLayer
|
|
|
|
- (void)setNeedsLayout
|
|
{
|
|
}
|
|
|
|
- (void)layoutSublayers
|
|
{
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation TGModernGalleryImageItemContainerView
|
|
|
|
- (void)setNeedsLayout
|
|
{
|
|
}
|
|
|
|
- (void)layoutSubviews
|
|
{
|
|
}
|
|
|
|
@end
|