码迷,mamicode.com
首页 > 移动开发 > 详细

IOS 杂笔-11(实现在外部无法改变UIView的size)

时间:2017-06-18 22:44:34      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:init   tle   技术分享   load   sel   实现   bounds   ram   复制   

我想题目说的或许不是很清楚,那么现在我详细介绍一下这篇随笔内容。

在外部无法改变UIVIew控件的size。

这里说是UIView,但是事实上,是大多数控件而绝非仅UIView。

想要实现在外部无法改变size该怎么做呢。

首先是重写setFrame使其规定本身size,如下

技术分享
//
//  TestView.m
//  CX-实现在外部无法改变UIView的Size
//
//  Created by ma c on 16/3/25.
//  Copyright ? 2016年 xubaoaichiyu. All rights reserved.
//

#import "TestView.h"

@implementation TestView

-(void)setFrame:(CGRect)frame{
    
    frame.size = CGSizeMake(100, 100);
    
    [super setFrame:frame];
}

@end
技术分享

重写setFrame后我们可以进行测试。

在VC里我吧TestVIew的size 设置为{200,200}。

技术分享

由此可见,在外部无法改变UITestView的Size

但是下面的结果却并非如此

我们先是设置UITestView的Center。

然后设置UITestView的Bounds

技术分享
//
//  ViewController.m
//  CX-实现在外部无法改变UIView的Size
//
//  Created by ma c on 16/3/25.
//  Copyright ? 2016年 xubaoaichiyu. All rights reserved.
//

#import "ViewController.h"
#import "TestView.h"
@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    
    TestView * view = [[TestView alloc]init];
    
    view.center = self.view.center;
    
    view.bounds = CGRectMake(0, 0, 200, 200);
    
    [self.view addSubview:view];
    
    NSLog(@"%@",NSStringFromCGRect(view.frame));
    
}



@end
技术分享

结果如下

技术分享

可见:UITestView 的size有所改变,没关系。

我们再重写一下bounds。

技术分享
//
//  TestView.m
//  CX-实现在外部无法改变UIView的Size
//
//  Created by ma c on 16/3/25.
//  Copyright ? 2016年 xubaoaichiyu. All rights reserved.
//

#import "TestView.h"

@implementation TestView

-(void)setFrame:(CGRect)frame{
    
    frame.size = CGSizeMake(100, 100);
    
    [super setFrame:frame];
}
-(void)setBounds:(CGRect)bounds{
    
    bounds.size = CGSizeMake(100, 100);
    
    [super setBounds:bounds];
}
@end
技术分享

结果如下:

技术分享
//
//  TestView.m
//  CX-实现在外部无法改变UIView的Size
//
//  Created by ma c on 16/3/25.
//  Copyright ? 2016年 xubaoaichiyu. All rights reserved.
//

#import "TestView.h"

@implementation TestView

-(void)setFrame:(CGRect)frame{
    
    frame.size = CGSizeMake(100, 100);
    
    [super setFrame:frame];
}
-(void)setBounds:(CGRect)bounds{
    
    bounds.size = CGSizeMake(100, 100);
    
    [super setBounds:bounds];
}
@end
技术分享

由此得出结论,如果想要是UIView控件在外部无法改变size,我们只需要重写frame,bounds即可。

同理,我们还可以实现一些其他的操作。

IOS 杂笔-11(实现在外部无法改变UIView的size)

标签:init   tle   技术分享   load   sel   实现   bounds   ram   复制   

原文地址:http://www.cnblogs.com/wuyuxin/p/7045597.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!