添加图标到地图视图

时间:2013-07-12 14:06:46

标签: ios objective-c ios4

我想在地图视图中添加一个图标,以便当人们点击图标时,他们会看到他们当前的位置。

我想在此图片的左下方添加图标:

enter image description here

如何将该图像添加到地图视图中?

我尝试过:

UIImage * l =  [UIImage imageNamed: @"location.png"];
UIImageView * lb = [[UIImageView alloc] initWithImage: l];
[lb setFrame: CGRectMake(0, 300, lb.frame.size.width, lb.frame.size.height)];
[self.mapview addSubview: lb];

1 个答案:

答案 0 :(得分:2)

我会将它作为兄弟添加到地图视图中。这样做更安全,因为无法保证在平移/缩放时地图视图不会操纵其边界(这会导致图标移动)。

[self.view addSubview:lb];