blob: 92bd7717bc26e720b36d353cfb3e3f7cef670eaf [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/showcase/settings/sc_settings_coordinator.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
@implementation SCSettingsCoordinator
@synthesize baseViewController;
- (void)start {
UIViewController* settings = [[UIViewController alloc] init];
settings.title = @"Settings";
settings.view.backgroundColor = [UIColor grayColor];
[self.baseViewController pushViewController:settings animated:YES];
}
@end