Skip to content

Commit

Permalink
Update ResourceApp for Xcode 8 beta 6
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlokhorst committed Aug 15, 2016
1 parent afa6000 commit 0034e5d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ResourceApp/ResourceApp/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,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]?) -> Bool {

let defaults = UserDefaults.standard
defaults.setValue(["nl"], forKey: "AppleLanguages")
Expand Down
2 changes: 1 addition & 1 deletion ResourceApp/ResourceAppTests/NibTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class NibTests: XCTestCase {
}

func testNibIsOfCorrectType() {
XCTAssertTrue(R.nib.supplementaryElement.dynamicType.ReusableType.classForCoder() == UICollectionReusableView.classForCoder())
XCTAssertTrue(type(of: R.nib.supplementaryElement).ReusableType.classForCoder() == UICollectionReusableView.classForCoder())
}

}

0 comments on commit 0034e5d

Please sign in to comment.