[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:
Mazyad Alabduljaleel 2014-06-30 14:01:26 +04:00
parent c71041d4b5
commit d96f993d68
2 changed files with 7 additions and 2 deletions

View File

@ -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 ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

View File

@ -101,6 +101,11 @@ static inline CGFloat AACStatusBarHeight()
return self;
}
- (void)dealloc
{
_scrollView.delegate = _delegateProxy.originalDelegate;
}
#pragma mark - Properties
- (void)setViewController:(UIViewController *)viewController