whyAreYouSoShy

Results 1 comments of whyAreYouSoShy

> 我也刚好碰到了这个问题,说下我的解决思路,是通过拦截以下2个代理方法实现的,具体原因在注释里边都写了: > > ``` > - (void)popupControllerDidPresent:(zhPopupController *)popupController { > // 在view即将出现的时候,主动修改布局来满足底部约束 > [self.xxtActionSheet mas_makeConstraints:^(MASConstraintMaker *make) { > make.left.right.equalTo(self.xxtActionSheet.superview); > make.height.mas_equalTo(74*[self.homeworkDemandList count]); > make.bottom.equalTo(self.mas_bottomLayoutGuide); > }]; > } >...