| /* |
| * Copyright (C) 2016 Apple Inc. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| * THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #import "TabViewController.h" |
| |
| #import "WebViewController.h" |
| #import <WebKit/WKWebView.h> |
| |
| void *ContentSizeContext = &ContentSizeContext; |
| |
| @implementation TabViewController |
| |
| - (void)dealloc |
| { |
| [self.tableView removeObserver:self forKeyPath:@"contentSize" context:ContentSizeContext]; |
| } |
| |
| - (void)viewDidLoad |
| { |
| [super viewDidLoad]; |
| [self.tableView addObserver:self forKeyPath:@"contentSize" options:NSKeyValueObservingOptionNew context:ContentSizeContext]; |
| } |
| |
| - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context |
| { |
| if (context == ContentSizeContext) |
| self.preferredContentSize = CGSizeMake(self.preferredContentSize.width, self.tableView.contentSize.height); |
| } |
| |
| - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath |
| { |
| static NSString *MyIdentifier = @"MyReuseIdentifier"; |
| UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier]; |
| if (!cell) |
| cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier]; |
| |
| if (indexPath.section == 1) { |
| cell.textLabel.text = @"New..."; |
| return cell; |
| } |
| |
| WKWebView *webView = [self.parent.webViews objectAtIndex:indexPath.row]; |
| cell.textLabel.text = webView.title; |
| return cell; |
| } |
| |
| - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section |
| { |
| if (section == 1) |
| return 1; |
| return self.parent.webViews.count; |
| } |
| |
| - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView |
| { |
| return 2; |
| } |
| |
| - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath |
| { |
| return indexPath.section != 1; |
| } |
| |
| - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath |
| { |
| return NO; |
| } |
| |
| - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath |
| { |
| if (indexPath.section == 2) |
| return; |
| |
| [self.parent removeWebViewAtIndex:indexPath.row]; |
| [tableView reloadData]; |
| } |
| |
| - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath |
| { |
| if (indexPath.section == 1) |
| [self.parent addWebView]; |
| else |
| [self.parent selectWebViewAtIndex:indexPath.row]; |
| [self.parent dismissViewControllerAnimated:YES completion:nil]; |
| } |
| |
| @end |