- (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 可以通過子視圖來改變其屬性.