Skip to content

Commit f5c1d6e

Browse files
author
Daniel Dahan
committed
issue-924: Fixed NavigationController display in iOS 10.
1 parent 341a3dc commit f5c1d6e

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.12.12
2+
3+
* [issue-924](https://github.com/CosmicMind/Material/issues/924): Fixed NavigationController display in iOS 10.
4+
15
## 2.12.11
26

37
* Fixed iPhoneX topLayoutGuide constraints not properly being set for StatusBarController types.

Material.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Material'
3-
s.version = '2.12.11'
3+
s.version = '2.12.12'
44
s.license = 'BSD-3-Clause'
55
s.summary = 'A UI/UX framework for creating beautiful applications.'
66
s.homepage = 'http://materialswift.com'

Sources/Info.plist

+1-1
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>2.12.11</string>
18+
<string>2.12.12</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Sources/iOS/NavigationBar.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,6 @@ internal extension NavigationBar {
231231
}
232232

233233
item.titleView = toolbar
234-
item.titleView!.frame = frame
234+
item.titleView!.frame = bounds
235235
}
236236
}

0 commit comments

Comments
 (0)