mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-09 06:00:43 +00:00
* update VerticalWithinHorizontal example * update SocialAppLayout * update Kittens * update HorizontalWithinVerticalScrolling * update AsyncDisplayKitOverview * update CustomCollectionView * CatDealsCollectionView * update Swift * address @appleguy's comment * updates for tableNode deselectRowAtIndexPath
88 lines
2.5 KiB
Plaintext
88 lines
2.5 KiB
Plaintext
//
|
|
// GradientTableNode.mm
|
|
// Sample
|
|
//
|
|
// Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
|
|
// This source code is licensed under the BSD-style license found in the
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
// FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
//
|
|
|
|
#import "GradientTableNode.h"
|
|
#import "RandomCoreGraphicsNode.h"
|
|
#import "AppDelegate.h"
|
|
|
|
#import <AsyncDisplayKit/ASDisplayNode+Subclasses.h>
|
|
|
|
#import <AsyncDisplayKit/ASStackLayoutSpec.h>
|
|
#import <AsyncDisplayKit/ASInsetLayoutSpec.h>
|
|
|
|
|
|
@interface GradientTableNode () <ASTableDelegate, ASTableDataSource>
|
|
{
|
|
ASTableNode *_tableNode;
|
|
CGSize _elementSize;
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
@implementation GradientTableNode
|
|
|
|
- (instancetype)initWithElementSize:(CGSize)size
|
|
{
|
|
if (!(self = [super init]))
|
|
return nil;
|
|
|
|
_elementSize = size;
|
|
|
|
_tableNode = [[ASTableNode alloc] initWithStyle:UITableViewStylePlain];
|
|
_tableNode.delegate = self;
|
|
_tableNode.dataSource = self;
|
|
|
|
ASRangeTuningParameters rangeTuningParameters;
|
|
rangeTuningParameters.leadingBufferScreenfuls = 1.0;
|
|
rangeTuningParameters.trailingBufferScreenfuls = 0.5;
|
|
[_tableNode setTuningParameters:rangeTuningParameters forRangeType:ASLayoutRangeTypeDisplay];
|
|
|
|
[self addSubnode:_tableNode];
|
|
|
|
return self;
|
|
}
|
|
|
|
- (NSInteger)tableNode:(ASTableNode *)tableNode numberOfRowsInSection:(NSInteger)section
|
|
{
|
|
return 100;
|
|
}
|
|
|
|
- (ASCellNode *)tableNode:(ASTableNode *)tableNode nodeForRowAtIndexPath:(NSIndexPath *)indexPath
|
|
{
|
|
RandomCoreGraphicsNode *elementNode = [[RandomCoreGraphicsNode alloc] init];
|
|
elementNode.style.preferredSize = _elementSize;
|
|
elementNode.indexPath = [NSIndexPath indexPathForRow:indexPath.row inSection:_pageNumber];
|
|
|
|
return elementNode;
|
|
}
|
|
|
|
- (void)tableNode:(ASTableNode *)tableNode didSelectRowAtIndexPath:(NSIndexPath *)indexPath
|
|
{
|
|
[tableNode deselectRowAtIndexPath:indexPath animated:NO];
|
|
[_tableNode reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
|
|
}
|
|
|
|
- (void)layout
|
|
{
|
|
[super layout];
|
|
|
|
_tableNode.frame = self.bounds;
|
|
}
|
|
|
|
@end
|