2

地図にいくつかの注釈を表示しようとしています。注釈を処理する方法のためにクラスを使用したいのですがMKMapView、それは私にとって素晴らしいことです。しかし、独自のビューで動作するカスタム マップ システムがあります。https://stackoverflow.com/a/10702022/1152596の回答で提案されているように、メソッドのスウィズリングを実装しようとしましたが、運がありませんでした。タイルが表示されていないのは問題ありませんが、背景が透明ではなく、グレーのような色になっています。以下のスクリーンショットを参照してください。

スクリーンショット

黒いパスは私の注釈です。後ろには、私が見ることができない自分の地図のあるビューがあります。後ろにあるのは確かです、付け足さないとMKMapView見えてしまいます。

私がここで試みていることは非常にハックであることはわかっていますが、別の方法が思い浮かびませんでした。

リンクされた回答からのスウィズリングのコードは次のとおりです。

私は次のように定義します。

// Import runtime.h to unleash the power of objective C 
#import <objc/runtime.h>

// this will hold the old drawLayer:inContext: implementation
static void (*_origDrawLayerInContext)(id, SEL, CALayer*, CGContextRef);

// this will override the drawLayer:inContext: method
static void OverrideDrawLayerInContext(UIView *self, SEL _cmd, CALayer *layer, CGContextRef context)
{
    // uncommenting this next line will still perform the old behavior
    //_origDrawLayerInContext(self, _cmd, layer, context);

    // change colors if needed so that you don't have a black background
    layer.backgroundColor = RGB(35, 160, 211).CGColor;

    CGContextSetRGBFillColor(context, 35/255.0f, 160/255.0f, 211/255.0f, 1.0f);
    CGContextFillRect(context, layer.bounds);
}

私のviewDidLoad方法では:

UIView* scrollview = [[[[mapView subviews] objectAtIndex:0] subviews] objectAtIndex:0];
UIView* mkTiles = [[scrollview subviews] objectAtIndex:0]; // <- MKMapTileView instance

// Retrieve original method object
Method  origMethod = class_getInstanceMethod([mkTiles class], 
                                             @selector(drawLayer:inContext:));

// from this method, retrieve its implementation (actual work done)
_origDrawLayerInContext = (void *)method_getImplementation(origMethod);

// override this method with the one you created    
if(!class_addMethod([mkTiles class],
                    @selector(drawLayer:inContext:), 
                    (IMP)OverrideDrawLayerInContext,
                    method_getTypeEncoding(origMethod)))
{
    method_setImplementation(origMethod, (IMP)OverrideDrawLayerInContext);
}
4

0 に答える 0