Skip to content
This repository has been archived by the owner on Nov 21, 2017. It is now read-only.

Commit

Permalink
Xcode 8 beta 6 build error fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Verkoeyen committed Aug 19, 2016
1 parent 9ed11bc commit 7bc5169
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ EXTERNAL SOURCES:

CHECKOUT OPTIONS:
MaterialMotionRuntime:
:commit: 4efc25cb53c264b78b736277e9d8d3e2afaf9620
:commit: 6fd31d275d7fda65331ed170ae393de8f84f6e2f
:git: https://github.com/material-motion/material-motion-runtime-objc.git

SPEC CHECKSUMS:
Expand Down
2 changes: 1 addition & 1 deletion examples/apps/Catalog/Catalog/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {

var window: UIWindow?

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey : Any]? = nil) -> Bool {
let window = UIWindow(frame: UIScreen.main.bounds)
self.window = window
window.rootViewController = UINavigationController(rootViewController: PopupMenuViewController())
Expand Down
2 changes: 1 addition & 1 deletion src/CoreAnimationMotionFamily.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extension CAAnimation: Plan {
var willStart: DelegatedPerformanceTokenReturnBlock!
var didEnd: DelegatedPerformanceTokenArgBlock!

required init(target: AnyObject) {
required init(target: Any) {
if let view = target as? UIView {
self.target = view.layer
} else {
Expand Down

0 comments on commit 7bc5169

Please sign in to comment.