我在 xCode 4.2 中添加图像时遇到问题。当我通过从桌面拖动它来将其插入时UIimageview
,ViewController
它不起作用。
有没有其他可能的方法来添加图像?
通过单击文件->“将文件添加到...”将图像添加到您的项目。
然后在 ImageView 属性中选择图像(Utilities -> Attributes Inspector)。
您不能将图像从桌面添加到UIimageView
,您只能将图像(拖动)添加到项目文件夹中,然后选择名称图像到UIimageView
属性(检查器)中。
如何做到这一点的教程:http: //conecode.com/news/2011/06/ios-tutorial-creating-an-image-view-uiimageview/
对于 xCode 10,首先您需要在 assetsCatalogue 中添加图像,然后键入:
let imageView = UIImageView(image: #imageLiteral(resourceName: "type the name of your image here..."))
对于初学者,是我们即将创建let imageView
的对象的名称。UIImageView
将图像嵌入viewControler
文件的示例如下所示:
import UIKit
class TutorialViewCotroller: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let imageView = UIImageView(image: #imageLiteral(resourceName: "intoImage"))
view.addSubview(imageView)
}
}
请注意,我没有为图像文件名使用任何扩展名,因为在我的情况下它是一组图像。