- (void)removeFromSuperview;
//从父视图中删除当前视图
-(void)insertSubview:(UIView *)view atIndex:(NSInteger)index;
//从指定的索引位置插入视图
- (void)exchangeSubviewAtIndex:(NSInteger)index1 withSubviewAtIndex:(NSInteger)index2;
//根据制定视图的索引位置交换视图
- (void)addSubview:(UIView *)view;
//在当前视图层的上面添加一个新视图,这个方法会对参数视图的引用加1
- (void)insertSubview:(UIView *)view belowSubview:(UIView *)siblingSubview;
//在指定视图下方添加一个视图
- (void)insertSubview:(UIView *)view aboveSubVIew:(UIView *)siblingSubview;
//在指定的上方添加一个视图
- (void)bringSubviewToFront:(UIView *)view;
//将参数指定的 view 移动到视图的最前面
- (void)sendSubviewToBack:(UIView * )view;
//将参数指定的 view 移动到视图的最后面
- (UIView *)viewWithTag:(NSInteger)tag;
//根据tag 属性获取已存在的 UIView 对象
实现的方法:
1.可以纯代码实现,主要使用手动写代码的方式实现,不使用Xcode中的自动加载主视图的方法,我们手动管理视图,不用 ViewController 来管理.
2. 可以使用Xcode提供的UIView和UIVindow来实现
第一步:
首先,删掉工程中的 ViewController.h,ViewController.m,Main.storyboard 和 LaunchScre.xil 文件,我们自己手动写加载窗口和视图。
第二步:
把工程的 Main interface 中的 Main 删除,并把 Launch Screen File 文件中的LaunchScreen 也删掉.
接下来,我们在 AppDelegate.m 文件中写代码,加载主视图和窗口
#import "AppDelegate.h"
@interface AppDelegate ()
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
self.window.backgroundColor = [UIColor grayColor];
UIView *bgView = [[UIView alloc] initWithFrame:self.window.bounds];
bgView.backgroundColor = [UIColor orangeColor];
[self.window addSubview:bgView];
UIView *greenView = [[UIView alloc] initWithFrame:CGRectMake(20, 20, 280, 160)];
greenView.tag = 100;//这个 tag 是视图的唯一标示,实际只是一个整数值
greenView.backgroundColor = [UIColor greenColor];
//bgView 和 greenView 建立了一种关系,即父子关系 bgView 叫做父视图, greenView 叫子视图
// [bgView addSubview:greenView];
greenView.superview.backgroundColor = [UIColor redColor];
UIView *blueView = [[UIView alloc] initWithFrame:CGRectMake(20, 190,280, 160)];
blueView.tag = 101;
blueView.backgroundColor = [UIColor blueColor];
// [bgView addSubview:blueView];
// //通过子视图改变父视图的背景颜色
blueView.superview.backgroundColor = [UIColor lightGrayColor];
[bgView addSubview:blueView];
[bgView addSubview:greenView];
UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(20, 20, 240, 40)];
[btn setTitle:@"别点我" forState:UIControlStateNormal];
[btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[btn addTarget:self action:@selector(onButton) forControlEvents:UIControlEventTouchUpInside];
btn.backgroundColor = [UIColor lightGrayColor];
[bgView addSubview:btn];
// greenView.userInteractionEnabled = NO;
// [greenView addSubview:btn];
UIView *gView = [bgView viewWithTag:100];
gView.backgroundColor = [UIColor purpleColor];
UIView *bView = [bgView viewWithTag:101];
bView.backgroundColor = [UIColor redColor];
[self.window makeKeyAndVisible];
return YES;
}
- (void)onButton
{
NSLog(@"%s",__func__);
}
@end
运行结果如下:
结果分析:
这里的视图是有层次的,最底层的是橙色的视图 bgView,就是父视图,其他的都是子视图,其它视图按照代码中的位置和大小放在 bgView 上.父视图 baVIew 可以通过子视图来改变其属性.
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/www_nyp_boke/article/details/46808021