Theos / Logos钩子集ivar / property

时间:2012-05-20 15:56:01

标签: ios jailbreak

我正在尝试使用徽标挂钩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

我想覆盖委托属性的设置,这样我就可以创建一个代理类来过滤发送给应用程序的位置。有没有什么好办法可以使用徽标?

谢谢!

1 个答案:

答案 0 :(得分:4)

是的。看作属性设置器只是一种常规方法,你可以这样做:

%hook CLLocationManager
- (void) setDelegate:(id<CLLocationManagerDelegate>)delegate {
    // set up your proxy / whatever you're looking to do

    %orig;
}
%end