正在寻找图书馆。 我想完全按照下面的gif链接中所示的方式对tableview进行动画处理。
https://dribbble.com/shots/4853929-View-Photos
我尝试了可伸缩的标题,在此标题中,我需要imageView和其余的文本行
override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let headerView = UIView.init(frame: CGRect.init(x: 0, y: 0, width: tableView.frame.width, height: 50))
let label = UILabel()
label.frame = CGRect.init(x: 5, y: 5, width: headerView.frame.width-10, height: headerView.frame.height-10)
label.text = "Notification Times"
label.textColor = UIColor.black// my custom colour
headerView.backgroundColor = UIColor.green
headerView.addSubview(label)
headerView.roundCorners(corners: [.topLeft, .topRight], radius: 8.0)
return headerView
}
override func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return 50
}