material-components_materia.../components/ButtonBar/examples/ButtonBarTypicalUseExample.swift
Jeff Verkoeyen 4b435d3e9e First pass at resolving swiftlint warnings.
Summary:
All changes are a result of warnings from swiftlint.

https://github.com/realm/swiftlint

This includes the following changes:

- Removing semicolons.
- Removing excess `(` and `)` on conditionals.
- Keeping `:` spacing consistent.
- Preferring modern Swift constructors, e.g. CGRect() over CGRectMake
- Avoiding forced type casting, preferring optional casting instead.

Reviewers: ajsecord, junius, #mdc_ios_owners

Reviewed By: ajsecord, junius, #mdc_ios_owners

Subscribers: ajsecord

Projects: #material_components_ios

Differential Revision: http://codereview.cc/D478
2016-04-05 11:06:10 -04:00

100 lines
3.0 KiB
Swift

/*
Copyright 2016-present Google Inc. 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 Foundation
import MaterialComponents
class ButtonBarTypicalUseSwiftExample: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let buttonBar = MDCButtonBar()
buttonBar.backgroundColor = self.buttonBarBackgroundColor()
// MDCButtonBar ignores the style of UIBarButtonItem.
let ignored: UIBarButtonItemStyle = .Done
let actionItem = UIBarButtonItem(
title: "Action",
style: ignored,
target: self,
action: "didTapActionButton:"
)
let secondActionItem = UIBarButtonItem(
title: "Second action",
style: ignored,
target: self,
action: "didTapActionButton:"
)
let items = [actionItem, secondActionItem]
// Set the title text attributes before assigning to buttonBar.items
// because of https://github.com/google/material-components-ios/issues/277
for item in items {
item.setTitleTextAttributes(self.itemTitleTextAttributes(), forState: .Normal)
}
buttonBar.items = items
// MDCButtonBar's sizeThatFits gives a "best-fit" size of the provided items.
let size = buttonBar.sizeThatFits(self.view.bounds.size)
buttonBar.frame = CGRect(x: 0, y: 100, width: size.width, height: size.height)
buttonBar.autoresizingMask = [.FlexibleWidth, .FlexibleTopMargin]
self.view.addSubview(buttonBar)
// Ensure that the controller's view isn't transparent.
self.view.backgroundColor = UIColor.whiteColor()
}
func didTapActionButton(sender: AnyObject) {
print("Did tap action item: \(sender)")
}
// MARK: Typical application code (not Material-specific)
override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: NSBundle?) {
super.init(nibName: nibNameOrNil, bundle: nibBundleOrNil)
self.title = "Typical use"
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
}
// MARK: Catalog by convention
extension ButtonBarTypicalUseSwiftExample {
class func catalogBreadcrumbs() -> [String] {
return ["Button Bar", "Swift", "Typical use"]
}
}
// MARK: - Typical application code (not Material-specific)
extension ButtonBarTypicalUseSwiftExample {
func buttonBarBackgroundColor() -> UIColor {
return UIColor(red: 0.012, green: 0.663, blue: 0.957, alpha: 0.2)
}
func itemTitleTextAttributes () -> [String:AnyObject] {
let textColor = UIColor(white: 0, alpha: 0.8)
return [NSForegroundColorAttributeName:textColor]
}
}