Skip to content

Commit 13730af

Browse files
committed
update build number
1 parent fb21fc6 commit 13730af

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Example/EmptyDataDemoCollectionViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ extension EmptyDataDemoCollectionViewController: UICollectionViewDelegateFlowLay
190190
}
191191

192192
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAtIndex section: Int) -> UIEdgeInsets {
193-
return UIEdgeInsetsMake(20, 20, 20, 20)
193+
return UIEdgeInsets(top: 20, left: 20, bottom: 20, right: 20)
194194
}
195195

196196
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAtIndex section: Int) -> CGFloat {

Example/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.8</string>
18+
<string>1.9</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>9</string>
22+
<string>10</string>
2323
<key>LSRequiresIPhoneOS</key>
2424
<true/>
2525
<key>UILaunchStoryboardName</key>

TBEmptyDataSet/Supporting Files/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.8</string>
18+
<string>1.9</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

TBEmptyDataSet/WeakObjectContainer.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import Foundation
1010

1111
class WeakObjectContainer: NSObject {
1212
weak var object: AnyObject?
13-
13+
1414
init(object: AnyObject) {
1515
self.object = object
1616
super.init()
1717
}
18-
}
18+
}

0 commit comments

Comments
 (0)