frame和bounds的比较

frame:根据父视图坐标系来控制自己的位置和大小,修改frame会引起视图位置的变化

bounds:该视图在自己坐标系的位置和大小,修改bounds并不会引起视图位置的变化,但是会引起子视图的位置的变化

主要原因是bounds改变的是自己的坐标系,而它的坐标系是子视图的frame的坐标系,所以子视图的位置会改变

如下代码可以验证:

#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 whiteColor];
    self.window.rootViewController = [[ViewController alloc] init];
    [self.window makeKeyAndVisible];
    
    // frame:根据父视图坐标系来控制自己的位置和大小,修改frame会引起视图位置的变化
    // bounds:该视图在自己坐标系的位置和大小,修改bounds并不会引起视图位置的变化,但是会引起子视图的位置的变化
    
    
    UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(50, 50, 200, 200)];
    view1.bounds = CGRectMake(50, 50, 200, 200);
    view1.backgroundColor = [UIColor cyanColor];
    [self.window addSubview:view1];
    
    NSLog(@"v1:frame = %@", NSStringFromCGRect(view1.frame));
    NSLog(@"v1:bounds = %@", NSStringFromCGRect(view1.bounds));
    
    
    UIView *view2 = [[UIView alloc] initWithFrame:CGRectMake(50, 50, 100, 100)];
    view2.backgroundColor = [UIColor purpleColor];
    [view1 addSubview:view2];
    
    NSLog(@"v2:frame = %@", NSStringFromCGRect(view2.frame));
    NSLog(@"v2:bounds = %@", NSStringFromCGRect(view2.bounds));
 
    return YES;
}
@end

 

转载于:https://www.cnblogs.com/zhizunbao/p/5356484.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值