我在 UIviewController 边界下方有一个 uiview 位置,我正在从下到上动画它的外观(如操作表)
- (IBAction)Button:(id)sender {
[UIView beginAnimations:nil context:NULL];
[_pickerView setFrame:CGRectMake(0.0f, self.view.frame.size.height - _pickerView.frame.size.height , 0.0f, 0.0f)];
[UIView commitAnimations];
}
在 uiview 出现后没有用户与 view 交互的问题
我错过了什么?