IOS初學-為影象檢視新增簡單效果
阿新 • • 發佈:2018-11-12
為影象檢視新增邊框
//建立一個載入有圖片pic3的。圖片檢視 let imageView=UIImageView(image: UIImage(named: "Pic3")); //給檢視設定一個大小。和位置 imageView.frame=CGRect(x: 50, y: 50, width: 300, height: 300); //為檢視新增邊框20以及邊框顏色 imageView.layer.borderColor=UIColor.lightGray.cgColor; imageView.layer.borderWidth=20; self.view.addSubview(imageView);
為影象檢視新增圓角
//建立一個載入有圖片pic3的。圖片檢視 let imageView=UIImageView(image: UIImage(named: "Pic3")); //給檢視設定一個大小。和位置 imageView.frame=CGRect(x: 50, y: 50, width: 300, height: 300); //設定圖片圓角角度 //設定圖層的遮罩覆蓋屬性。,邊界裁切 imageView.layer.cornerRadius=150; imageView.layer.masksToBounds=true; self.view.addSubview(imageView);
為影象檢視新增陰影
//建立一個載入有圖片pic3的。圖片檢視 let imageView=UIImageView(image: UIImage(named: "Pic3")); //給檢視設定一個大小。和位置 imageView.frame=CGRect(x: 50, y: 50, width: 300, height: 300); //設定陰影為黑色 設定陰影偏差值(大小) 透明度 半徑大小。 imageView.layer.shadowColor=UIColor.black.cgColor; imageView.layer.shadowOffset=CGSize(width: 20, height: -20); imageView.layer.shadowOpacity=0.5; imageView.layer.shadowRadius=10.0; self.view.addSubview(imageView);