mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-08 21:49:41 +00:00
25 lines
424 B
Objective-C
25 lines
424 B
Objective-C
//
|
|
// PageNode.m
|
|
// Sample
|
|
//
|
|
// Created by McCallum, Levi on 12/7/15.
|
|
// Copyright © 2015 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import "PageNode.h"
|
|
|
|
@implementation PageNode
|
|
|
|
- (ASLayout *)calculateLayoutThatFits:(ASSizeRange)constrainedSize
|
|
{
|
|
return [ASLayout layoutWithLayoutableObject:self size:constrainedSize.max];
|
|
}
|
|
|
|
- (void)fetchData
|
|
{
|
|
[super fetchData];
|
|
NSLog(@"Fetching data for node: %@", self);
|
|
}
|
|
|
|
@end
|