#pragma mark 在内部固定自己的宽高
- (void)setFrame:(CGRect)frame
{
frame.size.width = [UIScreen mainScreen].bounds.size.width;
frame.size.height = kStatusDockHeight;
[super setFrame:frame];
}