我有一个在我的ImageView中加载的静态背景图像(地图)。我有几个透明的文本图像(例如,地图上的城市标签),我想在点击按钮时叠加在地图上。重新单击该按钮将卸载该层,以便用户可以根据他们希望看到的内容选择所选层的任意组合。我可能总共有5层连接到5个按钮。
我知道这很简单,但我需要一些关于按钮代码的帮助。如果我有一个名为'cities'的按钮和一个名为'cities.png'的图层,我想加载并显示在我的主ImageView地图上,请有人请给我一些代码,让按钮点击循环我的城市.png图层打开和关闭?
非常感谢答案 0 :(得分:0)
功能
检查
if(self.imageView.image != nil)
{
self.ImageView.image = [UIImage imageNamed:@YourImage"]; //load the image view
}
else
{
self.imageView.image = nil; //image already dispelled..remove it.
self.imageview.center = //touch location center //
}
如果您想一次加载一张图片,这将有效