mirror of
https://github.com/material-components/material-components-ios.git
synced 2026-02-20 08:27:32 +08:00
148 lines
4.5 KiB
Objective-C
148 lines
4.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 <UIKit/UIKit.h>
|
|
|
|
#import "MaterialAppBar.h"
|
|
|
|
@interface AppBarSectionHeadersExample : UITableViewController
|
|
|
|
// Step 1: Create an App Bar.
|
|
@property(nonatomic, strong) MDCAppBar *appBar;
|
|
|
|
@end
|
|
|
|
@implementation AppBarSectionHeadersExample
|
|
|
|
- (id)init {
|
|
self = [super init];
|
|
if (self) {
|
|
self.title = @"App Bar";
|
|
|
|
// Step 2: Initialize the App Bar and add the headerViewController as a child.
|
|
_appBar = [[MDCAppBar alloc] init];
|
|
[self addChildViewController:_appBar.headerViewController];
|
|
|
|
// Optional: Change the App Bar's background color and tint color.
|
|
UIColor *color = [UIColor colorWithWhite:0.2f alpha:1];
|
|
_appBar.headerViewController.headerView.backgroundColor = color;
|
|
_appBar.navigationBar.tintColor = [UIColor whiteColor];
|
|
_appBar.navigationBar.titleTextAttributes = @{
|
|
NSForegroundColorAttributeName : [UIColor whiteColor],
|
|
};
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
|
|
// Recommended step: Set the tracking scroll view.
|
|
self.appBar.headerViewController.headerView.trackingScrollView = self.tableView;
|
|
|
|
// Choice: If you do not need to implement any delegate methods and you are not using a
|
|
// collection view, you can use the headerViewController as the delegate.
|
|
// Alternative: See AppBarDelegateForwardingExample.
|
|
self.tableView.delegate = self.appBar.headerViewController;
|
|
|
|
// Step 3: Register the App Bar views.
|
|
[self.appBar addSubviewsToParent];
|
|
|
|
self.tableView.layoutMargins = UIEdgeInsetsZero;
|
|
|
|
self.navigationItem.rightBarButtonItem =
|
|
[[UIBarButtonItem alloc] initWithTitle:@"Right"
|
|
style:UIBarButtonItemStyleDone
|
|
target:nil
|
|
action:nil];
|
|
}
|
|
|
|
// Optional step: If you allow the header view to hide the status bar you must implement this
|
|
// method and return the headerViewController.
|
|
- (UIViewController *)childViewControllerForStatusBarHidden {
|
|
return self.appBar.headerViewController;
|
|
}
|
|
|
|
// Optional step: The Header View Controller does basic inspection of the header view's background
|
|
// color to identify whether the status bar should be light or dark-themed.
|
|
- (UIViewController *)childViewControllerForStatusBarStyle {
|
|
return self.appBar.headerViewController;
|
|
}
|
|
|
|
- (void)viewWillAppear:(BOOL)animated {
|
|
[super viewWillAppear:animated];
|
|
|
|
[self.navigationController setNavigationBarHidden:YES animated:animated];
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation AppBarSectionHeadersExample (CatalogByConvention)
|
|
|
|
+ (NSArray *)catalogBreadcrumbs {
|
|
return @[ @"App Bar", @"UITableView with section headers" ];
|
|
}
|
|
|
|
+ (BOOL)catalogIsPrimaryDemo {
|
|
return NO;
|
|
}
|
|
|
|
- (BOOL)catalogShouldHideNavigation {
|
|
return YES;
|
|
}
|
|
|
|
+ (BOOL)catalogIsPresentable {
|
|
return YES;
|
|
}
|
|
|
|
@end
|
|
|
|
#pragma mark - Typical application code (not Material-specific)
|
|
|
|
@implementation AppBarSectionHeadersExample (UITableViewDataSource)
|
|
|
|
- (UITableViewCell *)tableView:(UITableView *)tableView
|
|
cellForRowAtIndexPath:(NSIndexPath *)indexPath {
|
|
UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@"cell"];
|
|
if (!cell) {
|
|
cell =
|
|
[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
|
|
}
|
|
cell.layoutMargins = UIEdgeInsetsZero;
|
|
cell.textLabel.text = indexPath.section == 0 ? @"Demo" : @"Example";
|
|
return cell;
|
|
}
|
|
|
|
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
|
|
return 2;
|
|
}
|
|
|
|
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
|
|
return 25;
|
|
}
|
|
|
|
- (NSString *)tableView:(UITableView*)tableView
|
|
titleForHeaderInSection:(NSInteger)section {
|
|
return section == 0 ? @"D" : @"E";
|
|
}
|
|
|
|
- (NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView {
|
|
return [NSArray arrayWithObjects:@"D", @"E", nil];
|
|
}
|
|
|
|
@end
|
|
|