如何将 jpg 或 png 图像添加到 UIImage 中,然后显示在 UIImageView 中?
UIImage *img = [[UIImage alloc] initWithContentsOfFile:@"contactHeader.png"];
_headersView = [[UIImageView alloc] initWithImage:img];
我已经在 IB 中连接了 UIImageView (_headersView) 的连接。我想要加载的图像也在我的项目树结构中。
我是否以正确的方式创建 UIImage ?
UIImage *img = [[UIImage alloc] initWithContentsOfFile:@"contactHeader.png"];
_headersView = [[UIImageView alloc] initWithImage:img];
I have already hooked up the connections for the UIImageView (_headersView) in IB. The image I want to load is in my project tree structure as well.
Am I creating the UIImage the right way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果该文件位于您的捆绑包中,您可以使用
如果该图像位于您的文档目录中,您可以使用
If the file is in your bundle you can just use
If the image is in your documents directory you can use
试试这个
try this