CLLocationManager's
ロゴを使用してデリゲート プロパティの設定をフックしようとしています。私の現在のコードは次のようになります。
%hook CLLocationManager
-(void)startUpdatingLocation
{
%orig;
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"test"
message:@"hello!"
delegate:nil
cancelButtonTitle:@"Bye"
otherButtonTitles:nil];
[alert show];
[alert release];
}
%end
アプリに送信される場所をフィルター処理できるプロキシ クラスを作成できるように、デリゲート プロパティの設定をオーバーライドしたいと考えています。ロゴを使用してそれを行う気の利いた方法はありますか?
ありがとう!