Smallfly

Results 6 issues of Smallfly

### New Issue Checklist 🚫 If this template is not filled out your issue **will** be closed with no comment. 🚫 * [x] I have looked at the [Documentation](http://snapkit.io/docs) *...

question

https://github.com/iostalks/MMPopupView/tree/fix

- fixed sheet and custom animation. - removed blur effect which always exist after first time apply to attachView.

不足之处,请多指教哦

``` MMAlertView *inputView = [[MMAlertView alloc] initWithInputTitle:@"Title" detail:@"" placeholder:palceHolder handler:^(NSString *text) { // 想在点击确定的的时候消失。 }]; [inputView show]; ``` 串神,我在使用有输入框的 AlertView 时,点击取消时会自动消失,点击确定的时候不消失。想在 block 回调的时候调用消失方法,但是此时实例还没初始化,又不能捕获到自己的实例。 暂时的处理是,直接在源码里面 self.inputHandler() 前调了下 hide .... 不知道有没有什么其他的解决办法?