- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
NSLog(@"will rotation");
for (UIButton *button in self.view.subviews) {
[button removeFromSuperview];
}
}
我对这段代码有疑问。我只需要从我的视图中删除 UIButtons。但是这段代码也删除了我的 self.view 的所有子视图。我该如何解决这个问题?