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
83 lines
2.6 KiB
Objective-C
83 lines
2.6 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"
|
|
#import "MaterialSlider.h"
|
|
|
|
@implementation ChipsSizingExampleViewController {
|
|
MDCChipView *_chipView;
|
|
MDCSlider *_widthSlider;
|
|
MDCSlider *_heightSlider;
|
|
}
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
|
|
self.view.backgroundColor = [UIColor whiteColor];
|
|
|
|
_chipView = [[MDCChipView alloc] init];
|
|
_chipView.titleLabel.text = @"Material";
|
|
_chipView.imageView.image = [self faceImage];
|
|
_chipView.accessoryView = [self deleteButton];
|
|
[self.view addSubview:_chipView];
|
|
|
|
CGSize chipSize = [_chipView sizeThatFits:self.view.bounds.size];
|
|
_chipView.frame = (CGRect) { CGPointMake(20, 20), chipSize };
|
|
|
|
_widthSlider = [[MDCSlider alloc] initWithFrame:CGRectZero];
|
|
_widthSlider.maximumValue = 200;
|
|
_widthSlider.value = _chipView.frame.size.width;
|
|
[_widthSlider addTarget:self
|
|
action:@selector(widthSliderChanged:)
|
|
forControlEvents:UIControlEventValueChanged];
|
|
[self.view addSubview:_widthSlider];
|
|
|
|
_heightSlider = [[MDCSlider alloc] initWithFrame:CGRectZero];
|
|
_heightSlider.maximumValue = 100;
|
|
_heightSlider.value = _chipView.frame.size.height;
|
|
[_heightSlider addTarget:self
|
|
action:@selector(heightSliderChanged:)
|
|
forControlEvents:UIControlEventValueChanged];
|
|
[self.view addSubview:_heightSlider];
|
|
}
|
|
|
|
- (void)viewWillLayoutSubviews {
|
|
[super viewWillLayoutSubviews];
|
|
|
|
CGSize sliderSize = [_widthSlider sizeThatFits:self.view.bounds.size];
|
|
_widthSlider.frame = CGRectMake(20, 140, self.view.bounds.size.width - 40, sliderSize.height);
|
|
_heightSlider.frame =
|
|
CGRectMake(20, 140 + sliderSize.height + 20, self.view.bounds.size.width - 40, sliderSize.height);
|
|
}
|
|
|
|
- (void)widthSliderChanged:(MDCSlider *)slider {
|
|
CGRect frame = _chipView.frame;
|
|
frame.size.width = slider.value;
|
|
_chipView.frame = frame;
|
|
[_chipView layoutIfNeeded];
|
|
}
|
|
|
|
- (void)heightSliderChanged:(MDCSlider *)slider {
|
|
CGRect frame = _chipView.frame;
|
|
frame.size.height = slider.value;
|
|
_chipView.frame = frame;
|
|
[_chipView layoutIfNeeded];
|
|
}
|
|
|
|
@end
|