Skip to content

Commit

Permalink
Modify version to 1.10.
Browse files Browse the repository at this point in the history
Former-commit-id: 70da036
  • Loading branch information
leichunfeng committed Jun 1, 2015
1 parent 84f99fd commit 304c439
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion MVVMReactiveCocoa/MRCAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
// iconColor:HexRGB(colorI2)
// iconScale:1
// andSize:CGSizeMake(1024, 1024)];

return YES;
}

Expand Down
4 changes: 2 additions & 2 deletions MVVMReactiveCocoa/MVVMReactiveCocoa-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1</string>
<string>1.10</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand Down Expand Up @@ -72,7 +72,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>156</string>
<string>158</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIAppFonts</key>
Expand Down
4 changes: 2 additions & 2 deletions MVVMReactiveCocoa/View/MRCReposViewController.xib
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="7531" systemVersion="14C1510" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES">
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="7702" systemVersion="14C1510" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES">
<dependencies>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="7520"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="7701"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="MRCReposViewController">
Expand Down
2 changes: 1 addition & 1 deletion MVVMReactiveCocoa/ViewModel/BaseClass/MRCViewModel.m
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ + (instancetype)allocWithZone:(struct _NSZone *)zone {

- (instancetype)initWithServices:(id)services params:(id)params {
self = [super init];
if (self) {
if (self) {
self.shouldFetchLocalDataOnViewModelInitialize = YES;
self.shouldRequestRemoteDataOnViewDidLoad = YES;
self.title = params[@"title"];
Expand Down

0 comments on commit 304c439

Please sign in to comment.