Swift UIImageView常用方法
Posted 向日葵
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift UIImageView常用方法相关的知识,希望对你有一定的参考价值。
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let image = UIImage.init(named: "111.png");
let imageView = UIImageView();
imageView.frame = CGRect.init(x: 100, y: 10, width: 200, height: 200);
imageView.image = image;
self.view.addSubview(imageView);
//圆角
imageView.layer.masksToBounds = true;
imageView.layer.cornerRadius = 100;
imageView.layer.borderColor = UIColor.orange.cgColor;
imageView.layer.borderWidth = 2
imageView.clipsToBounds = true;
//交互
imageView.isUserInteractionEnabled = true;
let tap = UITapGestureRecognizer.init(target: self, action:#selector(ViewController.tapAction));
imageView.addGestureRecognizer(tap);
//设置拉伸模式
imageView.contentMode = UIViewContentMode.scaleAspectFill;
}
func tapAction(tap:UITapGestureRecognizer) {
var frame = tap.view?.frame;
frame = CGRect.init(x: 100, y: 100, width: 300, height: 300);
tap.view?.frame = frame!;
}
}
以上是关于Swift UIImageView常用方法的主要内容,如果未能解决你的问题,请参考以下文章
[Swift]Swift图片显示方式设置,控件UIImageView的contentMode属性设置
如何以编程方式在 Swift 中将 uiimageview 设置为 xcode 内置的 applewatch 图标图像?