//移除所有子视图
//让系统帮你遍历父视图的所有子视图
[self.view.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
//手动遍历父视图上的所有子视图
for(UIView *view in self.view.subviews) {
[view removeFromSuperview];
}
arc4random()%130+51;
self.view.frame
[UIScreen mainScreen]bounds;
#import 导入一个头文件,获取该头文件中类的定义——方法和属性
@class 告诉编译器有这么一个类,具体这个类怎么定义的一无所知