美文网首页
Selector改写成Block

Selector改写成Block

作者: 我的马里奥兄弟 | 来源:发表于2017-02-07 15:07 被阅读154次

    + (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)interval block:(void (^)())block repeats:(BOOL)repeats {

    return [self scheduledTimerWithTimeInterval:interval target:self selector:@selector(blockInvoke:) userInfo:[block copy] repeats:repeats];

    }

    + (void)blockInvoke:(NSTimer *)timer {

    void (^ block)() = timer.userInfo;

    if (block) {

    block();

    }

    }

    相关文章

      网友评论

          本文标题:Selector改写成Block

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