利用IOStoolbar自身的动态模糊效果
UIToolbar *toolbar = [[UIToolbar alloc] initWithFrame:self.view.bounds];
toolbar.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
//toolbar.barTintColor = _view.tintColor;设置bar的颜色
[_view setBackgroundColor:[UIColor clearColor]];
[_view insertSubview:toolbar atIndex:0];
//如果view是TableView建议用setBackgroundView:
//[_view setBackgroundView:toolbar];