雕虫小技,咔咔

//控制代码只运行一次

    static dispatch_once_t disOnce;

    dispatch_once(&disOnce,  ^ {

        //

        [self setupUI];

    });