20

我在 xCode 4.2 中添加图像时遇到问题。当我通过从桌面拖动它来将其插入时UIimageviewViewController它不起作用。

有没有其他可能的方法来添加图像?

4

3 回答 3

33

通过单击文件->“将文件添加到...”将图像添加到您的项目。

然后在 ImageView 属性中选择图像(Utilities -> Attributes Inspector)。

于 2012-06-12T13:03:05.580 回答
15

您不能将图像从桌面添加到UIimageView,您只能将图像(拖动)添加到项目文件夹中,然后选择名称图像到UIimageView属性(检查器)中。

如何做到这一点的教程:http: //conecode.com/news/2011/06/ios-tutorial-creating-an-image-view-uiimageview/

于 2012-06-12T13:56:14.230 回答
0

对于 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)
    }
}

请注意,我没有为图像文件名使用任何扩展名,因为在我的情况下它是一组图像。

于 2018-08-07T15:26:18.273 回答