<strong>相信大家经常可以看到一些应用的背景页面可以拉伸效果,有没有好奇他是怎样实现的,网上有很多方法,大家都可以参考,我封装了一个<code>改变头部视图frame</code>实现的一个拉伸效果</strong>
要实现头部拉伸,我们需要知道被拉伸图片的高度和图片名声,为了封装声明两个方法
/**
* 头部被拉伸图片控件的高度
*/
@property (nonatomic, assign) CGFloat stretchingImageHeight;
/**
* 头部被拉伸图片名称
*/
@property (nonatomic, copy) NSString *stretchingImageName;
/** 顶部拉伸的图片 */
@property (nonatomic, weak) UIImageView *topView;
<strong>1.设置图片拉伸的高度</strong>
//头部被拉伸图片控件的默认高度
CGFloat CFTopViewH = 200;
- (void)setStretchingImageHeight:(CGFloat)stretchingImageHeight{
_stretchingImageHeight = stretchingImageHeight;
CFTopViewH = stretchingImageHeight;
self.tableView.contentInset = UIEdgeInsetsMake(stretchingImageHeight , 0, 0, 0);
self.topView.frame = CGRectMake(0, -CFTopViewH, self.tableView.frame.size.width, CFTopViewH);
}
<strong>2.设置拉伸的图片</strong>
//设置拉伸图片
- (void)setStretchingImageName:(NSString *)stretchingImageName{
_stretchingImageName = stretchingImageName;
self.topView.image = [UIImage imageNamed:stretchingImageName];
}
<strong>3.在ViewDidLoad里调用就行</strong>
// 1、设置被拉伸图片view的高度
self.stretchingImageHeight = 150;
// 2、设置头部拉伸图片的名称
self.stretchingImageName = @"strech.jpg";
<strong>其实就这两句话就可以搞定,是不是很简单,快去试试吧~</strong>
self.tableView.contentInset = UIEdgeInsetsMake(stretchingImageHeight , 0, 0, 0);
self.topView.frame = CGRectMake(0, -CFTopViewH, self.tableView.frame.size.width, CFTopViewH);
self.tableView.frame.size.width, CFTopViewH);