iOS常用技能小记
1.获取Cell在tableView和当前屏幕中的位置
//获取某个cell在当前tableView上的坐标位置
CGRect rectInTableView = [tableView rectForRowAtIndexPath:indexPath];
//获取cell在当前屏幕的位置
CGRect rectInSuperview = [tableView convertRect:rectInTableView toView:[tableView superview]];
2.给颜色添加扩展,实现渐变
extension UIColor {class func gradientLeftToRightColor(_ leftColor:UIColor,_ rightColor : UIColor,_ viewW:CGFloat) -> UIColor {let size = CGSize.init(width: viewW, height: 1)UIGraphicsBeginImageContextWithOptions(size, true, 0)let context = UIGraphicsGetCurrentContext()let colorspace = CGColorSpaceCreateDeviceRGB()let colors = [leftColor.cgColor,rightColor.cgColor]let gradient = CGGradient(colorsSpace: colorspace, colors: colors as CFArray, locations: nil)context!.drawLinearGradient(gradient!, start: CGPoint(x: 0, y: 0), end: CGPoint(x: size.width, y: 0), options: CGGradientDrawin
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!
