swift语言的学习笔记十一(performSelector)

在OC中使用好好的performSelector,但不知为什么在swift有意的被拿掉了。更有甚者连IMP, objc_msgSend也不能用了。虽然想不通为什么,但应该有他的道理。就不纠结了。

大家可能在OC中使用得更多的就是延时处理,及后台处理,或线程异步等。现在没有performSelector,哪在swift还有什么可以代替呢,当然有了,如GCD,NSTimer其实都可以近似的代替。

如:NSTimer 

[cpp]  view plain copy
  1. let tm = NSTimer(timeInterval: 3.0, target: self, selector: "selectorfunc:", userInfo: nil, repeats: false)  
  2.         tm.fire()  

但个人感觉使NSTimer有个传上下文时获取与performSelector不一样。从上下文中拿到的是NSTimer需要再取userInfo才可以。但不管怎么样,可以实现延时处理。


另外,我还自己做了一个swift 的扩展类(OC的catagray) 同样伪装了一个performselector方法。为什么讲是伪装,因为过程中在调用最终的selector时,用了线程处理。而不是理想的msgSend的方式(swift没有开源,没法看到实现,又不提供IMP,查了好多资料都没有讲执行Selector 的,如有大神发现,请告诉我。。。)

实现:

[cpp]  view plain copy
  1. //  
  2. //  ExpandNSObject.swift  
  3. //  MixDemo  
  4. //  
  5. //  Created by apple on 14-6-29.  
  6. //  Copyright (c) 2014年 fengsh. All rights reserved.  
  7. //  
  8.   
  9. import Foundation  
  10.   
  11. extension NSObject  
  12. {  
  13.     func performSelectorOnMainThread(selector aSelector: Selector,withObject object:AnyObject! ,waitUntilDone wait:Bool)  
  14.     {  
  15.         if self.respondsToSelector(aSelector)  
  16.         {  
  17.             var continuego = false  
  18.             let group = dispatch_group_create()  
  19.             let queue = dispatch_queue_create("com.fsh.dispatch", nil)  
  20.             dispatch_group_async(group,queue,{  
  21.                 dispatch_async(queue ,{  
  22.                     //做了个假的  
  23.                     NSThread.detachNewThreadSelector(aSelector, toTarget:self, withObject: object)  
  24.                     continuego = true  
  25.                 })  
  26.                 })  
  27.             dispatch_group_wait(group, DISPATCH_TIME_FOREVER)  
  28.   
  29.             if wait  
  30.             {  
  31.                 let ret = NSRunLoop.currentRunLoop().runMode(NSDefaultRunLoopMode, beforeDate: NSDate.distantFuture() as NSDate)  
  32.                 while (!continuego && ret)  
  33.                 {  
  34.                       
  35.                 }  
  36.             }  
  37.         }  
  38.     }  
  39.       
  40.     func performSelector(selector aSelector: Selector, object anArgument: AnyObject! ,delay afterDelay:NSTimeInterval)  
  41.     {  
  42.         if self.respondsToSelector(aSelector)  
  43.         {  
  44.             let minseconds = afterDelay * Double(NSEC_PER_SEC)  
  45.             let dtime = dispatch_time(DISPATCH_TIME_NOW, Int64(minseconds))  
  46.   
  47.             dispatch_after(dtime,dispatch_get_current_queue() , {  
  48.                 //做了个假的  
  49.                 NSThread.detachNewThreadSelector(aSelector, toTarget:self, withObject: anArgument)  
  50.                 })  
  51.         }  
  52.     }  
  53. }  

测试使用:

[cpp]  view plain copy
  1. self.performSelector(selector:"refreshTable:", object:nil ,delay:3.0)  
  2. self.performSelectorOnMainThread(selector:"refreshTable:", withObject:nil,waitUntilDone:true)  
警告,如果使用performSelector最终执行的selector是在子线程中,如果seleoctor中有更新UI操作,需要回到主线程。就这点没有伪装好,真失败。。。。

大家在使用过种中请谨慎,别外,如果有发现BUG,请告诉我。。。。。谢谢。

别附swift源码文件位置:
http://download.csdn.net/detail/fengsh998/7569569

你可能感兴趣的:(入门,swift,笔记)