0

我正在尝试从地图上的标记中获取事件。这是包含 mapView 的 MainViewController 中的一些代码。

UIImage* labelView = [self snapshotImage:theView];
UIImageView *imageView=[[UIImageView alloc]initWithImage:labelView];
CGRect rect=CGRectMake(0,0,imageView.image.size.width,imageView.image.size.height);
MyRMView *myrm = [[MyRMView alloc]initWithFrame:rect];

UIButton *sens = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[sens addTarget:self 
           action:@selector(DoSomething:)
 forControlEvents:UIControlEventTouchUpInside];
sens.frame = rect;

[myrm addSubview:imageView];
[myrm addSubview:sens];
MyRMMarker* newMarker = [[MyRMMarker alloc] initWithUIImage:nil anchorPoint:CGPointMake(0.0, 1.0)];
newMarker.label = myrm;

MyRMMarker继承自RMMarker其继而继承自CALayer。该label属性本质上是一个 UIView 。

问题是,我没有从DoSomething.

任何帮助将不胜感激。
谢谢!

4

1 回答 1

0

解决了:

https://github.com/dguerri/route-me/commit/8dc751724a2b231c2b26dde93c94bd607509da27#L1R192

这包含来自 RouteMe 的所有缺失代码。

于 2012-06-25T11:03:30.427 回答