steipete / Aspects

Delightful, simple library for aspect oriented programming in Objective-C and Swift.
https://twitter.com/steipete
MIT License
8.4k stars 1.26k forks source link

Crash with NSURL #177

Open 623637646 opened 3 years ago

623637646 commented 3 years ago
NSError *error = nil;
NSURL *url = [[NSURL alloc] initWithString:@"https://www.google.com"];
[url aspect_hookSelector:@selector(absoluteString) withOptions:AspectPositionBefore usingBlock:^(id<AspectInfo> info){
    NSLog(@"");
} error:&error];
[url absoluteString];
Screenshot 2020-11-12 at 11 01 12 PM