中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

自定義計時器UIButton

發布時間:2020-07-10 05:46:39 來源:網絡 閱讀:313 作者:一念之間888 欄目:開發技術
  1. 創建PWTimerButton 繼承與UIButton

  2. 添加成員方法和屬性

  3. 頭文件如下:

@interface PWTimerButton : UIButton

{

    NSInteger _timerInterval;

    NSTimer *_timer;

    NSString *_formatString;

}


- (void)setFormatString:(NSString *)formatString;


- (void)startTimer:(NSInteger)interval;


- (void)stopTimer;


4.源文件如下:

- (void)startTimer:(NSInteger)interval

{

    if (_timer) {

        [_timer invalidate];

        _timer = nil;

    }

    if (interval > 0) {

        _timerInterval = interval;

        self.enabled = NO;

        [self updateButtonState];

        

        _timer = [NSTimer scheduledTimerWithTimeInterval:1

                                                  target:self

                                                selector:@selector(timeOut:)

                                                userInfo:nil

                                                 repeats:YES];

    }

    

}


- (void)stopTimer

{

    if (_timer) {

        [_timer invalidate];

        _timer = nil;

        _timerInterval = 0;

    }

    [self updateButtonState];

}


- (void)timeOut:(NSTimer *)timer

{

    _timerInterval--;

    if (_timerInterval > 0) {

    }

    else {

        [self stopTimer];

    }

    [self updateButtonState];

}


- (void)setFormatString:(NSString *)formatString

{

    _formatString = formatString;

}


- (void)updateButtonState

{

    if (_timerInterval > 0) {

        [self setTitle:[NSString stringWithFormat:@"%d", _timerInterval] forState:UIControlStateDisabled];

    }

    else {

        [self setTitle:@"驗證" forState:UIControlStateNormal];

        self.enabled = YES;

    }

}

標記***的為重點知識,設置按鈕的什么狀態就要再什么狀態下更改按鈕的文字,顏色或者背景圖片等。

調了n長時間終于調試出來了,哎,自己粗心大意了。。。



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

明水县| 棋牌| 金华市| 祁门县| 乾安县| 屯留县| 永寿县| 洪雅县| 林甸县| 鄂尔多斯市| 固原市| 乐业县| 梅河口市| 安塞县| 拜泉县| 保康县| 探索| 芜湖市| 镇平县| 屯昌县| 蒙城县| 北流市| 达州市| 荣昌县| 剑河县| 西林县| 南城县| 利辛县| 盐山县| 拜城县| 嵩明县| 金堂县| 昌图县| 清水河县| 正镶白旗| 明星| 永善县| 胶州市| 英吉沙县| 雷波县| 济宁市|