NSTimer的基礎用法以及程序掛起后NSTimer仍然可以在后臺運行計時

1. 關于NSTimer一些基本的知識枯怖,網(wǎng)上應該有很多講解,廢話不多少,直接上代碼

(1) 下面是簡單的實現(xiàn)代碼

#import "NSTimerController.h"

#define SCREEN_WIDTH [UIScreen mainScreen].bounds.size.width
#define SCREEN_HEIGHT [UIScreen mainScreen].bounds.size.height
static const NSInteger button_tag = 100;

@interface NSTimerController ()

@property (nonatomic,strong) NSTimer* timer; /*定時器*/
@property (nonatomic,assign) NSInteger secondsCountDown; /*倒計時的時間數(shù)*/
@property (nonatomic,strong) UIButton* count_button; /*點擊的按鈕*/
@property (nonatomic,assign) NSInteger space; /*寬度*/
@property (nonatomic,assign) BOOL isClick; /*防止連續(xù)點擊*/

@end

@implementation NSTimerController

- (void)viewDidLoad
{
    [super viewDidLoad];
    _secondsCountDown = 20; /*初使時間20秒*/
    _space = 300; /*按鈕的寬度*/
    [self count_button];
}

-(void) viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
    [_timer invalidate]; /*將定時器從運行循環(huán)中移除*/
    _timer = nil; /*銷毀定時器, 這樣可以避免控制器不死*/
}

-(UIButton*) count_button
{
    if (!_count_button)
    {
        _count_button = [UIButton buttonWithType:UIButtonTypeCustom];
        [self.view addSubview:_count_button];
        _count_button.frame = CGRectMake(SCREEN_WIDTH / 2 - 150, SCREEN_HEIGHT - 300, _space, 40);
        _count_button.tag = button_tag;
        _count_button.layer.cornerRadius = 5;
        [_count_button setTitle:@"重新獲取" forState:UIControlStateNormal];
        _count_button.backgroundColor = [UIColor orangeColor];
        [_count_button setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
        [_count_button addTarget:self action:@selector(buttonAction:) forControlEvents:UIControlEventTouchUpInside];
    }
    return _count_button;
}

-(void) buttonAction:(UIButton*) sender
{
    if (!_isClick)
    {
        _timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timeFireMethod) userInfo:nil repeats:YES];

        /*注意點:
         將計數(shù)器的repeats設置為YES的時候抛寝,self的引用計數(shù)會加1。
         因此可能會導致self(即viewController)不能release曙旭。
         所以盗舰,必須在viewWillAppear的時候,將計數(shù)器timer停止桂躏,否則可能會導致內(nèi)存泄露钻趋。*/
        
        /*手動啟動Runloop,然后使其在線程池里運行*/
        /* 
         1: 下面這個方法切忌不要輕易使用,避免網(wǎng)絡請求的線程會被殺死:[[NSRunLoop currentRunLoop] run];

         2: 如果想用剂习,建議如下操作:
         // dispatch_async(dispatch_get_global_queue(0, 0), ^{
         //  _countDownTimer = [NSTimer  scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(timeFireMethod) userInfo:nil repeats:YES];
         // [[NSRunLoop currentRunLoop] run];
                    });
          */

        //正確用法:
         [[NSRunLoop currentRunLoop] addTimer:_timer  forMode:NSRunLoopCommonModes];
    }
}

-(void) timeFireMethod
{
    _isClick = YES;
    _secondsCountDown--;
    [_count_button setTitle:[NSString stringWithFormat:@"重新獲取 (%ld)",(long)_secondsCountDown] forState:UIControlStateNormal];
    [_count_button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
    NSLog(@"_secondsCountDown:%ld",(long)_secondsCountDown);
    if (_secondsCountDown <= 0)
    {
        _isClick = NO;
        [_timer invalidate];
        _secondsCountDown = 20;
        [_count_button setTitle:@"重新獲取" forState:UIControlStateNormal];
        [_count_button setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
    }
}

@end

下面兩張圖是簡易的效果圖:

圖1.png
圖2.png

(2) 上面的代碼中蛮位,有關于一些細節(jié)的說明,但是還有一些其他的重點細節(jié)鳞绕,在下面說下

在頁面即將消失的時候關閉定時器失仁,之后等頁面再次打開的時候,又開啟定時器(只要是防止它在后臺運行,暫用CPU)

-(void) viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    /*開啟繼續(xù)運行NSTimer*/
    [_timer setFireDate:[NSDate distantPast]];
}

-(void) viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
    /*關閉NSTimer*/
    [_timer setFireDate:[NSDate distantFuture]];
}


2. 程序掛起后NSTimer仍然可以在后臺運行計時

具體操作如下:

步驟一: 在info里面如下設置:
info -->添加 Required background modes -->設置 App plays audio or streams audio/video using AirPlay

3C1F3F3C-6860-4A29-84C1-65554EFDF687.png

步驟二:在AppDelegate.m里面調用

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    
    /*定時器后臺運行*/
    NSError *setCategoryErr = nil;
    NSError *activationErr  = nil;
    /*設置Audio Session的Category 一般會在激活之前設置好Category和mode们何。但是也可以在已激活的audio session中設置陶因,不過會在發(fā)生route change之后才會發(fā)生改變*/
    [[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error: &setCategoryErr];
    /*激活Audio Session*/
    [[AVAudioSession sharedInstance] setActive: YES error: &activationErr];
 }

/*
 通過UIBackgroundTaskIdentifier可以實現(xiàn)有限時間內(nèi)在后臺運行程序
 程序進入后臺時調用applicationDidEnterBackground函數(shù),
 */
- (void)applicationDidEnterBackground:(UIApplication *)application{
    
    UIApplication* app = [UIApplication sharedApplication];
    __block UIBackgroundTaskIdentifier bgTask;
    
    /*注冊一個后臺任務垂蜗,告訴系統(tǒng)我們需要向系統(tǒng)借一些事件*/
    bgTask = [app beginBackgroundTaskWithExpirationHandler:^{
        dispatch_async(dispatch_get_main_queue(), ^{
            if (bgTask != UIBackgroundTaskInvalid)
            {
                /*銷毀后臺任務標識符*/
                /*不管有沒有完成楷扬,結束background_task任務*/
                bgTask = UIBackgroundTaskInvalid;
            }
        });
    }];
    
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        dispatch_async(dispatch_get_main_queue(), ^{
            if (bgTask != UIBackgroundTaskInvalid)
            {
                /*銷毀后臺任務標識符*/
                /*不管有沒有完成,結束background_task任務*/
                bgTask = UIBackgroundTaskInvalid;
            }
        });
    });
}

參考如下鏈接知識贴见,深表感謝:

IOS音頻播放學習參考
IOS后臺掛起時運行程序UIBackgroundTaskIdentifier

最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末烘苹,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子片部,更是在濱河造成了極大的恐慌镣衡,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,686評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異廊鸥,居然都是意外死亡望浩,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,668評論 3 385
  • 文/潘曉璐 我一進店門惰说,熙熙樓的掌柜王于貴愁眉苦臉地迎上來磨德,“玉大人,你說我怎么就攤上這事吆视〉涮簦” “怎么了?”我有些...
    開封第一講書人閱讀 158,160評論 0 348
  • 文/不壞的土叔 我叫張陵啦吧,是天一觀的道長您觉。 經(jīng)常有香客問我,道長授滓,這世上最難降的妖魔是什么琳水? 我笑而不...
    開封第一講書人閱讀 56,736評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮般堆,結果婚禮上在孝,老公的妹妹穿的比我還像新娘。我一直安慰自己郁妈,他們只是感情好浑玛,可當我...
    茶點故事閱讀 65,847評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著噩咪,像睡著了一般顾彰。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上胃碾,一...
    開封第一講書人閱讀 50,043評論 1 291
  • 那天涨享,我揣著相機與錄音,去河邊找鬼仆百。 笑死厕隧,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的俄周。 我是一名探鬼主播吁讨,決...
    沈念sama閱讀 39,129評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼峦朗!你這毒婦竟也來了建丧?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 37,872評論 0 268
  • 序言:老撾萬榮一對情侶失蹤波势,失蹤者是張志新(化名)和其女友劉穎翎朱,沒想到半個月后橄维,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,318評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡拴曲,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,645評論 2 327
  • 正文 我和宋清朗相戀三年争舞,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片澈灼。...
    茶點故事閱讀 38,777評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡竞川,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出蕉汪,到底是詐尸還是另有隱情流译,我是刑警寧澤逞怨,帶...
    沈念sama閱讀 34,470評論 4 333
  • 正文 年R本政府宣布者疤,位于F島的核電站,受9級特大地震影響叠赦,放射性物質發(fā)生泄漏驹马。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 40,126評論 3 317
  • 文/蒙蒙 一除秀、第九天 我趴在偏房一處隱蔽的房頂上張望糯累。 院中可真熱鬧,春花似錦册踩、人聲如沸泳姐。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,861評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽胖秒。三九已至,卻和暖如春慕的,著一層夾襖步出監(jiān)牢的瞬間阎肝,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,095評論 1 267
  • 我被黑心中介騙來泰國打工肮街, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留风题,地道東北人。 一個月前我還...
    沈念sama閱讀 46,589評論 2 362
  • 正文 我出身青樓嫉父,卻偏偏與公主長得像沛硅,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子绕辖,可洞房花燭夜當晚...
    茶點故事閱讀 43,687評論 2 351

推薦閱讀更多精彩內(nèi)容