想要把视图放到最前面,不想要其他视图遮挡(一般用于下拉选框)
[self.superview bringSubviewToFront:self];
iOS7取3次superview
iOS8是取两次superview
Concell *cell = (Concell *)button.supeview.superview;
去两次到conrtentview上
想要把视图放到最前面,不想要其他视图遮挡(一般用于下拉选框)
[self.superview bringSubviewToFront:self];
iOS7取3次superview
iOS8是取两次superview
Concell *cell = (Concell *)button.supeview.superview;
去两次到conrtentview上