您的位置:首页 > 其它

页面间的跳转动画,及给tableView cell设置阴影和圆角

2017-07-23 23:08 831 查看
页面间的跳转动画

最终效果如下:



源代码在:这里

给tableView cell设置圆角,效果图如下所示:



方法如下:在自定义的CustomCell里添加这样的方法:

// // 设置阴影
self.imgView.clipsToBounds = YES;
self.imgView.layer.cornerRadius = 20;

self.contentView.clipsToBounds = YES;
self.layer.cornerRadius = 20;
self.contentView.layer.cornerRadius = 20.0f;

self.layer.shadowColor = [UIColor darkGrayColor].CGColor;
self.layer.shadowOffset = CGSizeMake(5, 5);
self.layer.shadowRadius = 4.0f;
self.layer.shadowOpacity = 0.5f;

最关键的就是设置contentView。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: