我正在寻找一种将磁盘中的图像加载到CPImageView的方法。这可能吗?
答案 0 :(得分:1)
要将图像上传到服务器,您可以使用普通文件上传按钮,例如FileUpload
实现的按钮。或者,如果您不担心某些可能非常棘手的跨浏览器问题,您可以尝试使用我的Deep Drop Upload
分叉,它允许拖放上传。
在任何一种情况下,一旦图像在服务器上,您需要服务器返回可以查看图像的URL。假设此网址为http://example.com/uploads/image101.png
。然后,您可以正常方式CPImageView
显示它:
var imageView = [[CPImageView alloc] initWithFrame:CGRectMake(0, 0, 100, 100)];
[imageView setImage:[[CPImage alloc] initWithContentsOfFile:"http://example.com/uploads/image101.png"]];