fixes #3
[FIX]: Crash when you keep the scrollview around longer than the ShyNavBarManager.. need to remove our proxy in time. [NEW]: cocoaPods version bump
This commit is contained in:
parent
c71041d4b5
commit
d96f993d68
|
|
@ -16,7 +16,7 @@ Pod::Spec.new do |s|
|
|||
#
|
||||
|
||||
s.name = "TLYShyNavBar"
|
||||
s.version = "0.9.2"
|
||||
s.version = "0.9.3"
|
||||
s.summary = "TLYShyNavBar makes your UINavigationBar expand/shrink by adding just a single line. It also comes with extension view support!"
|
||||
|
||||
s.description = <<-DESC
|
||||
|
|
@ -81,7 +81,7 @@ Pod::Spec.new do |s|
|
|||
# Supports git, hg, bzr, svn and HTTP.
|
||||
#
|
||||
|
||||
s.source = { :git => "https://github.com/telly/TLYShyNavBar.git", :tag => "0.9.2" }
|
||||
s.source = { :git => "https://github.com/telly/TLYShyNavBar.git", :tag => "0.9.3" }
|
||||
|
||||
|
||||
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
|
||||
|
|
|
|||
|
|
@ -101,6 +101,11 @@ static inline CGFloat AACStatusBarHeight()
|
|||
return self;
|
||||
}
|
||||
|
||||
- (void)dealloc
|
||||
{
|
||||
_scrollView.delegate = _delegateProxy.originalDelegate;
|
||||
}
|
||||
|
||||
#pragma mark - Properties
|
||||
|
||||
- (void)setViewController:(UIViewController *)viewController
|
||||
|
|
|
|||
Loading…
Reference in New Issue