Skip to content

Commit

Permalink
发布1.1.0
Browse files Browse the repository at this point in the history
- 细分缩放动画样式 分为放大 缩小
- 完善内部Hook处理
- 优化旋转处理
- 调整内部阴影视图处理机制
  • Loading branch information
lixiang1994 committed Jul 7, 2017
1 parent 13136f3 commit 73aa0b3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions LEEAlert.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "LEEAlert"
s.version = "1.0.9"
s.version = "1.1.0"
s.summary = "优雅的Alert ActionSheet"

s.homepage = "https://github.com/lixiang1994/LEEAlert"
Expand All @@ -13,7 +13,7 @@ s.author = { "LEE" => "18611401994@163.com" }
s.platform = :ios
s.platform = :ios, "8.0"

s.source = { :git => "https://github.com/lixiang1994/LEEAlert.git", :tag => "1.0.9"}
s.source = { :git => "https://github.com/lixiang1994/LEEAlert.git", :tag => "1.1.0"}

s.source_files = "LEEAlert/**/*.{h,m}"

Expand Down
4 changes: 2 additions & 2 deletions LEEAlertDemo/LEEAlertDemo/ActionSheetTableViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -494,8 +494,8 @@ - (void)base:(NSInteger)index{

// 点击事件Block
})
//.LeeOpenAnimationStyle(LEEAnimationStyleOrientationTop | LEEAnimationStyleZoom) //这里设置打开动画样式的方向为上 以及淡入效果.
//.LeeCloseAnimationStyle(LEEAnimationStyleOrientationBottom | LEEAnimationStyleZoom) //这里设置关闭动画样式的方向为下 以及淡出效果
//.LeeOpenAnimationStyle(LEEAnimationStyleOrientationTop | LEEAnimationStyleZoomShrink) //这里设置打开动画样式的方向为上 以及淡入效果.
//.LeeCloseAnimationStyle(LEEAnimationStyleOrientationBottom | LEEAnimationStyleZoomShrink) //这里设置关闭动画样式的方向为下 以及淡出效果
.LeeOpenAnimationStyle(LEEAnimationStyleOrientationLeft | LEEAnimationStyleFade) //这里设置打开动画样式的方向为左 以及缩放效果.
.LeeCloseAnimationStyle(LEEAnimationStyleOrientationRight | LEEAnimationStyleFade) //这里设置关闭动画样式的方向为右 以及缩放效果
.LeeShow();
Expand Down
4 changes: 2 additions & 2 deletions LEEAlertDemo/LEEAlertDemo/AlertTableViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -532,8 +532,8 @@ - (void)base:(NSInteger)index{
})
.LeeOpenAnimationStyle(LEEAnimationStyleOrientationTop | LEEAnimationStyleFade) //这里设置打开动画样式的方向为上 以及淡入效果.
.LeeCloseAnimationStyle(LEEAnimationStyleOrientationBottom | LEEAnimationStyleFade) //这里设置关闭动画样式的方向为下 以及淡出效果
//.LeeOpenAnimationStyle(LEEAnimationStyleOrientationLeft | LEEAnimationStyleZoom) //这里设置打开动画样式的方向为左 以及缩放效果.
//.LeeCloseAnimationStyle(LEEAnimationStyleOrientationRight | LEEAnimationStyleZoom) //这里设置关闭动画样式的方向为右 以及缩放效果
//.LeeOpenAnimationStyle(LEEAnimationStyleOrientationLeft | LEEAnimationStyleZoomEnlarge) //这里设置打开动画样式的方向为左 以及缩放效果.
//.LeeCloseAnimationStyle(LEEAnimationStyleOrientationRight | LEEAnimationStyleZoomEnlarge) //这里设置关闭动画样式的方向为右 以及缩放效果
.LeeShow();
}
break;
Expand Down

0 comments on commit 73aa0b3

Please sign in to comment.