NSTimer and Animation 0719

Animation is timing-based thing, and NSTimer obviously is a timing-based class. NSTimer is a very simple little class that allows us to call a method periodically. And we could either have it repeating where it's calling it over and over every certain amount of time, or we can actually just have it call it once sometime in the future. So it's a way to set up a time or to call a method. It couldn't really be simpler than that.

We are not going to use it for animation, things move around and stuff. There's other mechanisms for doing that. Where NSTimer kind of can come in and be used. It's actually quite useful in a lot of situations.

It's not a real time timer. This is not a real time operating system. You got that main queue. Other blocks might executing off that main queue. And so the timer is trying to execute, but it can't cuz it's busy. So it could be off a little bit but it's generally going to try to this, call this method when you say. The timer is built on a mechanism in iOS, called run loops.

For the main queue, there's a run loop set up for you, so NSTimer always worked in the main queue. For other queues, you may or may not have a run loop. You might have to set up your own run loop, etc, so for the purposes of this class, just assume NSTimer is a main queue thing.

Of course, when a timer goes off and calls a method, you could dispatch_async to another queue in that method, that's fine. It's just that the actual firing of the timer, that has to be happening in the main queue, for the purposes of this class.

So what's the main method look like in NSTimer? Notice that it's a class method, a static method on the class. So you invoke this by saying NSTimer.scheduled Time With Time Interval. And you just specify how many seconds from now you want this timer to go off for the first time, and then you specify a target or selector.

That's the method in the object that you want to be called. You got this user info, that's basically a cookie. You can put anything you want in there, some context, whatever you can leave it nil if you want. And then repeat is whether it's going to go off again in this many seconds, at the beginning there, and then just keep going off, over and over and over. So it couldn't really be simpler than that.

Now a bit of warning, if we call invalidate on a timer, that timer is no longer valid, and we should not do anything with it. We can't restart it. There's nothing we can do with it. And so it's usually a pretty bad idea to have a strong pointer to an NSTimer. Because we've got the strong pointer, we invalidate it. Now we've got a strong pointer to something that's invalid. So it's much better to make our pointers to NSTimers be weak. And when we do that, if we hit invalidate, no one will have a strong pointer to it anyone. And it'll leave the heap, and our  weak variable will get set to nil. So I recommend using weak pointers to NSTimers. Or not having any at all because remember every time it fires, we get this timer passed back to us as the argument if we want it.

Tolerance

It might help system performance to set a tolerance for "late firing". We can specify in the timer a tolerance, and that's basically how much we're willing to accept some slop in its calculation of when it goes off. Why would we want this tolerance? Because other things are going on in the system, and if we really don't care about getting it right on time, then maybe the system can be more efficient about how it's using its processor and other resources during that time. Notice that this tolerance doesn't cause drift. So if the first time it goes off, it goes off a minute and seven seconds after the next time it's going to go off, try to go off two minutes from the beginning. And the next time, three minutes from the beginning, it's not drifting. If it's late on one, it doesn't start being late on the next one.

What if I wanted to put all my blinking stuff in another class? In other words, I didn't want to put blinking in. We can use inheritance, this is object-oriented programming. It's not uncommon to create a subclass of another MVC's controller to create a controller you want for your MVC.

We didn't make it private. One of the interesting things about swift is that there's no idea of protected. What does protected mean? Private means you can only use it in this class, public means you can use it outside the framework you're in. Everything in swift is internal, which means you can use anything, anywhere, inside the framework you're in, including your app is kind of like a framework. So this view is really available to any class that's inside our app.

That's nice, but it would be maybe better if there were another protection class called protected. And, what that would mean is, only subclasses can use this thing. If we want something to be subclassable, and it's used in a subclass, we have to leave it internal.

So now how are we going to do this thing where wait a moment and open them? Use timer. The target is going to be our self. Now there is a restriction on this self, the same restriction we had with the other. A pound sign selector type of APIs, which is that this class that's receiving this has to be available to the Objective C run time. And so that means it essentially has to inherit from MS Object.

Now luckily, self, no problem because we inherit from faceviewcontroller, which inherit from UIViewController which inherits eventually from NSObjects. So we're all good to go here, but just don't get too confused if you try and do this and it's like it doesn't work. Because the object you send this message to has to be Objective C compatible. So the selector we want here, a method.

Eyes closed for one second, eyes opened for one second. They're two different timers. This has to be an Objective C compatible method.

Why is it making me put Objective C there? And the answer is because I made it private. Private methods get exposed to objective C. So they inject a C run time. So note as well. It has to be public method, or otherwise exposed to Objective C. Which we can do with that sign over J C as well.

I actually don't need this timer. Because I don't have any user info, it's not a repeating timers that I would want to invalidate.


                 

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 156,757评论 4 359
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 66,478评论 1 289
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 106,540评论 0 237
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 43,593评论 0 203
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 51,903评论 3 285
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,329评论 1 210
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,659评论 2 309
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,383评论 0 195
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,055评论 1 238
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,337评论 2 241
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 31,864评论 1 256
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,227评论 2 251
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 32,820评论 3 231
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 25,999评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,750评论 0 192
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,365评论 2 269
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,260评论 2 258

推荐阅读更多精彩内容