美文网首页
objc_msgSend

objc_msgSend

作者: Smallwolf_JS | 来源:发表于2018-07-27 17:45 被阅读3次
- (void)runTimeClicked
{
    //objc_msgSend(self,@selector(testRuntime));
    SEL testFunc = NSSelectorFromString(@"testRuntime");
    
    //ios8下特殊写法
    ((void(*)(id,SEL, id,id))objc_msgSend)(self, testFunc, nil, nil);
}
 
 
- (void)testRuntime
{
    NSLog(@"-----timeruntiem---");
}

示例:

NSString* tmpStr=@"Orientation";
        UIInterfaceOrientation ifo=[[UIApplication sharedApplication] statusBarOrientation];
        ((void(*)(id,SEL,UIInterfaceOrientation,BOOL))objc_msgSend)([UIDevice currentDevice],NSSelectorFromString([NSString stringWithFormat:@"set%@:animated:",tmpStr]),ifo,NO);

相关文章

网友评论

      本文标题:objc_msgSend

      本文链接:https://www.haomeiwen.com/subject/ysesmftx.html