Example #1
0
    // 跨天刷新//
    IEnumerator updateUIForSecondDay()
    {
        yield return(new WaitForSeconds(1));

        // 跨天刷新//
        int          dayIndex  = SevenDaysHappyManagement.Instance.getDayIndex();
        DayTopButton selectBtn = tabButtons [dayIndex] as DayTopButton;

        if (selectBtn != null)
        {
            sevenDaysHappyContent.destroyDetailButtons();
            showDetail(selectBtn);
        }
    }