Skip to content
This repository was archived by the owner on Feb 2, 2023. It is now read-only.

Commit 406bcfa

Browse files
committed
Merge pull request #671 from Adlai-Holler/xcode-7
Enable Xcode 7 by default for Travis build server.
2 parents e1add1c + a1236a9 commit 406bcfa

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
language: objective-c
2+
osx_image: xcode7
23
before_install:
34
- brew update
45
- brew reinstall xctool

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
22

33
# **** Update me when new Xcode versions are released! ****
4-
PLATFORM="platform=iOS Simulator,OS=8.1,name=iPhone 6"
5-
SDK="iphonesimulator8.1"
4+
PLATFORM="platform=iOS Simulator,OS=9.0,name=iPhone 6"
5+
SDK="iphonesimulator9.0"
66

77

88
# It is pitch black.

examples/Swift/Sample.xcodeproj/project.pbxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@
129129
050E7C6619D22E19004363C2 /* Project object */ = {
130130
isa = PBXProject;
131131
attributes = {
132+
LastSwiftUpdateCheck = 0700;
132133
LastUpgradeCheck = 0600;
133134
ORGANIZATIONNAME = Facebook;
134135
TargetAttributes = {

examples/Swift/Sample/ViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class ViewController: UIViewController, ASTableViewDataSource, ASTableViewDelega
2727
self.tableView.asyncDelegate = self
2828
}
2929

30-
required init(coder aDecoder: NSCoder) {
30+
required init?(coder aDecoder: NSCoder) {
3131
fatalError("storyboards are incompatible with truth and beauty")
3232
}
3333

0 commit comments

Comments
 (0)