自定義底部 tool 的時(shí)候設(shè)置自定義按鈕,怎么都不顯示:代碼如下
XHPBottomButton*comBtn = [XHPBottomButtonbuttonWithType:UIButtonTypeCustom];
[self.viewaddSubview:comBtn];
comBtn.frame=CGRectMake(0,CGRectGetHeight(self.view.bounds) -49,CGRectGetWidth(self.view.bounds),49);
設(shè)置高度是49 ,y 軸為當(dāng)前視圖高度減去49 ,
設(shè)置如下代碼搞定,看來自動(dòng)布局還是吊.
comBtn.autoresizingMask=UIViewAutoresizingFlexibleTopMargin|UIViewAutoresizingFlexibleWidth;