标签:style blog http sp on 2014 log bs 代码
1、clipsToBounds 默认为NO。代码:
UIView *tmpView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 200)]; tmpView.clipsToBounds = YES;//分别设置 YES /NO查看效果 [self.view addSubview:tmpView]; UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"changmen.jpg"]]; [tmpView addSubview:imageView];
当为NO时:如图
设置为YES,如图
标签:style blog http sp on 2014 log bs 代码
原文地址:http://blog.csdn.net/qqmcy/article/details/41744231