objc runtime replace Method

Submitted by lepton on Fri, 11/18/2016 - 12:52

Tags

#import <objc/runtime.h>

static NSArray *custom_method(id obj,SEL _cmd){
    return @[];
}

void replace_method(){
    Class class = NSClassFromString(@"ClassName");
    SEL  cmd = @selector(selector);
    class_replaceMethod(class,cmd,(IMP)custom_method,NULL);
}

Add new comment

Restricted HTML

  • Allowed HTML tags: <a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id>
  • Lines and paragraphs break automatically.
  • Web page addresses and email addresses turn into links automatically.