Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ UIColor.defaultShadowImageHidden = true


## Update
- **2020.08.17**
解决问题:解决modal出来一个导航控制然后push到其他Vc,点击返回按钮crash的bug
- **2017.12.09**
解决问题:解决导航栏颜色和标题颜色改变失败的bug

Expand Down
Binary file added WRNavigationBar_swift/.DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ extension UIViewController
return wr_currentViewController(from: tabBarController.selectedViewController!)
}
else if fromVC.presentedViewController != nil {
return wr_currentViewController(from:fromVC.presentingViewController!)
return wr_currentViewController(from:fromVC.presentedViewController!)
}
else {
return fromVC
Expand Down