Skip to content
This repository was archived by the owner on May 13, 2020. It is now read-only.

Commit c700bb1

Browse files
committed
migrate to swift 4.2/xcode 10
1 parent c461ddc commit c700bb1

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

RxReduce.xcodeproj/project.pbxproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,11 @@
223223
TargetAttributes = {
224224
1A2A7566208D474F009883BF = {
225225
CreatedOnToolsVersion = 9.3;
226-
LastSwiftMigration = 0930;
226+
LastSwiftMigration = 1000;
227227
};
228228
1A2A756F208D4750009883BF = {
229229
CreatedOnToolsVersion = 9.3;
230+
LastSwiftMigration = 1000;
230231
};
231232
};
232233
};
@@ -466,7 +467,7 @@
466467
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
467468
SKIP_INSTALL = YES;
468469
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
469-
SWIFT_VERSION = 4.0;
470+
SWIFT_VERSION = 4.2;
470471
TARGETED_DEVICE_FAMILY = "1,2";
471472
};
472473
name = Debug;
@@ -497,7 +498,7 @@
497498
PRODUCT_BUNDLE_IDENTIFIER = io.warpfactor.RxReduce;
498499
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
499500
SKIP_INSTALL = YES;
500-
SWIFT_VERSION = 4.0;
501+
SWIFT_VERSION = 4.2;
501502
TARGETED_DEVICE_FAMILY = "1,2";
502503
};
503504
name = Release;
@@ -520,7 +521,7 @@
520521
);
521522
PRODUCT_BUNDLE_IDENTIFIER = io.warpfactor.RxReduceTests;
522523
PRODUCT_NAME = "$(TARGET_NAME)";
523-
SWIFT_VERSION = 4.0;
524+
SWIFT_VERSION = 4.2;
524525
TARGETED_DEVICE_FAMILY = "1,2";
525526
};
526527
name = Debug;
@@ -543,7 +544,7 @@
543544
);
544545
PRODUCT_BUNDLE_IDENTIFIER = io.warpfactor.RxReduceTests;
545546
PRODUCT_NAME = "$(TARGET_NAME)";
546-
SWIFT_VERSION = 4.0;
547+
SWIFT_VERSION = 4.2;
547548
TARGETED_DEVICE_FAMILY = "1,2";
548549
};
549550
name = Release;

RxReduceDemo/RxReduceDemo.xcodeproj/project.pbxproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@
259259
TargetAttributes = {
260260
4A3BB47F20939F9000B1E37F = {
261261
CreatedOnToolsVersion = 9.3;
262+
LastSwiftMigration = 1000;
262263
};
263264
};
264265
};
@@ -499,7 +500,7 @@
499500
);
500501
PRODUCT_BUNDLE_IDENTIFIER = io.warpfactor.RxReduceDemo;
501502
PRODUCT_NAME = "$(TARGET_NAME)";
502-
SWIFT_VERSION = 4.0;
503+
SWIFT_VERSION = 4.2;
503504
TARGETED_DEVICE_FAMILY = "1,2";
504505
};
505506
name = Debug;
@@ -521,7 +522,7 @@
521522
);
522523
PRODUCT_BUNDLE_IDENTIFIER = io.warpfactor.RxReduceDemo;
523524
PRODUCT_NAME = "$(TARGET_NAME)";
524-
SWIFT_VERSION = 4.0;
525+
SWIFT_VERSION = 4.2;
525526
TARGETED_DEVICE_FAMILY = "1,2";
526527
};
527528
name = Release;

RxReduceDemo/RxReduceDemo/Features/MovieList/MovieListViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ final class MovieListViewController: UITableViewController, StoryboardBased, Vie
2323
private var movies = [DiscoverMovieModel]()
2424

2525
private lazy var activityIndicator: UIActivityIndicatorView = {
26-
let indicator = UIActivityIndicatorView(activityIndicatorStyle: .gray)
26+
let indicator = UIActivityIndicatorView(style: .gray)
2727
indicator.hidesWhenStopped = true
2828
indicator.color = .black
2929
indicator.frame = self.view.frame

0 commit comments

Comments
 (0)