Junius Gunaratne 2873e798f2 [Themes] Add ability to change catalog theme (#1477)
Discussed merge with Ian offline. Issues with Travis CI may be resolved once the PR is merged.

* Add color to tiles.

* Add theming to catalog

* Update text field tile.

* Implementation method signatures should match those in header.

* Update MDCDrawFunc typedef

* Pass color scheme through NSNotification

* Add component theming

* Add tabbar themer

* Update tab example to use UIAppearance

* Theme sliders based on UIAppearance proxy

* Allow any class conforming to MDCColorScheme

* Override navigation bar color theme for imagery example.

* Update AppBar and ButtonBar color theming

* Update button bar themer comment

* Update button theming

* Remove theme imports where not necessary.

* Fix case of private
2017-06-23 11:36:48 -04:00

108 lines
3.3 KiB
Objective-C

/*
Copyright 2016-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 <UIKit/UIKit.h>
#import "MaterialButtonBar.h"
@interface ButtonBarTypicalUseExample : UIViewController
@end
@implementation ButtonBarTypicalUseExample
- (void)viewDidLoad {
[super viewDidLoad];
MDCButtonBar *buttonBar = [[MDCButtonBar alloc] init];
// MDCButtonBar ignores the style of UIBarButtonItem.
UIBarButtonItemStyle ignored = UIBarButtonItemStyleDone;
UIBarButtonItem *actionItem =
[[UIBarButtonItem alloc] initWithTitle:@"Action"
style:ignored
target:self
action:@selector(didTapActionButton:)];
UIBarButtonItem *secondActionItem =
[[UIBarButtonItem alloc] initWithTitle:@"Second action"
style:ignored
target:self
action:@selector(didTapActionButton:)];
NSArray *items = @[ actionItem, secondActionItem ];
// Set the title text attributes before assigning to buttonBar.items
// because of https://github.com/material-components/material-components-ios/issues/277
for (UIBarButtonItem *item in items) {
[item setTitleTextAttributes:@{ NSForegroundColorAttributeName : [UIColor whiteColor] }
forState:UIControlStateNormal];
}
buttonBar.items = items;
// MDCButtonBar's sizeThatFits gives a "best-fit" size of the provided items.
CGSize size = [buttonBar sizeThatFits:self.view.bounds.size];
CGFloat x = (self.view.bounds.size.width - size.width) / 2;
CGFloat y = self.view.bounds.size.height / 2 - size.height;
buttonBar.frame = CGRectMake(x, y, size.width, size.height);
buttonBar.autoresizingMask =
(UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin |
UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin);
[self.view addSubview:buttonBar];
// Ensure that the controller's view isn't transparent.
self.view.backgroundColor = [UIColor colorWithWhite:0.9 alpha:1.0];
}
#pragma mark - User actions
- (void)didTapActionButton:(id)sender {
NSLog(@"Did tap action item: %@", sender);
}
@end
@implementation ButtonBarTypicalUseExample (CatalogByConvention)
+ (NSArray *)catalogBreadcrumbs {
return @[ @"Button Bar", @"Button Bar" ];
}
+ (BOOL)catalogIsPrimaryDemo {
return YES;
}
+ (NSString *)catalogDescription {
return @"The Button Bar is a view that represents a list of UIBarButtonItems as"
" horizontally-aligned buttons.";
}
@end
#pragma mark - Typical application code (not Material-specific)
@implementation ButtonBarTypicalUseExample (GeneralApplicationLogic)
- (id)init {
self = [super init];
if (self) {
self.title = @"Button Bar";
}
return self;
}
@end