mirror of
https://github.com/material-components/material-components-ios.git
synced 2026-02-20 08:27:32 +08:00
* [Chips] Chip component * Update description * Readme fixes * NSMutableArray -> NSArray * Use MDCSlider * Chips examples CBC * MDCChipCollectionViewCell.m * Sanitize example * Left align single-item rows * Copy * Check mark * Use static inline instead of #define * initWithFrame:CGRectZero * encoding decoding * GGRectGetMinX * If no title color has been set for a given state... * Use new icons * rm init override * alwaysAnimateCellResize -> alwaysAnimateResize * MDCChipCollectionViewCell initWithCoder * Fix MDCChipView encoding * Fix indent * Fix sizing images * Use UIEdgeInsetsInsetRect * Layout around hidden accessory view * TODO Pull background color from MDCPalette * Add The chip uses this property to determine intrinsicContentSize and sizeThatFits. * Use static functions instead of UIColor extension * sizeToFit -> setNeedsLayout
81 lines
2.5 KiB
Objective-C
81 lines
2.5 KiB
Objective-C
/*
|
|
Copyright 2017-present the Material Components for iOS authors. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
#import "ChipsExamplesSupplemental.h"
|
|
|
|
#import "MaterialChips.h"
|
|
|
|
@implementation ChipsChoiceExampleViewController
|
|
|
|
- (void)loadView {
|
|
[super loadView];
|
|
self.view.backgroundColor = [UIColor whiteColor];
|
|
|
|
CGSize estimatedItemSize = CGSizeMake(60, 33);
|
|
CGRect collectionStartingRect = CGRectMake(0, 0, 100, estimatedItemSize.height);
|
|
|
|
UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
|
|
layout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
|
|
layout.minimumInteritemSpacing = 10.0f;
|
|
layout.estimatedItemSize = estimatedItemSize;
|
|
|
|
_collectionView = [[UICollectionView alloc] initWithFrame:collectionStartingRect
|
|
collectionViewLayout:layout];
|
|
_collectionView.dataSource = self;
|
|
_collectionView.delegate = self;
|
|
_collectionView.backgroundColor = [UIColor whiteColor];
|
|
_collectionView.delaysContentTouches = NO;
|
|
_collectionView.clipsToBounds = NO;
|
|
[_collectionView registerClass:[MDCChipCollectionViewCell class]
|
|
forCellWithReuseIdentifier:@"Cell"];
|
|
|
|
[self.view addSubview:_collectionView];
|
|
}
|
|
|
|
- (void)viewWillLayoutSubviews {
|
|
[super viewWillLayoutSubviews];
|
|
|
|
_collectionView.frame = CGRectMake(0, 0, CGRectGetWidth(self.view.frame), 33);
|
|
}
|
|
|
|
- (NSInteger)collectionView:(UICollectionView *)collectionView
|
|
numberOfItemsInSection:(NSInteger)section {
|
|
return self.titles.count;
|
|
}
|
|
|
|
- (__kindof UICollectionViewCell *)collectionView:(UICollectionView *)collectionView
|
|
cellForItemAtIndexPath:(NSIndexPath *)indexPath {
|
|
MDCChipCollectionViewCell *cell =
|
|
[collectionView dequeueReusableCellWithReuseIdentifier:@"Cell" forIndexPath:indexPath];
|
|
cell.chipView.titleLabel.text = self.titles[indexPath.row];
|
|
return cell;
|
|
}
|
|
|
|
- (NSArray *)titles {
|
|
if (!_titles) {
|
|
_titles = @[
|
|
@"The Bronx",
|
|
@"Brooklyn",
|
|
@"Manhattan",
|
|
@"Queens",
|
|
@"Staten Island",
|
|
];
|
|
}
|
|
return _titles;
|
|
}
|
|
|
|
@end
|