iOS学习之UIView中的clipsTobounds属性及扩展

在一个视图中动态添加一个子视图,并在子视图中添加一个UIButton, 运行后发现虽然在界面上可以看到这个buton,但是点击这个按钮的时候按钮却没响应,纠结了很久也没发现是什么问题,代码如下:

UIView *view = [UIView alloc] init];
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = CGRectMake(20, 20, 50, 30);
[button setTitle:@"click" forState:UIControlStateNormal];
[button addTarget:self action:@selector(clickMe:) orControlEvents:UIControlEventTouchUpInside];
[view addSubview:button];
[self.view addSubView:view]; 

后来在网上找了些资料,发现UIView有一个clipsTobounds的属性,于是吧view.clipsTobounds设置为YES, 发现界面上button看不见了,继续看了些clipsTobounds的资料,原来是button的frame超出了view的frame的范围(即button的坐标超出view的frame了), clipsTobounds默认值是NO, 即超出范围后依然可以显示,但是超出范围这部分是无法响应触摸事件的,把 clipsTobounds设置为YES后,超出范围这部分的内容就不会再显示了。在上面的代码中给view设置一个frame后,button的响应就正常了。

以下是clipsTobounds的说明图(借用别人的图), 图中是把view2添加到view1中, 且view2有部分超出了view1的frame:

clipsTobounds = NO时(默认值)

clipsTobounds = YES时

时间: 2024-10-16 10:05:01

iOS学习之UIView中的clipsTobounds属性及扩展的相关文章

ios 中scrollview的 bounce属性与view中的clipsTobounds属性

一:scrollview的 bounce属性 当scrollview滚动到边界时,再继续滚动会有个反弹的效果,scrollview里有bounce属性,当设置为yes时,可以反弹,设置为NO时不能反弹,请问,能不能使得它只有一个边界能反弹呢,这个作用可以用来实现在一个scrollview里添加tableview与scrollview可以连续滑动,也就是,当table滑动到底时scrollview下面的scrollview接着滑动 二:view中的clipsTobounds属性 iew2添加vie

iOS学习之Storyboard中的UIScrollView使用自动布局

在使用storyboard和xib时,我们经常要用到ScrollView,还有自动布局AutoLayout,但是ScrollView和AutoLayout 结合使用,相对来说有点复杂.根据实践,我说一下我的理解,在故事板或xib中,ScrollView是根据其下面的一个View的大小来确定ContentSize的大小. 看一下效果 1. 创建一个项目,拖拽一个ScrollView到故事板中,如下图 2. 选中ScrollView,添加约束. 3. 拖拽一个View到ScrollView上, 然后

IOS-- UIView中的坐标转换

// 将像素point由point所在视图转换到目标视图view中,返回在目标视图view中的像素值 - (CGPoint)convertPoint:(CGPoint)point toView:(UIView *)view; // 将像素point从view中转换到当前视图中,返回在当前视图中的像素值 - (CGPoint)convertPoint:(CGPoint)point fromView:(UIView *)view; // 将rect由rect所在视图转换到目标视图view中,返回在目

iOS开发笔记--UIView中的坐标转换

[objc] view plaincopy // 将像素point由point所在视图转换到目标视图view中,返回在目标视图view中的像素值 - (CGPoint)convertPoint:(CGPoint)point toView:(UIView *)view; // 将像素point从view中转换到当前视图中,返回在当前视图中的像素值 - (CGPoint)convertPoint:(CGPoint)point fromView:(UIView *)view; // 将rect由rec

iOS开发笔记--UIView中的坐标转换(convertRect)

// 将像素point由point所在视图转换到目标视图view中,返回在目标视图view中的像素值 - (CGPoint)convertPoint:(CGPoint)point toView:(UIView *)view; // 将像素point从view中转换到当前视图中,返回在当前视图中的像素值 - (CGPoint)convertPoint:(CGPoint)point fromView:(UIView *)view; // 将rect由rect所在视图转换到目标视图view中,返回在目

iOS学习6.Objective-C中的各种遍历(迭代)方式

说明:转自文顶顶 一.使用 for 循环 要遍历字典.数组或者是集合,for 循环是最简单也用的比较多的方法 -(void)iteratorWithFor { //////////处理数组////////// NSArray *arrayM = @[@"1",@"2",@"3",@"4"]; NSInteger arrayMCount = [arrayM count]; for (int i = 0; i<arrayMC

iOS学习(项目中遇到的错误1)

1.[AppModel copyWithZone:]: unrecognized selector sent to instance 0x7ffda9f4cf70 *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[AppModel copyWithZone:]: unrecognized selector sent to instance 0x7ffda9f4cf70' *

ios学习:swift中实现分享到微博、facebook,twitter等

在swift中打开分享功能原来是如此的简单. 1.首先须要 import Social 2.在分享button事件以下 var controller:SLComposeViewController = SLComposeViewController(forServiceType: SLServiceTypeSinaWeibo) controller.setInitialText("一起来swift吧!") controller.addImage(UIImage(named: "

Swift学习之UIView延展添加新属性left,right,top,bottom,width,height,centerx,centery

import Foundation import UIKit import CoreGraphics extension UIView{ var left:CGFloat{ set{ var frame = self.frame frame.origin.x = newValue self.frame = frame } get{ return self.frame.origin.x } } var top:CGFloat{ set{ var frame = self.frame frame.o